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

Method PrintSelf

Common/DataModel/vtkAMRMetaData.cxx:19–30  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

17
18//------------------------------------------------------------------------------
19void vtkAMRMetaData::PrintSelf(ostream& os, vtkIndent indent)
20{
21 this->Superclass::PrintSelf(os, indent);
22
23 os << indent << "Grid description: " << this->GetGridDescription() << "\n";
24 os << indent << "Number of blocks per level: ";
25 for (unsigned int i = 1; i < this->NumBlocks.size(); i++)
26 {
27 os << indent << this->NumBlocks[i] - this->NumBlocks[i - 1] << " ";
28 }
29 os << "\n";
30}
31
32// VTK_DEPRECATED_IN_9_6_0("Use Initialize(const std::vector<unsigned int>&) instead")
33//------------------------------------------------------------------------------

Callers

nothing calls this directly

Calls 2

GetGridDescriptionMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected