Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / CompositeCurve Class / IntersectionLineLine Method / IntersectionLineLine(ICurve,ICurve,Plane,Point3D) Method
The first line entity
The second line entity
The plane where the two entities lay
The intersection point (when it exists)

In This Topic
    IntersectionLineLine(ICurve,ICurve,Plane,Point3D) Method
    In This Topic
    Finds the intersection between two coplanar Line entities
    Syntax
    'Declaration
     
    Public Overloads Shared Function IntersectionLineLine( _
       ByVal line1 As ICurve, _
       ByVal line2 As ICurve, _
       ByVal pln As Plane, _
       ByRef i0 As Point3D _
    ) As Boolean
    public static bool IntersectionLineLine( 
       ICurve line1,
       ICurve line2,
       Plane pln,
       out Point3D i0
    )

    Parameters

    line1
    The first line entity
    line2
    The second line entity
    pln
    The plane where the two entities lay
    i0
    The intersection point (when it exists)

    Return Value

    True if the intersection is found and inside to both the lines, false when the two entities don't touch.
    See Also