CADability dotNET
Takes all faces and shells from the given list and tries to sew them together. When two or more faces have common edges they are connected to shells. Shells with no free edges are converted to solids.

Namespace: CADability.GeoObject
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public static GeoObjectList SewFacesAndShells(
	GeoObjectList select,
	double precision
)
Visual Basic
Public Shared Function SewFacesAndShells ( _
	select As GeoObjectList, _
	precision As Double _
) As GeoObjectList
Visual C++
public:
static GeoObjectList^ SewFacesAndShells(
	GeoObjectList^ select, 
	double precision
)

Parameters

select
Type: CADability.GeoObject..::..GeoObjectList
faces and shells to sew
precision
Type: System..::..Double
maximum gap that is allowed between the edges

Return Value

resulting objects

See Also