Matrix44CreateFromYawPitchRoll(Double, Double, Double, Matrix44) Method |
Creates a new rotation
Matrix44 from the specified yaw, pitch and roll values.
Namespace: CFX.Structures.GeometryAssembly: CFX (in CFX.dll) Version: 2.0.0+5bb1f71a933ed371a0f5f2d5e7db34c89b75f3ea
Syntaxpublic static void CreateFromYawPitchRoll(
double yaw,
double pitch,
double roll,
out Matrix44 result
)
Public Shared Sub CreateFromYawPitchRoll (
yaw As Double,
pitch As Double,
roll As Double,
<OutAttribute> ByRef result As Matrix44
)
Parameters
- yaw Double
- The yaw rotation value in radians.
- pitch Double
- The pitch rotation value in radians.
- roll Double
- The roll rotation value in radians.
- result Matrix44
- The rotation Matrix44 as an output parameter.
RemarksFor more information about yaw, pitch and roll visit http://en.wikipedia.org/wiki/Euler_angles.
See Also