TransformBuilder.RotateEulerRadian
RotateEulerRadian(double, double, double)
Chain a rotation by Euler angles in radian
public TransformBuilder RotateEulerRadian(double x, double y, double z)
Parameter | Type | Description |
---|---|---|
x | Double | |
y | Double | |
z | Double |
Examples
TransformBuilder tb = new TransformBuilder();
tb.RotateEulerRadian(0, Math.PI, 0);
Console.WriteLine($"Transform Matrix: {tb.Matrix}");
See Also
- class TransformBuilder
- namespace Aspose.ThreeD.Utilities
- assembly Aspose.3D
RotateEulerRadian(Vector3)
Chain a rotation by Euler angles in radian
public TransformBuilder RotateEulerRadian(Vector3 r)
Parameter | Type | Description |
---|---|---|
r | Vector3 |
Examples
TransformBuilder tb = new TransformBuilder();
tb.RotateEulerRadian(new Vector3(0, Math.PI, 0));
Console.WriteLine($"Transform Matrix: {tb.Matrix}");
See Also
- struct Vector3
- class TransformBuilder
- namespace Aspose.ThreeD.Utilities
- assembly Aspose.3D