------------------------------------------------------------------------------
| 301 | |
| 302 | //------------------------------------------------------------------------------ |
| 303 | int vtkVRControlsHelper::RenderTranslucentPolygonalGeometry(vtkViewport* v) |
| 304 | { |
| 305 | if (this->NeedUpdate) |
| 306 | { |
| 307 | this->UpdateRepresentation(); |
| 308 | } |
| 309 | |
| 310 | if (!this->LabelVisible) |
| 311 | { |
| 312 | return 0; |
| 313 | } |
| 314 | |
| 315 | int count = 0; |
| 316 | |
| 317 | count += this->TextActor->RenderTranslucentPolygonalGeometry(v); |
| 318 | |
| 319 | return count; |
| 320 | } |
| 321 | |
| 322 | //------------------------------------------------------------------------------ |
| 323 | vtkTypeBool vtkVRControlsHelper::HasTranslucentPolygonalGeometry() |
nothing calls this directly
no test coverage detected