Constructs a NURB surface defined by input data.
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 )
public NurbSurface( int degreeU, int degreeV, int propsInU, int propertiesInV, int numberControlPointsInU, int numberControlPointsInV, Point3dCollection controlPoints, DoubleCollection weights, KnotCollection knotsInU, KnotCollection knotsInV );
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 |
Comments? |