------------------------------------------------------------------------------
| 65 | |
| 66 | //------------------------------------------------------------------------------ |
| 67 | void vtkBox::SetXMax(double x, double y, double z) |
| 68 | { |
| 69 | vtkDebugMacro(<< this->GetClassName() << " (" << this << "): setting XMax to (" << x << "," << y |
| 70 | << "," << z << ")"); |
| 71 | const double* p = this->BBox->GetMaxPoint(); |
| 72 | if ((p[0] == x) && (p[1] == y) && (p[2] == z)) |
| 73 | { |
| 74 | return; |
| 75 | } |
| 76 | this->BBox->SetMaxPoint(x, y, z); |
| 77 | this->Modified(); |
| 78 | } |
| 79 | |
| 80 | //------------------------------------------------------------------------------ |
| 81 | void vtkBox::GetBounds(double& xMin, double& xMax, double& yMin, double& yMax, double& zMin, |
nothing calls this directly
no test coverage detected