------------------------------------------------------------------------------
| 906 | |
| 907 | //------------------------------------------------------------------------------ |
| 908 | void vtkExplicitStructuredGrid::PrintSelf(ostream& os, vtkIndent indent) |
| 909 | { |
| 910 | this->Superclass::PrintSelf(os, indent); |
| 911 | |
| 912 | int dim[3]; |
| 913 | this->GetDimensions(dim); |
| 914 | os << indent << "Dimensions: (" << dim[0] << ", " << dim[1] << ", " << dim[2] << ")\n"; |
| 915 | |
| 916 | os << indent << "Extent: (" << this->Extent[0] << ", " << this->Extent[1] << ", " |
| 917 | << this->Extent[2] << ", " << this->Extent[3] << ", " << this->Extent[4] << ", " |
| 918 | << this->Extent[5] << ")\n"; |
| 919 | } |
| 920 | |
| 921 | //------------------------------------------------------------------------------ |
| 922 | // Override this method because of blanking |
nothing calls this directly
no test coverage detected