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>2020-04-08 03:33:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-04-08 03:33:56 +0300
commit1ec2f8d1f22634fc171a88d739c96ee8406b6c29 (patch)
treec367dae522c4d25008b6df552db502d863830202 /source/blender/editors/armature
parent161c13e12be0c968808612010268e81c88327f65 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/armature')
-rw-r--r--source/blender/editors/armature/armature_add.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/source/blender/editors/armature/armature_add.c b/source/blender/editors/armature/armature_add.c
index 3fce2376b40..dfb274fdefe 100644
--- a/source/blender/editors/armature/armature_add.c
+++ b/source/blender/editors/armature/armature_add.c
@@ -732,9 +732,8 @@ static void updateDuplicateTransformConstraintSettings(Object *ob,
mul_m4_v3(target_mat, trans->to_min_rot);
mul_m4_v3(target_mat, trans->to_max_rot);
- /* TODO This does not support euler order, but doing so will make this way more complex.
- * For now we have decided to not support all cornercases and advanced setups. (sebpa)
- */
+ /* TODO(sebpa): This does not support euler order, but doing so will make this way more complex.
+ * For now we have decided to not support all corner cases and advanced setups. */
/* Helper variables to denote the axis in trans->map */
const char X = 0;
@@ -1181,9 +1180,9 @@ static int armature_symmetrize_exec(bContext *C, wmOperator *op)
ebone_iter = ebone_iter->next) {
if (EBONE_VISIBLE(arm, ebone_iter) && (ebone_iter->flag & BONE_SELECTED)) {
if (ebone_iter->temp.ebone != NULL) {
- /* will be set if the mirror bone already exists (no need to make a new one)
- * but we do need to make sure that the pchan settings (constraints etc) is syncronized
- */
+ /* This will be set if the mirror bone already exists (no need to make a new one)
+ * but we do need to make sure that the 'pchan' settings (constraints etc)
+ * is synchronized. */
bPoseChannel *pchan;
/* Make sure we clean up the old data before overwriting it */
pchan = BKE_pose_channel_verify(obedit->pose, ebone_iter->temp.ebone->name);