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.
Public Sub New( curve1 As Curve3d, curve2 As Curve3d, range1 As Interval, range2 As Interval, planeNormal As Vector3d )
public CurveCurveIntersector3d( Curve3d curve1, Curve3d curve2, Interval range1, Interval range2, Vector3d planeNormal );
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 |
Comments? |