------------------------------------------------------------------------------
| 1302 | |
| 1303 | //------------------------------------------------------------------------------ |
| 1304 | void vtkIncrementalOctreePointLocator::InsertPoint(vtkIdType ptId, const double x[3]) |
| 1305 | { |
| 1306 | this->GetLeafContainer(this->OctreeRootNode, x) |
| 1307 | ->InsertPoint(this->LocatorPoints, x, this->MaxPointsPerLeaf, &ptId, 1, this->NumberOfNodes); |
| 1308 | } |
| 1309 | |
| 1310 | //------------------------------------------------------------------------------ |
| 1311 | vtkIdType vtkIncrementalOctreePointLocator::InsertNextPoint(const double x[3]) |
no test coverage detected