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:
authorMichel Selten <michel@mselten.demon.nl>2003-11-22 20:28:05 +0300
committerMichel Selten <michel@mselten.demon.nl>2003-11-22 20:28:05 +0300
commit930fc9ee40cd145ab2b2efadb7dbecc6e59d8a14 (patch)
treec91d1e412d1625e9aa5a8f8432d397f36f9983d7 /intern/python/modules/Blender/__init__.py
parentabe3881a19513d42f0167332f874f47df45d905f (diff)
First action of removing the old Python API stuff from cvs. Removed the
/intern/python stuff. To remove the directories on your system, do a: cvs update -P
Diffstat (limited to 'intern/python/modules/Blender/__init__.py')
-rw-r--r--intern/python/modules/Blender/__init__.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/intern/python/modules/Blender/__init__.py b/intern/python/modules/Blender/__init__.py
deleted file mode 100644
index 6c29a6bd115..00000000000
--- a/intern/python/modules/Blender/__init__.py
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# 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
-