------------------------------------------------------------------------------
| 135 | |
| 136 | //------------------------------------------------------------------------------ |
| 137 | vtkTextProperty* vtkLabeledDataMapper::GetLabelTextProperty(int type) |
| 138 | { |
| 139 | if (this->Implementation->TextProperties.find(type) != this->Implementation->TextProperties.end()) |
| 140 | { |
| 141 | return this->Implementation->TextProperties[type]; |
| 142 | } |
| 143 | return nullptr; |
| 144 | } |
| 145 | |
| 146 | //------------------------------------------------------------------------------ |
| 147 | void vtkLabeledDataMapper::SetInputData(vtkDataObject* input) |