------------------------------------------------------------------------------ Description: Does this prop have some translucent polygonal geometry?
| 262 | // Description: |
| 263 | // Does this prop have some translucent polygonal geometry? |
| 264 | vtkTypeBool vtkAxesActor::HasTranslucentPolygonalGeometry() |
| 265 | { |
| 266 | int result = 0; |
| 267 | |
| 268 | this->UpdateProps(); |
| 269 | |
| 270 | result |= this->XAxisShaft->HasTranslucentPolygonalGeometry(); |
| 271 | result |= this->YAxisShaft->HasTranslucentPolygonalGeometry(); |
| 272 | result |= this->ZAxisShaft->HasTranslucentPolygonalGeometry(); |
| 273 | |
| 274 | result |= this->XAxisTip->HasTranslucentPolygonalGeometry(); |
| 275 | result |= this->YAxisTip->HasTranslucentPolygonalGeometry(); |
| 276 | result |= this->ZAxisTip->HasTranslucentPolygonalGeometry(); |
| 277 | |
| 278 | if (this->AxisLabels) |
| 279 | { |
| 280 | result |= this->XAxisLabel->HasTranslucentPolygonalGeometry(); |
| 281 | result |= this->YAxisLabel->HasTranslucentPolygonalGeometry(); |
| 282 | result |= this->ZAxisLabel->HasTranslucentPolygonalGeometry(); |
| 283 | } |
| 284 | return result; |
| 285 | } |
| 286 | |
| 287 | //------------------------------------------------------------------------------ |
| 288 | int vtkAxesActor::RenderOverlay(vtkViewport* vp) |
nothing calls this directly
no test coverage detected