Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Curve Class / Intersection Method / Intersection(ICurve,ICurve,Double) Method
The first curve
The second curve
Maximum distance between curves

In This Topic
    Intersection(ICurve,ICurve,Double) Method
    In This Topic
    Finds all 3D points where the provided curves intersect within the specified gap.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Intersection( _
       ByVal C1 As ICurve, _
       ByVal C2 As ICurve, _
       ByVal maxGap As Double _
    ) As Point3D()
    public static Point3D[] Intersection( 
       ICurve C1,
       ICurve C2,
       double maxGap
    )

    Parameters

    C1
    The first curve
    C2
    The second curve
    maxGap
    Maximum distance between curves

    Return Value

    The list of intersection points.
    See Also