BEPUutilities.Quaternion.CreateFromYawPitchRoll C# (CSharp) 메소드

CreateFromYawPitchRoll() 공개 정적인 메소드

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.
리턴 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