Files
blender/intern/python/modules/Blender/__init__.py
Michel Selten c95d631b83 Removed references to modules that do not exist. The python interface is
broken, but it should give 0 errors when building.

Michel
2003-01-06 17:27:43 +00:00

24 lines
575 B
Python

#
# The Blender main module wrapper
# (c) 06/2001, NaN // strubi@blender.nl
__all__ = ["Object", "Image", "NMesh", "Window", "Mesh", "sys",
"Lamp", "Scene", "Draw", "Camera", "Material", "Types", "Ipo",
"BGL"]
#import _Blender
Get = _Blender.Get
Redraw = _Blender.Redraw
link = _Blender.link
bylink = _Blender.bylink
import Object, Image, Mesh, Window, sys, Lamp, Scene, Draw, Camera
import Material, NMesh, BGL, Types, Ipo, Text
deg = lambda x: 0.0174532925199 * x # conversion from degrees to radians
import __builtin__
__builtin__.deg = deg