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:
Diffstat (limited to 'source/blender/modifiers/intern/MOD_collision.c')
-rw-r--r--source/blender/modifiers/intern/MOD_collision.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/modifiers/intern/MOD_collision.c b/source/blender/modifiers/intern/MOD_collision.c
index d94e9a988c6..521a93b199f 100644
--- a/source/blender/modifiers/intern/MOD_collision.c
+++ b/source/blender/modifiers/intern/MOD_collision.c
@@ -170,10 +170,10 @@ static void deformVerts(ModifierData *md,
mul_m4_v3(ob->obmat, collmd->x[i].co);
}
- collmd->xnew = MEM_dupallocN(collmd->x); // frame end position
- collmd->current_x = MEM_dupallocN(collmd->x); // inter-frame
- collmd->current_xnew = MEM_dupallocN(collmd->x); // inter-frame
- collmd->current_v = MEM_dupallocN(collmd->x); // inter-frame
+ collmd->xnew = MEM_dupallocN(collmd->x); /* Frame end position. */
+ collmd->current_x = MEM_dupallocN(collmd->x); /* Inter-frame. */
+ collmd->current_xnew = MEM_dupallocN(collmd->x); /* Inter-frame. */
+ collmd->current_v = MEM_dupallocN(collmd->x); /* Inter-frame. */
collmd->mvert_num = mvert_num;