Click or drag to resize

BrepCreateFromSweepSegmented Method (Curve, IEnumerableCurve, Boolean, Double)

Sweep1 function that fits a surface through a series of profile curves that define the surface cross-sections and one curve that defines a surface edge. The Segmented version breaks the rail at curvature kinks and sweeps each piece separately, then put the results together into a Brep.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 6.14
Syntax
public static Brep[] CreateFromSweepSegmented(
	Curve rail,
	IEnumerable<Curve> shapes,
	bool closed,
	double tolerance
)

Parameters

rail
Type: Rhino.GeometryCurve
Rail to sweep shapes along.
shapes
Type: System.Collections.GenericIEnumerableCurve
Shape curves.
closed
Type: SystemBoolean
Only matters if shapes are closed.
tolerance
Type: SystemDouble
Tolerance for fitting surface and rails.

Return Value

Type: Brep
Array of Brep sweep results.
See Also