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-02-16 13:15:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-16 13:15:45 +0300
commitc03650073e60194500e13dc996168c4930970f5b (patch)
treec9cbaa7533bf1e7712aaa12594be030a23295477 /source/blender/editors/armature/armature_edit.c
parenta059f072741d671ad882c44e93f6f62bb38f27d8 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/armature/armature_edit.c')
-rw-r--r--source/blender/editors/armature/armature_edit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/armature/armature_edit.c b/source/blender/editors/armature/armature_edit.c
index a07e73d6266..912aafbd6e3 100644
--- a/source/blender/editors/armature/armature_edit.c
+++ b/source/blender/editors/armature/armature_edit.c
@@ -126,12 +126,12 @@ void ED_armature_origin_set(
bArmature *arm = ob->data;
float cent[3];
- /* Put the armature into editmode */
+ /* Put the armature into edit-mode. */
if (is_editmode == false) {
ED_armature_to_edit(arm);
}
- /* Find the centerpoint */
+ /* Find the center-point. */
if (centermode == 2) {
copy_v3_v3(cent, cursor);
invert_m4_m4(ob->imat, ob->obmat);
@@ -173,7 +173,7 @@ void ED_armature_origin_set(
ED_armature_edit_free(arm);
}
- /* Adjust object location for new centerpoint */
+ /* Adjust object location for new center-point. */
if (centermode && (is_editmode == false)) {
mul_mat3_m4_v3(ob->obmat, cent); /* omit translation part */
add_v3_v3(ob->loc, cent);