Autodesk.AutoCAD.Geometry Namespace > NurbSurface Class > NurbSurface Constructor > NurbSurface(int, int, int, int, int, int, Point3dCollection, DoubleCollection, KnotCollection, KnotCollection) Constructor
NurbSurface.NurbSurface(int, int, int, int, int, int, Point3dCollection, DoubleCollection, KnotCollection, KnotCollection) Constructor
Description

 

Constructs a NURB surface defined by input data.

Visual Basic
Public Sub New(
    degreeU As Integer, 
    degreeV As Integer, 
    propsInU As Integer, 
    propertiesInV As Integer, 
    numberControlPointsInU As Integer, 
    numberControlPointsInV As Integer, 
    controlPoints As Point3dCollection, 
    weights As DoubleCollection, 
    knotsInU As KnotCollection, 
    knotsInV As KnotCollection
)
C#
public NurbSurface(
    int degreeU, 
    int degreeV, 
    int propsInU, 
    int propertiesInV, 
    int numberControlPointsInU, 
    int numberControlPointsInV, 
    Point3dCollection controlPoints, 
    DoubleCollection weights, 
    KnotCollection knotsInU, 
    KnotCollection knotsInV
);
Parameters
Parameters 
Description 
int degreeU 
Input U degree 
int degreeV 
Input V degree 
int propsInU 
Input U properties (uses NurbSurfaceProperties values) 
int propertiesInV 
Input V properties (uses NurbSurfaceProperties values) 
int numberControlPointsInU 
Input number of control points in U direction 
int numberControlPointsInV 
Input number of control points in V direction 
Point3dCollection controlPoints 
Input collection of control points 
DoubleCollection weights 
Input collection of weights 
KnotCollection knotsInU 
Input U collection of knots 
KnotCollection knotsInV 
Input V collection of knots 
Links
   Comments?