MCPcopy Create free account
hub / github.com/Kitware/VTK / HasTranslucentPolygonalGeometry

Method HasTranslucentPolygonalGeometry

Rendering/Annotation/vtkAxesActor.cxx:264–285  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Description: Does this prop have some translucent polygonal geometry?

Source from the content-addressed store, hash-verified

262// Description:
263// Does this prop have some translucent polygonal geometry?
264vtkTypeBool 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//------------------------------------------------------------------------------
288int vtkAxesActor::RenderOverlay(vtkViewport* vp)

Callers

nothing calls this directly

Calls 1

UpdatePropsMethod · 0.95

Tested by

no test coverage detected