コード例 #1
0
        public GodotTransform Inverse()
        {
            GodotBasis basis = this.basis.Transposed();

            return(new GodotTransform(basis, basis.Xform(-origin)));
        }
コード例 #2
0
        public GodotTransform AffineInverse()
        {
            GodotBasis basis = this.basis.Inverse();

            return(new GodotTransform(basis, basis.Xform(-origin)));
        }