------------------------------------------------------------------------------
| 1350 | |
| 1351 | //------------------------------------------------------------------------------ |
| 1352 | void vtkStaticCellLocator::FreeSearchStructure() |
| 1353 | { |
| 1354 | if (this->Binner) |
| 1355 | { |
| 1356 | delete this->Binner; |
| 1357 | this->Binner = nullptr; |
| 1358 | } |
| 1359 | if (this->Processor) |
| 1360 | { |
| 1361 | delete this->Processor; |
| 1362 | this->Processor = nullptr; |
| 1363 | } |
| 1364 | } |
| 1365 | |
| 1366 | //------------------------------------------------------------------------------ |
| 1367 | vtkIdType vtkStaticCellLocator::FindCell( |
no outgoing calls
no test coverage detected