MCPcopy Create free account
hub / github.com/Kitware/VTK / PrintSelf

Method PrintSelf

Common/DataModel/vtkGenericDataSet.cxx:54–71  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

52
53//------------------------------------------------------------------------------
54void 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:

Callers

nothing calls this directly

Calls 5

GetNextIndentMethod · 0.80
GetNumberOfPointsMethod · 0.45
GetNumberOfCellsMethod · 0.45
GetAttributesMethod · 0.45
ComputeBoundsMethod · 0.45

Tested by

no test coverage detected