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/armature.c
parent613c568df28e6c460c62ee90a20e48036a686b95 (diff)
Cleanup: spelling (use 'gimbal' instead of 'gimble')
Diffstat (limited to 'source/blender/blenkernel/intern/armature.c')
-rw-r--r--source/blender/blenkernel/intern/armature.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c
index ced211b1926..a91183b95bd 100644
--- a/source/blender/blenkernel/intern/armature.c
+++ b/source/blender/blenkernel/intern/armature.c
@@ -1926,7 +1926,7 @@ void BKE_pchan_rot_to_mat3(const bPoseChannel *pchan, float r_mat[3][3])
{
/* rotations may either be quats, eulers (with various rotation orders), or axis-angle */
if (pchan->rotmode > 0) {
- /* euler rotations (will cause gimble lock,
+ /* Euler rotations (will cause gimbal lock,
* but this can be alleviated a bit with rotation orders) */
eulO_to_mat3(r_mat, pchan->eul, pchan->rotmode);
}