Transform.SetGeometricRotation

Transform.SetGeometricRotation method

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.

public Transform SetGeometricRotation(double rx, double ry, double rz)

Examples

Node node = new Node();
node.Transform.SetGeometricRotation(90, 0, 0);

See Also