Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Curve Class / Intersection2D Method
The first curve
The second curve
The plane where the two curves lay

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

    Parameters

    C1
    The first curve
    C2
    The second curve
    plane
    The plane where the two curves lay

    Return Value

    The list of intersection points.
    See Also