translation property

translation property

Gets or sets the translation

Example

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

node = Node()
node.transform.translation = Vector3(10, 0, 0)

Definition:

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

See Also