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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-08-24 09:24:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-24 09:24:37 +0400
commit70e99a3476aa66fa3ef1238643e9cf37e41ce0cd (patch)
tree4d47db9dc3afe2f2f14d7eeeeb686e088f59fbab /source
parent6464718083dcc18f8f66b1af97c662fee2279e81 (diff)
make quicky wrapper for cmake.
works like scons where using a subset of the targets name is enough. make_quicky.py py ...expands into make bf_python bf_python_ext blender/fast arguments like -j4 are passed on.
Diffstat (limited to 'source')
-rw-r--r--source/blender/python/generic/mathutils_vector.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/generic/mathutils_vector.c b/source/blender/python/generic/mathutils_vector.c
index 6cfb5bb207e..7b73a7501bb 100644
--- a/source/blender/python/generic/mathutils_vector.c
+++ b/source/blender/python/generic/mathutils_vector.c
@@ -1004,8 +1004,8 @@ static PyObject *Vector_mul(PyObject * v1, PyObject * v2)
/* swap so vec1 is always the vector */
/* note: it would seem from this code that the matrix multiplication below
- * is non-communicative. however the matrix object will always handle the
- * (matrix * vector) case.
+ * is communicative. however the matrix class will always handle the
+ * (matrix * vector) case so we can ignore it here.
* This is NOT so for Quaternions: TODO, check if communicative (vec * quat) is correct */
if (vec2) {
vec1= vec2;