public CurveMovementCurve(CurveMovement parent, GeoPoint toMove, double umin, double umax) { this.parent = parent; this.toMove = toMove; this.umin = umin; this.umax = umax; }
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; }