Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Surface Class / SkinU Method / SkinU(IList<ICurve>,Int32,Boolean) Method
A list of NURBS curves
The degree in the U direction
If True, it splits the curves at corner points. It is useful when the sections are Composite Curves with similar shape, and you want to line up the corners (and curve segments) in the resulting surface.

In This Topic
    SkinU(IList<ICurve>,Int32,Boolean) Method
    In This Topic
    Creates a surface from skinning. The skinning is performed in the U direction.
    Syntax
    'Declaration
     
    Public Overloads Shared Function SkinU( _
       ByVal curveList As IList(Of ICurve), _
       ByVal degU As Integer, _
       ByVal splitAtCorners As Boolean _
    ) As Surface
    public static Surface SkinU( 
       IList<ICurve> curveList,
       int degU,
       bool splitAtCorners
    )

    Parameters

    curveList
    A list of NURBS curves
    degU
    The degree in the U direction
    splitAtCorners
    If True, it splits the curves at corner points. It is useful when the sections are Composite Curves with similar shape, and you want to line up the corners (and curve segments) in the resulting surface.
    See Also