Пример #1
0
 public virtual Snap.NX.Curve[] Divide(Snap.NX.ICurve boundingCurve, Snap.Position helpPoint)
 {
     Compute.IntersectionResult result = Compute.IntersectInfo(this, boundingCurve, helpPoint);
     return(this.Divide(new double[] { result.CurveParameter }));
 }
Пример #2
0
 public virtual Snap.NX.Curve[] Divide(Snap.Geom.Surface.Plane geomPlane, Snap.Position helpPoint)
 {
     Compute.IntersectionResult result = Compute.IntersectInfo(this, geomPlane, helpPoint);
     return(this.Divide(new double[] { result.CurveParameter }));
 }