set_euler_angles method

set_euler_angles

Sets the Euler angles in degrees of current transform.

Returns

def set_euler_angles(self, rx, ry, rz):
    ...
ParameterTypeDescription
rxfloat
ryfloat
rzfloat

Example

from aspose.threed import Node

node = Node()
node.transform.set_euler_angles(90, 0, 0)

See Also