geometric_rotation property

geometric_rotation property

Gets or sets the geometric Euler rotation(measured in degree). Geometric transformation only affects the entities attached and leave the child nodes unaffected. It will be merged as local transformation when you export the geometric transformation to file types that does not support it.

Example

from aspose.threed import Node
from aspose.threed.utilities import Vector3

node = Node()
node.transform.geometric_rotation = Vector3(90, 0, 0)

Definition:

@property
def geometric_rotation(self):
    ...
@geometric_rotation.setter
def geometric_rotation(self, value):
    ...

See Also