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, tolerance As Tolerance )
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 |
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 |
Comments? |