------------------------------------------------------------------------------
| 75 | |
| 76 | //------------------------------------------------------------------------------ |
| 77 | void vtkPointSet::Initialize() |
| 78 | { |
| 79 | vtkDataSet::Initialize(); |
| 80 | |
| 81 | this->Cleanup(); |
| 82 | |
| 83 | if (this->PointLocator) |
| 84 | { |
| 85 | this->PointLocator->Initialize(); |
| 86 | } |
| 87 | if (this->CellLocator) |
| 88 | { |
| 89 | this->CellLocator->Initialize(); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | //------------------------------------------------------------------------------ |
| 94 | void vtkPointSet::ComputeBounds() |
no test coverage detected