Exppython docs:

- Updates and fixes to the documentation files, only, no code involved.
This commit is contained in:
Willian Padovani Germano
2003-07-22 00:27:03 +00:00
parent 9a5cf3cb66
commit de60889865
12 changed files with 170 additions and 139 deletions

View File

@@ -5,15 +5,14 @@ The Blender.World submodule
INTRODUCTION
The module world allows you to access all the data of an world.
Example::
The module world allows you to access all the data of a Blender World.
Example::
import Blender
w = Blender.Get('World') #assume there exists a world named "world"
print w.GetName()
w.hor = [1,1,.2]
print w.Gethor()
w = Blender.Get('World') #assume there exists a world named "world"
print w.getName()
w.hor = [1,1,.2]
print w.getHor()
"""
def New (name):