translation property

translation property

Gets the translation

Example

from aspose.threed import Scene

scene = Scene.from_file("test.fbx")
tr = scene.root_node.global_transform
print(f"Translation = {tr.translation}")

Definition:

@property
def translation(self):
    ...

See Also