------------------------------------------------------------------------------
| 107 | |
| 108 | //------------------------------------------------------------------------------ |
| 109 | void vtkPointLocator::Initialize() |
| 110 | { |
| 111 | if (this->Points) |
| 112 | { |
| 113 | this->Points->UnRegister(this); |
| 114 | this->Points = nullptr; |
| 115 | } |
| 116 | this->FreeSearchStructure(); |
| 117 | } |
| 118 | |
| 119 | //------------------------------------------------------------------------------ |
| 120 | void vtkPointLocator::FreeSearchStructure() |
nothing calls this directly
no test coverage detected