------------------------------------------------------------------------------
| 1309 | |
| 1310 | //------------------------------------------------------------------------------ |
| 1311 | vtkIdType vtkIncrementalOctreePointLocator::InsertNextPoint(const double x[3]) |
| 1312 | { |
| 1313 | vtkIdType pntId = -1; |
| 1314 | this->GetLeafContainer(this->OctreeRootNode, x) |
| 1315 | ->InsertPoint(this->LocatorPoints, x, this->MaxPointsPerLeaf, &pntId, 2, this->NumberOfNodes); |
| 1316 | return pntId; |
| 1317 | } |
| 1318 | |
| 1319 | //------------------------------------------------------------------------------ |
| 1320 | int vtkIncrementalOctreePointLocator::GetNumberOfLevels() |
no test coverage detected