Autodesk.AutoCAD.Geometry Namespace > NurbSurface Class > NurbSurface Constructor > NurbSurface(int, int, int, int, int, int, Point3dCollection, DoubleCollection, KnotCollection, KnotCollection, Tolerance) Constructor
NurbSurface.NurbSurface(int, int, int, int, int, int, Point3dCollection, DoubleCollection, KnotCollection, KnotCollection, Tolerance) 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, 
    tolerance As Tolerance
)
C#
public NurbSurface(
    int degreeU, 
    int degreeV, 
    int propsInU, 
    int propertiesInV, 
    int numberControlPointsInU, 
    int numberControlPointsInV, 
    Point3dCollection controlPoints, 
    DoubleCollection weights, 
    KnotCollection knotsInU, 
    KnotCollection knotsInV, 
    Tolerance tolerance
);
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 array of control points 
DoubleCollection weights 
Input array of weights 
KnotCollection knotsInU 
Input U array of knots 
KnotCollection knotsInV 
Input V array of knots 
Tolerance tolerance 
Input tolerance value 
Links
   Comments?