------------------------------------------------------------------------------
| 52 | |
| 53 | //------------------------------------------------------------------------------ |
| 54 | void vtkGenericDataSet::PrintSelf(ostream& os, vtkIndent indent) |
| 55 | { |
| 56 | this->Superclass::PrintSelf(os, indent); |
| 57 | |
| 58 | os << indent << "Number Of Points: " << this->GetNumberOfPoints() << "\n"; |
| 59 | os << indent << "Number Of Cells: " << this->GetNumberOfCells() << "\n"; |
| 60 | |
| 61 | os << indent << "Attributes:\n"; |
| 62 | this->GetAttributes()->PrintSelf(os, indent.GetNextIndent()); |
| 63 | |
| 64 | this->ComputeBounds(); |
| 65 | os << indent << "Bounds: \n"; |
| 66 | os << indent << " Xmin,Xmax: (" << this->Bounds[0] << ", " << this->Bounds[1] << ")\n"; |
| 67 | os << indent << " Ymin,Ymax: (" << this->Bounds[2] << ", " << this->Bounds[3] << ")\n"; |
| 68 | os << indent << " Zmin,Zmax: (" << this->Bounds[4] << ", " << this->Bounds[5] << ")\n"; |
| 69 | |
| 70 | os << indent << "Tessellator:" << this->Tessellator << endl; |
| 71 | } |
| 72 | |
| 73 | //------------------------------------------------------------------------------ |
| 74 | // Description: |
nothing calls this directly
no test coverage detected