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

Method GetBounds

Common/DataModel/vtkKdNode.cxx:98–106  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

96
97//------------------------------------------------------------------------------
98void vtkKdNode::GetBounds(double* b) const
99{
100 b[0] = this->Min[0];
101 b[1] = this->Max[0];
102 b[2] = this->Min[1];
103 b[3] = this->Max[1];
104 b[4] = this->Min[2];
105 b[5] = this->Max[2];
106}
107
108//------------------------------------------------------------------------------
109void vtkKdNode::SetDataBounds(double x1, double x2, double y1, double y2, double z1, double z2)

Callers 1

IntersectsCellMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected