Autodesk.AutoCAD.Geometry Namespace > CurveCurveIntersector2d Class > CurveCurveIntersector2d Constructor > CurveCurveIntersector2d(Curve2d, Curve2d, Interval, Interval) Constructor
CurveCurveIntersector2d.CurveCurveIntersector2d(Curve2d, Curve2d, Interval, Interval) Constructor
Description

 

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).

Visual Basic
Public Sub New(
    curve1 As Curve2d, 
    curve2 As Curve2d, 
    range1 As Interval, 
    range2 As Interval
)
C#
public CurveCurveIntersector2d(
    Curve2d curve1, 
    Curve2d curve2, 
    Interval range1, 
    Interval range2
);
Parameters
Parameters 
Description 
Curve2d curve1 
Input first curve 
Curve2d curve2 
Input second curve 
Interval range1 
Input first range interval 
Interval range2 
Input second range interval 
Links
   Comments?