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

Method GetBounds

Common/DataModel/vtkCellGrid.cxx:314–324  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

312}
313
314void vtkCellGrid::GetBounds(double bounds[6])
315{
316 if (this->CachedBoundsTime < this->GetMTime())
317 {
318 this->ComputeBoundsInternal();
319 }
320 for (int ii = 0; ii < 6; ++ii)
321 {
322 bounds[ii] = this->CachedBounds[ii];
323 }
324}
325
326vtkCellMetadata* vtkCellGrid::AddCellMetadata(vtkCellMetadata* cellType)
327{

Callers 1

ComputeBoundsInternalMethod · 0.45

Calls 2

ComputeBoundsInternalMethod · 0.95
GetMTimeMethod · 0.45

Tested by

no test coverage detected