示例#1
0
        public void ProjectTo(IVector4 where)
        {
            BuffVector4d aux = new BuffVector4d(where);

            aux.ProjV(new Vector4d(this.x, this.y, this.z, this.w));
            this.Set(aux.X, aux.Y, aux.Z, aux.W);
        }
示例#2
0
        public void ProjectTo(IPoint4 p1, IVector4 where)
        {
            ITuple4_Double _p1 = p1.AsTupleDouble();
            BuffVector4d   aux = new BuffVector4d(where);

            aux.ProjV(new Vector4d(_p1.X, _p1.Y, _p1.Z, _p1.W));
            this.Set(aux.X, aux.Y, aux.Z, aux.W);
        }