Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Solid Class / IntersectionLoops Method
First solid
Second solid
Optional tolerance, start with domain size * 1e-6

In This Topic
    IntersectionLoops Method (Solid)
    In This Topic
    Computes the intersection loops between two Solid objects.
    Syntax
    'Declaration
     
    Public Shared Function IntersectionLoops( _
       ByVal a As Solid, _
       ByVal b As Solid, _
       Optional ByVal tol As Double _
    ) As Segment3D()
    public static Segment3D[] IntersectionLoops( 
       Solid a,
       Solid b,
       double tol
    )

    Parameters

    a
    First solid
    b
    Second solid
    tol
    Optional tolerance, start with domain size * 1e-6

    Return Value

    A list of Segment3D representing the intersection loops.
    See Also