INNER CODE UNIT · Python
opacity
fury-gl/fury · fury/actor/core.py:123
def opacity(self, opacity):
"""
Set the opacity of the actor.
Parameters
----------
opacity : float
Opacity value between 0 (fully transparent) and 1 (fully opaque).
"""
set_opacity(self, opacity)
@staticmethod
def _euler_to_quaternion(rotation):
"""
Convert XYZ Euler angles (radians) to a quaternion.
Parameters
----------