QuaternionCreateFromYawPitchRoll(Double, Double, Double) Method | 
            Creates a new 
Quaternion from the specified yaw, pitch and roll angles.
            
 Namespace: CFX.Structures.GeometryAssembly: CFX (in CFX.dll) Version: 2.0.0+5bb1f71a933ed371a0f5f2d5e7db34c89b75f3ea
Syntaxpublic static Quaternion CreateFromYawPitchRoll(
	double yaw,
	double pitch,
	double roll
)
Public Shared Function CreateFromYawPitchRoll ( 
	yaw As Double,
	pitch As Double,
	roll As Double
) As Quaternion
Parameters
- yaw  Double
 - Yaw around the y axis in radians.
 - pitch  Double
 - Pitch around the x axis in radians.
 - roll  Double
 - Roll around the z axis in radians.
 
Return Value
QuaternionA new quaternion from the concatenated yaw, pitch, and roll angles.
See Also