Blender Git Loki
Git Commits -> Revision 4b825fd
Revision 4b825fd by Michel Selten (master) February 26, 2003, 19:22 (GMT) |
Implemented enough functionality to actually execute Python from within Blender. * Moved api2_2x/interface.c to ./BPY_interface.c This will be the general api layer from which all variants of the Blender api. Currently only the 2.2x variant is initialised. * Used swig (www.swig.org) to create Python wrappers for a couple of dummy functions. * Started implementation of the Blender and Blender.Object modules. Michel |
Commit Details:
Full Hash: 4b825fddc7d916a5a257926d19ea89c3eaa9e0d7
SVN Revision: 510
Parent Commit: 8c5f949
Lines Changed: +1899, -86
9 Added Paths:
/source/blender/python/api2_2x/Blender.c (+41, -0) (View)
/source/blender/python/api2_2x/Blender.i (+34, -0) (View)
/source/blender/python/api2_2x/Blender_wrap.c (+680, -0) (View)
/source/blender/python/api2_2x/interface.h (+33, -0) (View)
/source/blender/python/api2_2x/modules.h (+35, -0) (View)
/source/blender/python/api2_2x/Object.c (+48, -0) (View)
/source/blender/python/api2_2x/Object.i (+39, -0) (View)
/source/blender/python/api2_2x/Object_wrap.c (+706, -0) (View)
/source/blender/python/BPY_interface.c (+270, -0) (View)
/source/blender/python/api2_2x/Blender.i (+34, -0) (View)
/source/blender/python/api2_2x/Blender_wrap.c (+680, -0) (View)
/source/blender/python/api2_2x/interface.h (+33, -0) (View)
/source/blender/python/api2_2x/modules.h (+35, -0) (View)
/source/blender/python/api2_2x/Object.c (+48, -0) (View)
/source/blender/python/api2_2x/Object.i (+39, -0) (View)
/source/blender/python/api2_2x/Object_wrap.c (+706, -0) (View)
/source/blender/python/BPY_interface.c (+270, -0) (View)