Transform.GeometricTranslation

Transform.GeometricTranslation 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.

public Vector3 GeometricTranslation { get; set; }

Examples

Node node = new Node();
node.Transform.GeometricTranslation = new Vector3(10, 0, 0);

See Also