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

Method AddBounds

Common/DataModel/vtkBox.cxx:101–110  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

99
100//------------------------------------------------------------------------------
101void vtkBox::AddBounds(const double bounds[6])
102{
103 vtkBoundingBox bbox(*(this->BBox));
104 this->BBox->AddBounds(bounds);
105 // If the unioned bounding has changed called modified
106 if ((*this->BBox) != bbox)
107 {
108 this->Modified();
109 }
110}
111
112//------------------------------------------------------------------------------
113// Evaluate box equation. This differs from the similar vtkPlanes

Callers 15

GetOriginAndSpacingMethod · 0.45
GetBoundsMethod · 0.45
GetBoundsMethod · 0.45
GetBoundsMethod · 0.45
GetBoundsMethod · 0.45
GetBoundsMethod · 0.45
GetBoundsMethod · 0.45
GetBoundsMethod · 0.45
GetBoundsMethod · 0.45
GetBoundsMethod · 0.45

Calls 1

ModifiedMethod · 0.45

Tested by 2

TestCutsFunction · 0.36
ComputeGlobalBoundsFunction · 0.36