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-06-23 05:05:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-23 06:54:12 +0300
commit5cc8e7ab53cb20a64b8c14268fe2dba2396b4247 (patch)
tree4a33d52711c57a9ed9656898489b44ff0096a222 /source/blender/blenkernel/intern/curve_deform.c
parent2c916c97ac744f5ef6ba35a6f7db68e96c4fbabc (diff)
Cleanup: reformat trailing comments that caused line wrapping
Diffstat (limited to 'source/blender/blenkernel/intern/curve_deform.c')
-rw-r--r--source/blender/blenkernel/intern/curve_deform.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/source/blender/blenkernel/intern/curve_deform.c b/source/blender/blenkernel/intern/curve_deform.c
index 10c6d2213ff..7deac4e4f19 100644
--- a/source/blender/blenkernel/intern/curve_deform.c
+++ b/source/blender/blenkernel/intern/curve_deform.c
@@ -173,12 +173,10 @@ static bool calc_curve_deform(
copy_qt_qt(quat, new_quat);
copy_v3_v3(cent, co);
- /* zero the axis which is not used,
- * the big block of text above now applies to these 3 lines */
- quat_apply_track(quat,
- axis,
- (ELEM(axis, 0, 2)) ? 1 :
- 0); /* up flag is a dummy, set so no rotation is done */
+ /* Zero the axis which is not used,
+ * the big block of text above now applies to these 3 lines.
+ * The `upflag` argument may be a dummy, set so no rotation is done. */
+ quat_apply_track(quat, axis, (ELEM(axis, 0, 2)) ? 1 : 0);
vec_apply_track(cent, axis);
cent[index] = 0.0f;