public Euler Reorder(string newOrder) { // WARNING: this discards revolution information -bhouston var q = new Quaternion(); q.SetFromEuler(this); return(this.SetFromQuaternion(q, newOrder)); }
public Vector3 ApplyEuler(Euler euler) { var quaternion = new Quaternion(); return(this.ApplyQuaternion(quaternion.SetFromEuler(euler))); }