コード例 #1
0
 public CurveMovementCurve(CurveMovement parent, GeoPoint toMove, double umin, double umax)
 {
     this.parent = parent;
     this.toMove = toMove;
     this.umin   = umin;
     this.umax   = umax;
 }
コード例 #2
0
            public override void CopyGeometry(IGeoObject ToCopyFrom)
            {
                CurveMovementCurve other = ToCopyFrom as CurveMovementCurve;

                this.parent = other.parent;
                this.toMove = other.toMove;
                this.umin   = other.umin;
                this.umax   = other.umax;
            }