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

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

    Parameters

    C1
    The first curve
    C2
    The second curve

    Return Value

    The list of intersection points.
    See Also