------------------------------------------------------------------------------
| 133 | |
| 134 | //------------------------------------------------------------------------------ |
| 135 | vtkOctreePointLocator::~vtkOctreePointLocator() |
| 136 | { |
| 137 | this->FreeSearchStructure(); |
| 138 | |
| 139 | delete[] this->LocatorPoints; |
| 140 | this->LocatorPoints = nullptr; |
| 141 | |
| 142 | delete[] this->LocatorIds; |
| 143 | this->LocatorIds = nullptr; |
| 144 | |
| 145 | delete[] this->LeafNodeList; |
| 146 | this->LeafNodeList = nullptr; |
| 147 | } |
| 148 | |
| 149 | //------------------------------------------------------------------------------ |
| 150 | void vtkOctreePointLocator::GetBounds(double* bounds) |
nothing calls this directly
no test coverage detected