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

Method GetBound

Common/DataModel/vtkBoundingBox.h:486–492  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

484}
485
486inline double vtkBoundingBox::GetBound(int i) const
487{
488 // If i is odd then when are returning a part of the max bounds
489 // else part of the min bounds is requested. The exact component
490 // needed is i /2 (or i right shifted by 1
491 return ((i & 0x1) ? this->MaxPnt[i >> 1] : this->MinPnt[i >> 1]);
492}
493
494inline const double* vtkBoundingBox::GetMinPoint() const
495{

Callers 15

ProcessPointSetMethod · 0.80
WriteImageDataMethod · 0.80
TestPropItemFunction · 0.80
TestContextAreaFixedRectFunction · 0.80
TestContextAreaFunction · 0.80
operator==Method · 0.80
ComputeBeginAndEndMethod · 0.80
TestPolyDataToContextFunction · 0.80

Calls

no outgoing calls

Tested by 8

TestPropItemFunction · 0.64
TestContextAreaFixedRectFunction · 0.64
TestContextAreaFunction · 0.64
TestPolyDataToContextFunction · 0.64