Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Segment2D Class / IntersectionLine Method
First line
Second line
Intersection point (when it exists)

In This Topic
    IntersectionLine Method
    In This Topic
    Computes the intersection of two infinite 2D lines.
    Syntax
    'Declaration
     
    Public Shared Function IntersectionLine( _
       ByVal s1 As Segment2D, _
       ByVal s2 As Segment2D, _
       ByRef i0 As Point2D _
    ) As Boolean
    public static bool IntersectionLine( 
       Segment2D s1,
       Segment2D s2,
       out Point2D i0
    )

    Parameters

    s1
    First line
    s2
    Second line
    i0
    Intersection point (when it exists)

    Return Value

    True if the intersection exists, false otherwise (parallel lines).
    See Also