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. Both pathes must be closed. A solid is returned bound by the faces of the two pathes and the ruled surfaces. 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 Solid MakeRuledSolid(
	Path firstPath,
	Path secondPath,
	Project project
)
Visual Basic
Public Shared Function MakeRuledSolid ( _
	firstPath As Path, _
	secondPath As Path, _
	project As Project _
) As Solid
Visual C++
public:
static Solid^ MakeRuledSolid(
	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 solid or null

See Also