Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2007-11-10 14:05:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-11-10 14:05:44 +0300
commitf02a746f56fb351ea92bbf82b8efbd3c1d6faa3e (patch)
treef0f8d557de4abab0cdf52eaa67df42355a94b429 /source/blender/python/api2_2x/doc
parentf9e35056af9940026a670fad351a3f7e02448a04 (diff)
==Python API==
added .smooth setting to CurNurb's so you can do.... for curNurb in Curve.Get('foo'): curNurb.smooth = True
Diffstat (limited to 'source/blender/python/api2_2x/doc')
-rw-r--r--source/blender/python/api2_2x/doc/Curve.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/doc/Curve.py b/source/blender/python/api2_2x/doc/Curve.py
index d8ab28524fb..5e6df688953 100644
--- a/source/blender/python/api2_2x/doc/Curve.py
+++ b/source/blender/python/api2_2x/doc/Curve.py
@@ -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 ):