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>2011-01-21 05:32:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-21 05:32:58 +0300
commitd7c6ddd7e9bd055e93e076c530c6d578ba23f036 (patch)
tree66a4079ab4f9e12d15f2d040a24bc24599d8d25a /source/blender/python
parent022511d5ad87abfb51a3b169d517cd86b829e7ca (diff)
correct spelling
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/generic/mathutils_quat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/generic/mathutils_quat.c b/source/blender/python/generic/mathutils_quat.c
index 1d0a6416d25..7507318dfcb 100644
--- a/source/blender/python/generic/mathutils_quat.c
+++ b/source/blender/python/generic/mathutils_quat.c
@@ -901,7 +901,7 @@ static PyObject *Quaternion_new(PyTypeObject *type, PyObject *args, PyObject *kw
case 2:
if (mathutils_array_parse(quat, 3, 3, seq, "mathutils.Quaternion()") == -1)
return NULL;
- angle= fmod(angle + M_PI*2, M_PI*4) - M_PI*2; /* clamp because of precission issues */
+ angle= fmod(angle + M_PI*2, M_PI*4) - M_PI*2; /* clamp because of precision issues */
axis_angle_to_quat(quat, quat, angle);
break;
/* PyArg_ParseTuple assures no more then 2 */