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

In This Topic
    IntersectionCircleCircle3D Method
    In This Topic
    Finds the intersection between two Arc/Circle entities.
    Syntax
    'Declaration
     
    Public Shared Function IntersectionCircleCircle3D( _
       ByVal arc1 As Circle, _
       ByVal arc2 As Circle, _
       ByRef i0 As Point3D, _
       ByRef i1 As Point3D _
    ) As Boolean
    public static bool IntersectionCircleCircle3D( 
       Circle arc1,
       Circle arc2,
       out Point3D i0,
       out Point3D i1
    )

    Parameters

    arc1
    The first arc/circle entity
    arc2
    The second 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