------------------------------------------------------------------------------
| 79 | |
| 80 | //------------------------------------------------------------------------------ |
| 81 | void vtkCellLocator::FreeSearchStructure() |
| 82 | { |
| 83 | if (this->Tree) |
| 84 | { |
| 85 | this->TreeSharedPtr.reset(); |
| 86 | this->Tree = nullptr; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | //------------------------------------------------------------------------------ |
| 91 | // Given an offset into the structure, the number of divisions in the octree, |
no test coverage detected