Click or drag to resize

BrepCreateFromSweep Method (Curve, Curve, Boolean, Double)

Sweep1 function that fits a surface through a profile curve that define the surface cross-sections and one curve that defines a surface edge.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public static Brep[] CreateFromSweep(
	Curve rail,
	Curve shape,
	bool closed,
	double tolerance
)

Parameters

rail
Type: Rhino.GeometryCurve
Rail to sweep shapes along.
shape
Type: Rhino.GeometryCurve
Shape curve.
closed
Type: SystemBoolean
Only matters if shape is closed.
tolerance
Type: SystemDouble
Tolerance for fitting surface and rails.

Return Value

Type: Brep
Array of Brep sweep results.
Remarks
Rhino's Sweep1 command uses this when the "refit rail" option is enabled (true).
See Also