MatrixCreateFromYawPitchRoll Method |
Creates a new rotation
Matrix from the specified yaw, pitch and roll values.
Namespace:
SampSharp.GameMode
Assembly:
SampSharp.GameMode (in SampSharp.GameMode.dll) Version: 0.0.0-localbuild+05637d43e9f34d872e453289d4e240c843e43b09
Syntax public static Matrix CreateFromYawPitchRoll(
float yaw,
float pitch,
float roll
)
Parameters
- yaw
- Type: SystemSingle
The yaw rotation value in radians. - pitch
- Type: SystemSingle
The pitch rotation value in radians. - roll
- Type: SystemSingle
The roll rotation value in radians.
Return Value
Type:
MatrixThe rotation
Matrix.
Remarks
For more information about yaw, pitch and roll visit http://en.wikipedia.org/wiki/Euler_angles.
See Also