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

Method GetCellBounds

Common/DataModel/vtkDataSet.cxx:607–612  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Default implementation. This is very slow way to compute this information. Subclasses should override this method for efficiency.

Source from the content-addressed store, hash-verified

605// Default implementation. This is very slow way to compute this information.
606// Subclasses should override this method for efficiency.
607void vtkDataSet::GetCellBounds(vtkIdType cellId, double bounds[6])
608{
609 vtkNew<vtkGenericCell> cell;
610 this->GetCell(cellId, cell);
611 cell->GetBounds(bounds);
612}
613
614//------------------------------------------------------------------------------
615void vtkDataSet::Squeeze()

Callers 15

operator()Method · 0.45
ExecuteMethod · 0.45
InsideCellBoundsMethod · 0.45
CellTreeBuilderMethod · 0.45
IntersectWithLineMethod · 0.45
FindCellsWithinBoundsMethod · 0.45
IntersectWithLineMethod · 0.45
BuildLocatorInternalMethod · 0.45
BlankGridsAtLevelMethod · 0.45
vtkCellBinnerMethod · 0.45
operator()Method · 0.45

Calls 2

GetCellMethod · 0.45
GetBoundsMethod · 0.45

Tested by 15

test_rg3dFunction · 0.36
test_rg2d_xyFunction · 0.36
test_rg2d_xzFunction · 0.36
test_rg2d_yzFunction · 0.36
test_rg1d_xFunction · 0.36
test_rg1d_yFunction · 0.36
test_rg1d_zFunction · 0.36
test_rg0dFunction · 0.36
TestOIDFunction · 0.36
TestOUG_0dFunction · 0.36
TestOUG_1dxFunction · 0.36
TestOUG_1dyFunction · 0.36