------------------------------------------------------------------------------
| 112 | |
| 113 | //------------------------------------------------------------------------------ |
| 114 | vtkMTimeType vtkPointSet::GetMTime() |
| 115 | { |
| 116 | vtkMTimeType dsTime = vtkDataSet::GetMTime(); |
| 117 | |
| 118 | if (this->Points) |
| 119 | { |
| 120 | dsTime = std::max(this->Points->GetMTime(), dsTime); |
| 121 | } |
| 122 | |
| 123 | // don't get locator's mtime because its an internal object that cannot be |
| 124 | // modified directly from outside. Causes problems due to FindCell() |
| 125 | // SetPoints() method. |
| 126 | |
| 127 | return dsTime; |
| 128 | } |
| 129 | |
| 130 | //------------------------------------------------------------------------------ |
| 131 | void vtkPointSet::BuildPointLocator() |
no test coverage detected