Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Solid Class / Difference Method / Difference<T>(T,T,Double) Method
First operand
Second operand
Optional tolerance, start with domain size * 1e-6

In This Topic
    Difference<T>(T,T,Double) Method
    In This Topic
    Boolean Difference between two solids.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Difference(Of T As {New, Solid})( _
       ByVal a As T, _
       ByVal b As T, _
       Optional ByVal tol As Double _
    ) As T()
    public static T[] Difference<T>( 
       T a,
       T b,
       double tol
    )
    where T: new(), Solid

    Parameters

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

    Type Parameters

    T

    Return Value

    An array of solids if the operation is successful, null/Nothing otherwise.
    See Also