------------------------------------------------------------------------------
| 1183 | |
| 1184 | //------------------------------------------------------------------------------ |
| 1185 | void vtkOctreePointLocator::FindPointsInArea(double* area, vtkIdTypeArray* ids, bool clearArray) |
| 1186 | { |
| 1187 | if (clearArray) |
| 1188 | { |
| 1189 | ids->Reset(); |
| 1190 | } |
| 1191 | this->BuildLocator(); |
| 1192 | this->FindPointsInArea(this->Top, area, ids); |
| 1193 | } |
| 1194 | |
| 1195 | //------------------------------------------------------------------------------ |
| 1196 | void vtkOctreePointLocator::FindPointsInArea( |
nothing calls this directly
no test coverage detected