------------------------------------------------------------------------------
| 262 | |
| 263 | //------------------------------------------------------------------------------ |
| 264 | bool vtkAbstractCellLocator::InsideCellBounds(double x[3], vtkIdType cell_ID) |
| 265 | { |
| 266 | if (this->CacheCellBounds) |
| 267 | { |
| 268 | return vtkAbstractCellLocator::IsInBounds(&this->CellBounds[cell_ID * 6], x); |
| 269 | } |
| 270 | else |
| 271 | { |
| 272 | double cellBounds[6]; |
| 273 | this->DataSet->GetCellBounds(cell_ID, cellBounds); |
| 274 | return vtkAbstractCellLocator::IsInBounds(cellBounds, x); |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | //------------------------------------------------------------------------------ |
| 279 | void vtkAbstractCellLocator::GetCellBounds(vtkIdType cellId, double*& cellBoundsPtr) |
nothing calls this directly
no test coverage detected