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

Method SetDataBounds

Common/DataModel/vtkKdNode.cxx:109–117  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

107
108//------------------------------------------------------------------------------
109void vtkKdNode::SetDataBounds(double x1, double x2, double y1, double y2, double z1, double z2)
110{
111 this->MinVal[0] = x1;
112 this->MaxVal[0] = x2;
113 this->MinVal[1] = y1;
114 this->MaxVal[1] = y2;
115 this->MinVal[2] = z1;
116 this->MaxVal[2] = z2;
117}
118
119//------------------------------------------------------------------------------
120void vtkKdNode::SetDataBounds(VTK_FUTURE_CONST float* v)

Callers 10

CreateCutsMethod · 0.45
BuildTreeMethod · 0.45
BuildLocatorInternalMethod · 0.45
AddNewRegionsMethod · 0.45
BuildLocatorInternalMethod · 0.45
BreadthFirstDivideMethod · 0.45
DivideRegionMethod · 0.45
UnpackDataMethod · 0.45
FillOutTreeMethod · 0.45

Calls 2

GetNumberOfPointsMethod · 0.45
GetDataBoundsMethod · 0.45

Tested by

no test coverage detected