Surface.Loft (IList<ICurve>, Int32, Boolean, Boolean) Method

Creates a surface from skinning.
Public Shared Function Loft( _ 
ByVal curveList As IList(Of ICurve), _ 
ByVal degree As Integer, _ 
ByVal splitAtCorners As Boolean, _ 
Optional ByVal speedChange As Boolean = false _ 
) As Surface()
This language is not supported or no code example is available.
public static Surface[] Loft( 
IList<ICurve> curveList
int degree
bool splitAtCorners
bool speedChange = false 
)
This language is not supported or no code example is available.

Parameters

curveList
IList<ICurve>

The skinning curves

degree
int

The desired surface degree

splitAtCorners
bool

If True, it splits the curves at corner points. It is useful when the curves have similar shapes, and you want to line up the corners in the resulting surface.

speedChange
bool

Works only when splitAtCorners is true. If true, when the tangents have the same direction but different lengths, the curve will be split. If false, it won't be split.

Return Value

Surface[]

The resulting surface array if the operation succeeds, null/Nothing otherwise.

.NET Framework

Supported in: 4.5, 4.6, 4.7

In this article

Definition