Autodesk.AutoCAD.Geometry Namespace > CurveCurveIntersector3d Class > CurveCurveIntersector3d Constructor > CurveCurveIntersector3d(Curve3d, Curve3d, Interval, Interval, Vector3d) Constructor
CurveCurveIntersector3d.CurveCurveIntersector3d(Curve3d, Curve3d, Interval, Interval, Vector3d) Constructor
Description

 

Constructs an object that represents the intersection of the two input curves, curve1 and curve2. 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 default tolerance.

Visual Basic
Public Sub New(
    curve1 As Curve3d, 
    curve2 As Curve3d, 
    range1 As Interval, 
    range2 As Interval, 
    planeNormal As Vector3d
)
C#
public CurveCurveIntersector3d(
    Curve3d curve1, 
    Curve3d curve2, 
    Interval range1, 
    Interval range2, 
    Vector3d planeNormal
);
Parameters
Parameters 
Description 
Curve3d curve1 
Input first curve 
Curve3d curve2 
Input second curve 
Interval range1 
Input first range interval 
Interval range2 
Input second range interval 
Vector3d planeNormal 
Input optional plane normal 
Links
   Comments?