------------------------------------------------------------------------------
| 91 | |
| 92 | //------------------------------------------------------------------------------ |
| 93 | void 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 | //------------------------------------------------------------------------------ |
| 126 | void vtkTextMapper::GetSize(vtkViewport* vp, int size[2]) |
nothing calls this directly
no test coverage detected