------------------------------------------------------------------------------
| 51 | |
| 52 | //------------------------------------------------------------------------------ |
| 53 | void vtkBox::SetXMin(double x, double y, double z) |
| 54 | { |
| 55 | vtkDebugMacro(<< this->GetClassName() << " (" << this << "): setting XMin to (" << x << "," << y |
| 56 | << "," << z << ")"); |
| 57 | const double* p = this->BBox->GetMinPoint(); |
| 58 | if ((p[0] == x) && (p[1] == y) && (p[2] == z)) |
| 59 | { |
| 60 | return; |
| 61 | } |
| 62 | this->BBox->SetMinPoint(x, y, z); |
| 63 | this->Modified(); |
| 64 | } |
| 65 | |
| 66 | //------------------------------------------------------------------------------ |
| 67 | void vtkBox::SetXMax(double x, double y, double z) |
nothing calls this directly
no test coverage detected