BEPUutilities.Quaternion.CreateFromYawPitchRoll C# (CSharp) Method

CreateFromYawPitchRoll() public static method

Constructs a quaternion from yaw, pitch, and roll.
public static CreateFromYawPitchRoll ( float yaw, float pitch, float roll ) : Quaternion
yaw float Yaw of the rotation.
pitch float Pitch of the rotation.
roll float Roll of the rotation.
return Quaternion
        public static Quaternion CreateFromYawPitchRoll(float yaw, float pitch, float roll)
        {
            Quaternion toReturn;
            CreateFromYawPitchRoll(yaw, pitch, roll, out toReturn);
            return toReturn;
        }

Same methods

Quaternion::CreateFromYawPitchRoll ( float yaw, float pitch, float roll, &q ) : void