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:
authorJoseph Gilbert <ascotan@gmail.com>2003-11-13 07:00:59 +0300
committerJoseph Gilbert <ascotan@gmail.com>2003-11-13 07:00:59 +0300
commita4aad039aa69784c61ff1eb8da8505c3b4e89172 (patch)
tree800a963b46d8a437cab93522d98848d96f727872 /source/blender/python/api2_2x/Types.c
parent0e9dd3060e04459d4ecb5ccbce138de7532a3425 (diff)
The new Lattice module for python
- enabled all the Lattice methods in Object.c - added Lattice types to Types.c - add Lattice initialization to Blender.c - updated makefile for new lattice file - added Lattice.c/Lattice.h
Diffstat (limited to 'source/blender/python/api2_2x/Types.c')
-rw-r--r--source/blender/python/api2_2x/Types.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Types.c b/source/blender/python/api2_2x/Types.c
index 5fc56c3248f..843a5ca79e4 100644
--- a/source/blender/python/api2_2x/Types.c
+++ b/source/blender/python/api2_2x/Types.c
@@ -85,6 +85,8 @@ PyObject *Types_Init (void)
PyDict_SetItemString(dict, "ButtonType", (PyObject *)&Button_Type);
+ PyDict_SetItemString(dict, "LatticeType", (PyObject *)&Lattice_Type);
+
/* External helper Types available to the main ones above */
PyDict_SetItemString(dict, "vectorType", (PyObject *)&vector_Type);