Click or drag to resize

Matrix44CreateFromYawPitchRoll(Double, Double, Double) 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 Matrix44 CreateFromYawPitchRoll(
	double yaw,
	double pitch,
	double roll
)

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.

Return Value

Matrix44
The rotation Matrix44.
Remarks
For more information about yaw, pitch and roll visit http://en.wikipedia.org/wiki/Euler_angles.
See Also