Home | Trees | Indices | Help |
|
---|
|
This object provides access to the control points of the curves that make up a Blender Curve ObData.
The CurNurb supports the python iterator protocol which means you can use a python for statement to access the points in a curve.
The CurNurb also supports the sequence protocol which means you can access the control points of a CurNurb using the [] operator.
Note that CurNurb is used for accesing poly, bezier and nurbs type curves.Instance Methods | |||
None |
|
||
BezTriple (Bezier Curve) or List of 5 floats [x, y, z, w, t] for Poly or Nurbs |
|
||
None |
|
||
None |
|
||
integer |
|
||
boolean |
|
||
boolean |
|
||
integer |
|
||
None |
|
||
integer |
|
||
None |
|
||
integer |
|
||
None |
|
Instance Variables | |
int |
flagU The CurNurb knot flag U. |
int |
flagV The CurNurb knot flag V. |
tuple of floats |
knotsU The knot vector in the U direction. |
tuple of floats |
knotsV The knot vector in the V direction. |
bool |
smooth Set the smoothing for this curve (applies to cuve objects that have a bevel) |
int |
type The type of the curve (Poly: 0, Bezier: 1, NURBS: 4) |
Method Details |
|
|
|
|
|
|
|
|
|
|
|
|
|
Instance Variable Details |
flagUThe CurNurb knot flag U. See setFlagU for description.
|
flagVThe CurNurb knot flag V. See setFlagU for description.
|
knotsUThe knot vector in the U direction. The tuple will be empty if the curve isn't a NURB or doesn't have knots in this direction.
|
knotsVThe knot vector in the V direction. The tuple will be empty if the curve isn't a NURB or doesn't have knots in this direction.
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0beta1 on Mon May 19 15:32:20 2008 | http://epydoc.sourceforge.net |