------------------------------------------------------------------------------
| 788 | |
| 789 | //------------------------------------------------------------------------------ |
| 790 | void vtkBox::PrintSelf(ostream& os, vtkIndent indent) |
| 791 | { |
| 792 | this->Superclass::PrintSelf(os, indent); |
| 793 | const double* minP = this->BBox->GetMinPoint(); |
| 794 | const double* maxP = this->BBox->GetMaxPoint(); |
| 795 | |
| 796 | os << indent << "XMin: (" << minP[0] << ", " << minP[1] << ", " << minP[2] << ")\n"; |
| 797 | os << indent << "XMax: (" << maxP[0] << ", " << maxP[1] << ", " << maxP[2] << ")\n"; |
| 798 | } |
| 799 | //------------------------------------------------------------------------------ |
| 800 | void vtkBox::GetXMin(double p[3]) VTK_FUTURE_CONST |
| 801 | { |