Ejemplo n.º 1
0
        public Vector3 GetEuler()
        {
#if DEBUG
            if (!IsNormalized())
            {
                throw new InvalidOperationException("Quat is not normalized");
            }
#endif
            var basis = new Basis(this);
            return(basis.GetEuler());
        }
Ejemplo n.º 2
0
        public Vector3 GetEuler()
        {
            var basis = new Basis(this);

            return(basis.GetEuler());
        }