------------------------------------------------------------------------------
| 96 | |
| 97 | //------------------------------------------------------------------------------ |
| 98 | vtkPointLocator::~vtkPointLocator() |
| 99 | { |
| 100 | if (this->Points) |
| 101 | { |
| 102 | this->Points->UnRegister(this); |
| 103 | this->Points = nullptr; |
| 104 | } |
| 105 | this->FreeSearchStructure(); |
| 106 | } |
| 107 | |
| 108 | //------------------------------------------------------------------------------ |
| 109 | void vtkPointLocator::Initialize() |
nothing calls this directly
no test coverage detected