Constructs an object that represents the intersection of the two input curves. Intersection points and overlaps are only returned if they are within the two specified parameter ranges. Intersection points are returned within the accuracy of the specified tolerance (or to within the default tolerance if no tolerance parameter is specified).
Public Sub New( curve1 As Curve2d, curve2 As Curve2d, range1 As Interval, range2 As Interval )
public CurveCurveIntersector2d( Curve2d curve1, Curve2d curve2, Interval range1, Interval range2 );
Parameters |
Description |
Curve2d curve1 |
Input first curve |
Curve2d curve2 |
Input second curve |
Interval range1 |
Input first range interval |
Interval range2 |
Input second range interval |
Comments? |