------------------------------------------------------------------------------
| 1247 | |
| 1248 | //------------------------------------------------------------------------------ |
| 1249 | void vtkOctreePointLocator::AddAllPointsInRegion( |
| 1250 | vtkOctreePointLocatorNode* node, vtkIdTypeArray* ids) |
| 1251 | { |
| 1252 | int regionLoc = node->GetMinID(); |
| 1253 | vtkIdType numPoints = node->GetNumberOfPoints(); |
| 1254 | for (vtkIdType i = 0; i < numPoints; i++) |
| 1255 | { |
| 1256 | vtkIdType ptId = static_cast<vtkIdType>(this->LocatorIds[regionLoc + i]); |
| 1257 | ids->InsertNextValue(ptId); |
| 1258 | } |
| 1259 | } |
| 1260 | |
| 1261 | //------------------------------------------------------------------------------ |
| 1262 | void vtkOctreePointLocator::AddAllPointsInRegion(vtkOctreePointLocatorNode* node, vtkIdList* ids) |
no test coverage detected