==Python API==

added .smooth setting to CurNurb's

so you can do....
for curNurb in Curve.Get('foo'): curNurb.smooth = True
This commit is contained in:
2007-11-10 11:05:44 +00:00
parent f9e35056af
commit f02a746f56
2 changed files with 24 additions and 2 deletions

View File

@@ -543,6 +543,8 @@ class CurNurb:
@ivar knotsV: The 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.
@type knotsV: tuple of floats
@ivar smooth: Set the smoothing for this curve (applies to cuve objects that have a bevel)
@type smooth: bool
"""
def __setitem__( n, point ):