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

Method GetDimensions

Common/DataModel/vtkAMRBox.cxx:142–150  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

140
141//------------------------------------------------------------------------------
142void vtkAMRBox::GetDimensions(int* lo, int* hi) const
143{
144 assert("pre: AMR Box instance is invalid" && !this->IsInvalid());
145 for (int q = 0; q < 3; ++q)
146 {
147 lo[q] = this->LoCorner[q];
148 hi[q] = this->HiCorner[q];
149 }
150}
151
152//------------------------------------------------------------------------------
153void vtkAMRBox::GetDimensions(int dims[6]) const

Callers 15

GetCellMethod · 0.45
GetCellBoundsMethod · 0.45
GetPointCellsFunction · 0.45
BuildPointsMethod · 0.45
GetCellMethod · 0.45
GetCellBoundsMethod · 0.45
FindPointMethod · 0.45
GetPointGradientMethod · 0.45
GetXCoordinatesMethod · 0.45
GetYCoordinatesMethod · 0.45
GetZCoordinatesMethod · 0.45

Calls 1

assertFunction · 0.50

Tested by

no test coverage detected