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>2021-01-04 03:29:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-04 09:38:07 +0300
commitc61c7d99264842909bd2aed002ba4eae4fb41621 (patch)
treeff02d7836a351a2d7abb6ad8b9071cd3c068baa7 /source/blender/blenkernel/intern/object.c
parent613c568df28e6c460c62ee90a20e48036a686b95 (diff)
Cleanup: spelling (use 'gimbal' instead of 'gimble')
Diffstat (limited to 'source/blender/blenkernel/intern/object.c')
-rw-r--r--source/blender/blenkernel/intern/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/object.c b/source/blender/blenkernel/intern/object.c
index 163e7d51235..ea0ce6a0f33 100644
--- a/source/blender/blenkernel/intern/object.c
+++ b/source/blender/blenkernel/intern/object.c
@@ -2873,7 +2873,7 @@ void BKE_object_rot_to_mat3(const Object *ob, float mat[3][3], bool use_drot)
/* rotations may either be quats, eulers (with various rotation orders), or axis-angle */
if (ob->rotmode > 0) {
/* Euler rotations
- * (will cause gimble lock, but this can be alleviated a bit with rotation orders). */
+ * (will cause gimbal lock, but this can be alleviated a bit with rotation orders). */
eulO_to_mat3(rmat, ob->rot, ob->rotmode);
eulO_to_mat3(dmat, ob->drot, ob->rotmode);
}