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:
authorCampbell Barton <ideasman42@gmail.com>2006-09-16 13:33:09 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-09-16 13:33:09 +0400
commite6960f3881fc3c1f0672b8b115af8e0e2fc307eb (patch)
tree9384fed6bceb5a8cb476badbbae8e541a6cb0085 /source/blender/python/api2_2x/Image.c
parent2b7f09b8ea0747cecbd9b3c0fff542a5eeedeea3 (diff)
Python Metaballs api refactor, based on Mesh and Group modules.
* removed get/set in favor of setsetattrs * added an element iterator to the metaball data type. * now accepts vectors and quat for location dimensions and rotation. and other small changes. Docs updated shortly at. http://members.iinet.net.au/~cpbarton/ideasman/BPY_API/Metaball-module.html other changes typo in image.c metaballs constants in buttons_editing
Diffstat (limited to 'source/blender/python/api2_2x/Image.c')
-rw-r--r--source/blender/python/api2_2x/Image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Image.c b/source/blender/python/api2_2x/Image.c
index 33f3275f7b8..55ffcfa0eb6 100644
--- a/source/blender/python/api2_2x/Image.c
+++ b/source/blender/python/api2_2x/Image.c
@@ -379,7 +379,7 @@ static PyObject *M_Image_Load( PyObject * self, PyObject * args )
return ( EXPP_ReturnPyObjError( PyExc_IOError,
"couldn't load image" ) );
- /*reload the image buffers/*
+ /*reload the image buffers*/
free_image_buffers(img_ptr);
img_ptr->ibuf = IMB_loadiffname(img_ptr->name , 0);