------------------------------------------------------------------------------
| 277 | |
| 278 | //------------------------------------------------------------------------------ |
| 279 | void vtkAbstractCellLocator::GetCellBounds(vtkIdType cellId, double*& cellBoundsPtr) |
| 280 | { |
| 281 | if (this->CacheCellBounds) |
| 282 | { |
| 283 | cellBoundsPtr = &this->CellBounds[cellId * 6]; |
| 284 | } |
| 285 | else |
| 286 | { |
| 287 | this->DataSet->GetCellBounds(cellId, cellBoundsPtr); |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | //------------------------------------------------------------------------------ |
| 292 | void vtkAbstractCellLocator::PrintSelf(ostream& os, vtkIndent indent) |
no outgoing calls
no test coverage detected