Click or drag to resize

Matrix44CreateFromYawPitchRoll(Double, Double, Double, Matrix44) Method

Creates a new rotation Matrix44 from the specified yaw, pitch and roll values.

Namespace: CFX.Structures.Geometry
Assembly: CFX (in CFX.dll) Version: 2.0.0+5bb1f71a933ed371a0f5f2d5e7db34c89b75f3ea
Syntax
public static void CreateFromYawPitchRoll(
	double yaw,
	double pitch,
	double roll,
	out Matrix44 result
)

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.
Remarks
For more information about yaw, pitch and roll visit http://en.wikipedia.org/wiki/Euler_angles.
See Also