------------------------------------------------------------------------------
| 39 | |
| 40 | //------------------------------------------------------------------------------ |
| 41 | vtkTextActor* vtkTextWidget::GetTextActor() |
| 42 | { |
| 43 | vtkTextRepresentation* textRep = reinterpret_cast<vtkTextRepresentation*>(this->WidgetRep); |
| 44 | if (!textRep) |
| 45 | { |
| 46 | return nullptr; |
| 47 | } |
| 48 | else |
| 49 | { |
| 50 | return textRep->GetTextActor(); |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | //------------------------------------------------------------------------------ |
| 55 | void vtkTextWidget::CreateDefaultRepresentation() |
no outgoing calls