TransformBuilder.RotateEulerRadian

RotateEulerRadian(double, double, double)

Chain a rotation by Euler angles in radian

public TransformBuilder RotateEulerRadian(double x, double y, double z)
ParameterTypeDescription
xDouble
yDouble
zDouble

Examples

TransformBuilder tb = new TransformBuilder();
tb.RotateEulerRadian(0, Math.PI, 0);
Console.WriteLine($"Transform Matrix: {tb.Matrix}");

See Also


RotateEulerRadian(Vector3)

Chain a rotation by Euler angles in radian

public TransformBuilder RotateEulerRadian(Vector3 r)
ParameterTypeDescription
rVector3

Examples

TransformBuilder tb = new TransformBuilder();
tb.RotateEulerRadian(new Vector3(0, Math.PI, 0));
Console.WriteLine($"Transform Matrix: {tb.Matrix}");

See Also