Blender Git Commit Log
Git Commits -> Revision ec669df
Revision ec669df by Michel Selten (master) April 8, 2003, 19:54 (GMT) |
The following updates have been contributed by Willian P. Germano: * Implemented BPY_end_python function. * Implemented error handling. This results in rerunning a script after an error has occurred. No need to restart blender anymore. * Camera module supports dir() * variable assignment now calls the Python equivalent function - this has type checking and should be safer now. * Implemented the Lamp module. Used the Camera module as a template. * Implemented the Image module. * Added EXPP_ClampFloat and EXPP_intError functions to gen_utils.[ch] * Implemented 'constant' object. |
Commit Details:
Full Hash: ec669df6eec3188938d9d84dd4666eac8b5aa1d1
SVN Revision: 583
Parent Commit: 0850182
Lines Changed: +3586, -210
7 Added Paths:
/source/blender/python/api2_2x/Camera.h (+228, -0) (View)
/source/blender/python/api2_2x/constant.c (+212, -0) (View)
/source/blender/python/api2_2x/constant.h (+61, -0) (View)
/source/blender/python/api2_2x/Image.c (+425, -0) (View)
/source/blender/python/api2_2x/Image.h (+167, -0) (View)
/source/blender/python/api2_2x/Lamp.c (+1281, -0) (View)
/source/blender/python/api2_2x/Lamp.h (+312, -0) (View)
/source/blender/python/api2_2x/constant.c (+212, -0) (View)
/source/blender/python/api2_2x/constant.h (+61, -0) (View)
/source/blender/python/api2_2x/Image.c (+425, -0) (View)
/source/blender/python/api2_2x/Image.h (+167, -0) (View)
/source/blender/python/api2_2x/Lamp.c (+1281, -0) (View)
/source/blender/python/api2_2x/Lamp.h (+312, -0) (View)
6 Modified Paths:
/source/blender/python/api2_2x/Blender.c (+3, -1) (Diff)
/source/blender/python/api2_2x/Camera.c (+846, -204) (Diff)
/source/blender/python/api2_2x/gen_utils.c (+18, -1) (Diff)
/source/blender/python/api2_2x/gen_utils.h (+2, -0) (Diff)
/source/blender/python/api2_2x/modules.h (+8, -1) (Diff)
/source/blender/python/BPY_interface.c (+23, -3) (Diff)
/source/blender/python/api2_2x/Camera.c (+846, -204) (Diff)
/source/blender/python/api2_2x/gen_utils.c (+18, -1) (Diff)
/source/blender/python/api2_2x/gen_utils.h (+2, -0) (Diff)
/source/blender/python/api2_2x/modules.h (+8, -1) (Diff)
/source/blender/python/BPY_interface.c (+23, -3) (Diff)