------------------------------------------------------------------------------
| 58 | |
| 59 | //------------------------------------------------------------------------------ |
| 60 | void vtkKdTreePointLocator::FreeSearchStructure() |
| 61 | { |
| 62 | if (this->KdTree) |
| 63 | { |
| 64 | this->KdTree->Delete(); |
| 65 | this->KdTree = nullptr; |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | //------------------------------------------------------------------------------ |
| 70 | void vtkKdTreePointLocator::BuildLocator() |
no test coverage detected