------------------------------------------------------------------------------
| 99 | |
| 100 | //------------------------------------------------------------------------------ |
| 101 | void 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 |