BrepCreateFromLoftRefit Method |
Constructs one or more Breps by lofting through a set of curves. Input for the loft is simplified by
refitting to a specified tolerance.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public static Brep[] CreateFromLoftRefit(
IEnumerable<Curve> curves,
Point3d start,
Point3d end,
LoftType loftType,
bool closed,
double refitTolerance
)
Public Shared Function CreateFromLoftRefit (
curves As IEnumerable(Of Curve),
start As Point3d,
end As Point3d,
loftType As LoftType,
closed As Boolean,
refitTolerance As Double
) As Brep()
Parameters
- curves
- Type: System.Collections.GenericIEnumerableCurve
The curves to loft through. This function will not perform any curve sorting. You must pass in
curves in the order you want them lofted. This function will not adjust the directions of open
curves. Use Curve.DoDirectionsMatch and Curve.Reverse to adjust the directions of open curves.
This function will not adjust the seams of closed curves. Use Curve.ChangeClosedCurveSeam to
adjust the seam of closed curves.
- start
- Type: Rhino.GeometryPoint3d
Optional starting point of loft. Use Point3d.Unset if you do not want to include a start point.
- end
- Type: Rhino.GeometryPoint3d
Optional ending point of lost. Use Point3d.Unset if you do not want to include an end point.
- loftType
- Type: Rhino.GeometryLoftType
type of loft to perform. - closed
- Type: SystemBoolean
true if the last curve in this loft should be connected back to the first one. - refitTolerance
- Type: SystemDouble
A distance to use in refitting, or 0 if you want to turn this parameter off.
Return Value
Type:
Brep
Constructs a closed surface, continuing the surface past the last curve around to the
first curve. Available when you have selected three shape curves.
See Also