Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Mesh Class / MergeWith Method / MergeWith(Mesh,Boolean,Boolean) Method
The other Mesh object
If true, the two meshes are welded immediately.
If true, recomputes the edges else it preserves the edges of both meshes

In This Topic
    MergeWith(Mesh,Boolean,Boolean) Method
    In This Topic
    Merges two compatible Mesh objects.
    Syntax
    'Declaration
     
    Public Overloads Sub MergeWith( _
       ByVal mesh As Mesh, _
       Optional ByVal weldNow As Boolean, _
       Optional ByVal recomputeEdges As Boolean _
    ) 
    public void MergeWith( 
       Mesh mesh,
       bool weldNow,
       bool recomputeEdges
    )

    Parameters

    mesh
    The other Mesh object
    weldNow
    If true, the two meshes are welded immediately.
    recomputeEdges
    If true, recomputes the edges else it preserves the edges of both meshes
    Remarks
    If you need to merge several meshes it's far more efficient to weld them only at the last MergeWith call.
    See Also