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

Method GetRightChildIndex

Common/DataModel/vtkCellTreeLocator.cxx:148–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

146 }
147 T GetLeftChildIndex() const { return (this->Index >> 2); }
148 T GetRightChildIndex() const
149 {
150 // Right child node is adjacent to the Left child node in the data structure
151 return (this->Index >> 2) + 1;
152 }
153 T GetDimension() const { return this->Index & 3; }
154 const double& GetLeftMaxValue() const { return this->LeftMax; }
155 const double& GetRightMinValue() const { return this->RightMin; }

Callers 2

SplitMethod · 0.80
ReduceMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected