------------------------------------------------------------------------------
| 986 | |
| 987 | //------------------------------------------------------------------------------ |
| 988 | void vtkDataSet::PrintSelf(ostream& os, vtkIndent indent) |
| 989 | { |
| 990 | this->Superclass::PrintSelf(os, indent); |
| 991 | |
| 992 | os << indent << "Number Of Points: " << this->GetNumberOfPoints() << "\n"; |
| 993 | os << indent << "Number Of Cells: " << this->GetNumberOfCells() << "\n"; |
| 994 | |
| 995 | os << indent << "Cell Data:\n"; |
| 996 | this->CellData->PrintSelf(os, indent.GetNextIndent()); |
| 997 | |
| 998 | os << indent << "Point Data:\n"; |
| 999 | this->PointData->PrintSelf(os, indent.GetNextIndent()); |
| 1000 | |
| 1001 | const double* bounds = this->GetBounds(); |
| 1002 | os << indent << "Bounds: \n"; |
| 1003 | os << indent << " Xmin,Xmax: (" << bounds[0] << ", " << bounds[1] << ")\n"; |
| 1004 | os << indent << " Ymin,Ymax: (" << bounds[2] << ", " << bounds[3] << ")\n"; |
| 1005 | os << indent << " Zmin,Zmax: (" << bounds[4] << ", " << bounds[5] << ")\n"; |
| 1006 | os << indent << "Compute Time: " << this->ComputeTime.GetMTime() << "\n"; |
| 1007 | } |
| 1008 | |
| 1009 | //------------------------------------------------------------------------------ |
| 1010 | bool vtkDataSet::HasAnyGhostPoints() |
nothing calls this directly
no test coverage detected