Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Solid3D Class / SplitBy Method / SplitBy(Plane,Solid3D[],Solid3D[]) Method
The cutting plane
The resulting set of left Solid3D objects
The resulting set of right Solid3D objects

In This Topic
    SplitBy(Plane,Solid3D[],Solid3D[]) Method
    In This Topic
    Splits this solid with the specified plane.
    Syntax
    'Declaration
     
    Public Overloads Function SplitBy( _
       ByVal pln As Plane, _
       ByRef left As Solid3D(), _
       ByRef right As Solid3D() _
    ) As Boolean
    public bool SplitBy( 
       Plane pln,
       out Solid3D[] left,
       out Solid3D[] right
    )

    Parameters

    pln
    The cutting plane
    left
    The resulting set of left Solid3D objects
    right
    The resulting set of right Solid3D objects

    Return Value

    True if the operation succeeds, false otherwise.
    See Also