------------------------------------------------------------------------------
| 383 | |
| 384 | //------------------------------------------------------------------------------ |
| 385 | void vtkVRControlsHelper::SetText(const std::string& _text) |
| 386 | { |
| 387 | if (this->Text == _text) |
| 388 | { |
| 389 | return; |
| 390 | } |
| 391 | this->Text = _text; |
| 392 | |
| 393 | this->TextActor->SetInput(this->Text.c_str()); |
| 394 | this->Modified(); |
| 395 | } |
| 396 | |
| 397 | //------------------------------------------------------------------------------ |
| 398 | void vtkVRControlsHelper::SetEnabled(bool val) |