Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Surface Class / SkinV Method / SkinV(IList<ICurve>,Int32,Boolean) Method
A list of curves
The degree in the V 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
    SkinV(IList<ICurve>,Int32,Boolean) Method
    In This Topic
    Creates a surface from skinning. The skinning is performed in the V direction.
    Syntax
    'Declaration
     
    Public Overloads Shared Function SkinV( _
       ByVal curveList As IList(Of ICurve), _
       ByVal degV As Integer, _
       ByVal splitAtCorners As Boolean _
    ) As Surface
    public static Surface SkinV( 
       IList<ICurve> curveList,
       int degV,
       bool splitAtCorners
    )

    Parameters

    curveList
    A list of curves
    degV
    The degree in the V 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