Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / CompositeCurve Class / IntersectionLineCircle3D Method
The line entity
The arc/circle entity
The first intersection point (when it exists)
The second intersection point (when it exists)

In This Topic
    IntersectionLineCircle3D Method
    In This Topic
    Finds the intersection between an Arc/Circle and a Line entity.
    Syntax
    'Declaration
     
    Public Shared Function IntersectionLineCircle3D( _
       ByVal line As Line, _
       ByVal circ As Circle, _
       ByRef i0 As Point3D, _
       ByRef i1 As Point3D _
    ) As Boolean
    public static bool IntersectionLineCircle3D( 
       Line line,
       Circle circ,
       out Point3D i0,
       out Point3D i1
    )

    Parameters

    line
    The line entity
    circ
    The arc/circle entity
    i0
    The first intersection point (when it exists)
    i1
    The second intersection point (when it exists)

    Return Value

    True if the intersection is found, false when the two entities don't touch.
    See Also