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

Method SetBounds

Filters/Sources/vtkCubeSource.cxx:185–196  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Convenience method allows creation of cube by specifying bounding box.

Source from the content-addressed store, hash-verified

183//------------------------------------------------------------------------------
184// Convenience method allows creation of cube by specifying bounding box.
185void vtkCubeSource::SetBounds(
186 double xMin, double xMax, double yMin, double yMax, double zMin, double zMax)
187{
188 double bounds[6];
189 bounds[0] = xMin;
190 bounds[1] = xMax;
191 bounds[2] = yMin;
192 bounds[3] = yMax;
193 bounds[4] = zMin;
194 bounds[5] = zMax;
195 this->SetBounds(bounds);
196}
197
198//------------------------------------------------------------------------------
199void vtkCubeSource::SetBounds(const double bounds[6])

Callers 15

RequestDataMethod · 0.45
TestOutlineCornerSourceFunction · 0.45
TestOutlineSourceFunction · 0.45
TestTessellatedBoxSourceFunction · 0.45
RequestDataMethod · 0.45
RequestDataMethod · 0.45
BoundsCullMethod · 0.45
operator()Method · 0.45

Calls 1

SetCenterMethod · 0.45