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:
authorJoilnen Leite <joilnen.leite@gmail.com>2005-03-10 05:49:27 +0300
committerJoilnen Leite <joilnen.leite@gmail.com>2005-03-10 05:49:27 +0300
commit53b578d0906727314ca03d69fbcc3a787d556660 (patch)
treebf908c0f8f794522890cd42e336ec55b7daaa1b1 /source/blender/python/api2_2x/doc/Text3d.py
parentd9e320b270102ed58950ccb91616a2d17678212e (diff)
Text3d submodule document
.
Diffstat (limited to 'source/blender/python/api2_2x/doc/Text3d.py')
-rw-r--r--source/blender/python/api2_2x/doc/Text3d.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/doc/Text3d.py b/source/blender/python/api2_2x/doc/Text3d.py
index 287711c421c..20973272553 100644
--- a/source/blender/python/api2_2x/doc/Text3d.py
+++ b/source/blender/python/api2_2x/doc/Text3d.py
@@ -15,7 +15,7 @@ Example::
txt = Text3d.New("MyText") # create a new Text3d object
cur = Scene.getCurrent() # get current scene
ob = Object.New('Text') # make curve object
- ob.link(c) # link curve data with this object
+ ob.link(txt) # link curve data with this object
cur.link(ob) # link object into scene
ob.makeDisplayList()
Window.RedrawAll()