MCPcopy Create free account
hub / github.com/Kitware/VTK / GetCellBounds

Method GetCellBounds

Common/DataModel/vtkAbstractCellLocator.cxx:279–289  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

277
278//------------------------------------------------------------------------------
279void 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//------------------------------------------------------------------------------
292void vtkAbstractCellLocator::PrintSelf(ostream& os, vtkIndent indent)

Callers 2

StoreCellBoundsMethod · 0.45
InsideCellBoundsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected