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

Method PrintSelf

Rendering/Core/vtkTextMapper.cxx:93–123  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

91
92//------------------------------------------------------------------------------
93void vtkTextMapper::PrintSelf(ostream& os, vtkIndent indent)
94{
95 this->Superclass::PrintSelf(os, indent);
96
97 if (this->TextProperty)
98 {
99 os << indent << "Text Property:\n";
100 this->TextProperty->PrintSelf(os, indent.GetNextIndent());
101 }
102 else
103 {
104 os << indent << "Text Property: (none)\n";
105 }
106
107 os << indent << "Input: " << (this->Input ? this->Input : "(none)") << "\n";
108
109 os << indent << "TextDims: " << this->TextDims[0] << ", " << this->TextDims[1] << "\n";
110
111 os << indent << "CoordsTime: " << this->CoordsTime.GetMTime() << "\n";
112 os << indent << "TCoordsTime: " << this->TCoordsTime.GetMTime() << "\n";
113 os << indent << "Image:\n";
114 this->Image->PrintSelf(os, indent.GetNextIndent());
115 os << indent << "Points:\n";
116 this->Points->PrintSelf(os, indent.GetNextIndent());
117 os << indent << "PolyData:\n";
118 this->PolyData->PrintSelf(os, indent.GetNextIndent());
119 os << indent << "Mapper:\n";
120 this->Mapper->PrintSelf(os, indent.GetNextIndent());
121 os << indent << "Texture:\n";
122 this->Texture->PrintSelf(os, indent.GetNextIndent());
123}
124
125//------------------------------------------------------------------------------
126void vtkTextMapper::GetSize(vtkViewport* vp, int size[2])

Callers

nothing calls this directly

Calls 2

GetNextIndentMethod · 0.80
GetMTimeMethod · 0.45

Tested by

no test coverage detected