CADability dotNET
Connects the two wires with a ruled surface. The two wires must have the same number of segments. Each segment of the first path is connected with the segment with the same index of the second path. The pathes may be open or closed. the ruled surfaces will be returned as a shell. If there is an error null will be returned

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

Syntax

C#
public static IGeoObject MakeRuledShell(
	Path firstPath,
	Path secondPath,
	Project project
)
Visual Basic
Public Shared Function MakeRuledShell ( _
	firstPath As Path, _
	secondPath As Path, _
	project As Project _
) As IGeoObject
Visual C++
public:
static IGeoObject^ MakeRuledShell(
	Path^ firstPath, 
	Path^ secondPath, 
	Project^ project
)

Parameters

firstPath
Type: CADability.GeoObject..::..Path
the first path
secondPath
Type: CADability.GeoObject..::..Path
teh second path
project
Type: CADability..::..Project
the project to find attributes

Return Value

the generated shell or null

See Also