AcDbNurbSurface::AcDbNurbSurface (int, int, bool, int, int, AcGePoint3dArray&, AcGeDoubleArray&, AcGeKnotVector&, AcGeKnotVector&) |
This constructor creates a NURBS surface using the parameters passed in.If the surface is to be rational, then this argument should be true. The constructor will examine the surface and determine if it is closed or periodic. The control points are contained in an array of AcGePoint3d. The v index varies first. That is, a column of v control points for the first u value is followed by the row of v control points for the next u value, e.g., [0,0], [0,1], ...[0,n], ..., [m,0], [m,1], ...[m,n]. The weights array is required when rational == true. And it must... more |