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>2010-11-22 13:39:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-11-22 13:39:28 +0300
commitf781780cc043bc26f70c89d1292215f0491d30dc (patch)
tree38925182938b35a3821c6e906693b1aeff8e138f /source/blender/python/generic/mathutils_vector.c
parent77dff3f9863638a5a95a1ee7e6fc2b0e9b3b8357 (diff)
- blend_m3_m3m3 and blend_m4_m4m4 now support matrices with negative scales.
- python/mathutils api matrix.lerp(other, factor) - new function mat3_to_rot_size(), like mat4_to_loc_rot_size but with no location.
Diffstat (limited to 'source/blender/python/generic/mathutils_vector.c')
-rw-r--r--source/blender/python/generic/mathutils_vector.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/generic/mathutils_vector.c b/source/blender/python/generic/mathutils_vector.c
index e4027d7a80e..4dd2e250804 100644
--- a/source/blender/python/generic/mathutils_vector.c
+++ b/source/blender/python/generic/mathutils_vector.c
@@ -670,7 +670,7 @@ static PyObject *Vector_Lerp(VectorObject *self, PyObject *args)
return NULL;
if(self->size != vec2->size) {
- PyErr_SetString(PyExc_AttributeError, "vector.lerp(): expects (2) vector objects of the same size");
+ PyErr_SetString(PyExc_AttributeError, "vector.lerp(): expects both vector objects to have the same size");
return NULL;
}