Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Quaternion Class / ToEulerAngles Method
Roll angle in radians
Pitch angle in radians
Yaw angle in radians

In This Topic
    ToEulerAngles Method
    In This Topic
    Converts this quaternion to Euler angles.
    Syntax
    'Declaration
     
    Public Sub ToEulerAngles( _
       ByRef roll As Double, _
       ByRef pitch As Double, _
       ByRef yaw As Double _
    ) 
    public void ToEulerAngles( 
       out double roll,
       out double pitch,
       out double yaw
    )

    Parameters

    roll
    Roll angle in radians
    pitch
    Pitch angle in radians
    yaw
    Yaw angle in radians
    Remarks
    Singularities at north/south poles (gimbal lock) are not handled by this method.
    See Also