BrepCreateDevelopableLoft Method (Curve, Curve, Boolean, Boolean, Int32) |
Creates a single developable surface between two curves.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.10
Syntax public static Brep[] CreateDevelopableLoft(
Curve crv0,
Curve crv1,
bool reverse0,
bool reverse1,
int density
)
Public Shared Function CreateDevelopableLoft (
crv0 As Curve,
crv1 As Curve,
reverse0 As Boolean,
reverse1 As Boolean,
density As Integer
) As Brep()
Parameters
- crv0
- Type: Rhino.GeometryCurve
The first rail curve. - crv1
- Type: Rhino.GeometryCurve
The second rail curve. - reverse0
- Type: SystemBoolean
Reverse the first rail curve. - reverse1
- Type: SystemBoolean
Reverse the second rail curve - density
- Type: SystemInt32
The number of rulings across the surface.
Return Value
Type:
BrepThe output Breps if successful, otherwise an empty array.
See Also