geometric_translation property

geometric_translation property

Gets or sets the geometric translation. 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_translation = Vector3(10, 0, 0)

Definition:

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

See Also