------------------------------------------------------------------------------
| 1283 | |
| 1284 | //------------------------------------------------------------------------------ |
| 1285 | int vtkIncrementalOctreePointLocator::InsertUniquePoint(const double point[3], vtkIdType& pntId) |
| 1286 | { |
| 1287 | vtkIncrementalOctreeNode* leafContainer = nullptr; |
| 1288 | pntId = this->IsInsertedPoint(point, &leafContainer); |
| 1289 | return ((pntId > -1) ? 0 |
| 1290 | : leafContainer->InsertPoint(this->LocatorPoints, point, |
| 1291 | this->MaxPointsPerLeaf, &pntId, 2, this->NumberOfNodes)); |
| 1292 | } |
| 1293 | |
| 1294 | //------------------------------------------------------------------------------ |
| 1295 | void vtkIncrementalOctreePointLocator::InsertPointWithoutChecking( |
nothing calls this directly
no test coverage detected