==Python API==

made it possible to remove curves from python with "del curve[i]"
mesh_edges2curves.py - remove unused function.
This commit is contained in:
2007-11-22 22:07:41 +00:00
parent a8aaec6f21
commit b21df550d3
3 changed files with 39 additions and 11 deletions

View File

@@ -10,7 +10,7 @@ This module provides access to B{Curve Data} objects in Blender.
A Blender Curve Data consists of multiple L{CurNurb}(s). Try converting a Text object to a Curve to see an example of this. Each curve is of
type Bezier or Nurb. The underlying L{CurNurb}(s) can be accessed with
the [] operator. Operator [] returns an object of type L{CurNurb}.
the [] operator. Operator [] returns an object of type L{CurNurb}. Removing a L{CurNurb} can be done this way too. del curve[0] removes the first curve.
Note that L{CurNurb} can be used to acces a curve of any type (Poly, Bezier or Nurb)