A curve is a non-uniform rational b-spline. It may be instanced as an object in the MODEL Section. A curve may be specified as a literal or as a variable. If specified as a variable, it must have a name. The following components must be specified between the parentheses:
All components are specified using a keyword=value form, and are separated by commas. The components may be specified in any order.
curve curve#2 (
degree = 3,
knots = ( 0.0 , 0.0 , 0.0 , 1.0 , 1.0 ,
1.0 ),
cvs = (
cv( ( -0.50656, -0.43168, 0.0 ), 1.0 ),
cv( ( -0.50998, -0.5717 , 0.0 ), 1.0 ),
cv( ( -0.44153, -0.62975, 0.0 ), 1.0 ),
cv( ( -0.29094, -0.62975, 0.0 ), 1.0 ) )
);
To describe the degree of the NURBS curve. To define a syntactically correct curve, there must be at least degree + 1 control vertices.
Each entry must evaluate to a real number, which must be greater than or equal to the value of its predecessor.