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

Method PrintSelf

Common/DataModel/vtkExplicitStructuredGrid.cxx:908–919  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

906
907//------------------------------------------------------------------------------
908void 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

Callers

nothing calls this directly

Calls 1

GetDimensionsMethod · 0.95

Tested by

no test coverage detected