Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Solid3D Class / CutBy Method / CutBy(Plane,Solid3D[],Boolean) Method
The cutting plane
The possible left over solid objects
When true the cut direction is inverted

In This Topic
    CutBy(Plane,Solid3D[],Boolean) Method
    In This Topic
    Cut the Solid3D with the Plane, overriding the original Solid3D with the result of the cut.
    Syntax
    'Declaration
     
    Public Overloads Function CutBy( _
       ByVal pln As Plane, _
       ByRef leftOvers As Solid3D(), _
       Optional ByVal flip As Boolean _
    ) As Boolean
    public bool CutBy( 
       Plane pln,
       out Solid3D[] leftOvers,
       bool flip
    )

    Parameters

    pln
    The cutting plane
    leftOvers
    The possible left over solid objects
    flip
    When true the cut direction is inverted

    Return Value

    If true the operation is successful and the original Solid3D is modified, otherwise the operation failed and the original Solid3D is unmutated.
    See Also