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

Method SetBounds

Common/DataModel/vtkBoundingBox.cxx:88–97  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

86
87//------------------------------------------------------------------------------
88void vtkBoundingBox::SetBounds(
89 double xMin, double xMax, double yMin, double yMax, double zMin, double zMax)
90{
91 this->MinPnt[0] = xMin;
92 this->MaxPnt[0] = xMax;
93 this->MinPnt[1] = yMin;
94 this->MaxPnt[1] = yMax;
95 this->MinPnt[2] = zMin;
96 this->MaxPnt[2] = zMax;
97}
98
99//------------------------------------------------------------------------------
100void vtkBoundingBox::SetMinPoint(double x, double y, double z)

Callers 1

AddBoundsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected