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

Method GetValidHiCorner

Common/DataModel/vtkAMRBox.cxx:165–172  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

163
164//------------------------------------------------------------------------------
165void vtkAMRBox::GetValidHiCorner(int* hi) const
166{
167 assert("pre: AMR Box instance is invalid" && !this->IsInvalid());
168 for (int q = 0; q < 3; ++q)
169 {
170 hi[q] = this->EmptyDimension(q) ? this->LoCorner[q] : this->HiCorner[q];
171 }
172}
173
174//------------------------------------------------------------------------------
175void vtkAMRBox::GetBoxOrigin(

Callers 5

FillRegionFunction · 0.80
BlankGridsAtLevelMethod · 0.80

Calls 1

assertFunction · 0.50

Tested by

no test coverage detected