------------------------------------------------------------------------------ Initialize locator. Frees memory and resets object as appropriate.
| 73 | //------------------------------------------------------------------------------ |
| 74 | // Initialize locator. Frees memory and resets object as appropriate. |
| 75 | void vtkSimpleScalarTree::Initialize() |
| 76 | { |
| 77 | delete[] this->Tree; |
| 78 | this->Tree = nullptr; |
| 79 | } |
| 80 | |
| 81 | //------------------------------------------------------------------------------ |
| 82 | // Construct the scalar tree from the dataset provided. Checks build times |