Hyperion.Core.Geometry.DifferentialGeometry.DifferentialGeometry C# (CSharp) Method

DifferentialGeometry() public method

public DifferentialGeometry ( DifferentialGeometry dg ) : System
dg DifferentialGeometry
return System
        public DifferentialGeometry(DifferentialGeometry dg)
        {
            this.p = new Point (dg.p);
            this.dpdu = new Vector (dg.dpdu);
            this.dpdv = new Vector (dg.dpdv);
            this.dndu = new Normal (dg.dndu);
            this.dndv = new Normal (dg.dndv);
            this.n = new Normal (dg.n);
            this.u = dg.u;
            this.v = dg.v;
            this.dudx = dg.dudx;
            this.dvdx = dg.dvdx;
            this.dudy = dg.dudy;
            this.dvdy = dg.dvdy;
            this.Shape = dg.Shape;
        }

Same methods

DifferentialGeometry::DifferentialGeometry ( ) : System
DifferentialGeometry::DifferentialGeometry ( Point p, Vector dpdu, Vector dpdv, Normal dndu, Normal dndv, double u, double v, IShape shape ) : System