Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Solid3D Class / Remove Method / Remove(IList<Solid3D>,Solid3D[]) Method
The list of disjoint solid3Ds to remove
The resulting left overs of the operation (null if not present)

In This Topic
    Remove(IList<Solid3D>,Solid3D[]) Method
    In This Topic
    Removes a list of non-intersecting solids from the original Solid3D object.
    Syntax
    'Declaration
     
    Public Overloads Function Remove( _
       ByVal solids As IList(Of Solid3D), _
       ByRef leftOvers As Solid3D() _
    ) As Boolean
    public bool Remove( 
       IList<Solid3D> solids,
       out Solid3D[] leftOvers
    )

    Parameters

    solids
    The list of disjoint solid3Ds to remove
    leftOvers
    The resulting left overs of the operation (null if not present)

    Return Value

    True if the operation succeeded, false otherwise keeping the Solid3D object unmutated.
    See Also