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>2018-09-02 09:45:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-09-02 09:49:45 +0300
commit6abb37babc6aad9d7f262b1516b7a0e2972cb8e1 (patch)
tree1e2593349ca7903159cd5dab891e8af38b4b1676 /source/blender/gpencil_modifiers/intern/MOD_gpencilarmature.c
parent83199b643047f8576f27f2ffcffe623c0bfc5656 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/gpencil_modifiers/intern/MOD_gpencilarmature.c')
-rw-r--r--source/blender/gpencil_modifiers/intern/MOD_gpencilarmature.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/source/blender/gpencil_modifiers/intern/MOD_gpencilarmature.c b/source/blender/gpencil_modifiers/intern/MOD_gpencilarmature.c
index 4ae48e73d0f..5bab95cf6f6 100644
--- a/source/blender/gpencil_modifiers/intern/MOD_gpencilarmature.c
+++ b/source/blender/gpencil_modifiers/intern/MOD_gpencilarmature.c
@@ -92,12 +92,13 @@ static void gpencil_deform_verts(
}
/* deform verts */
- armature_deform_verts(mmd->object, target, NULL,
- (float(*)[3])all_vert_coords,
- NULL, gps->totpoints,
- mmd->deformflag,
- (float(*)[3])mmd->prevCos,
- mmd->vgname, gps);
+ armature_deform_verts(
+ mmd->object, target, NULL,
+ (float(*)[3])all_vert_coords,
+ NULL, gps->totpoints,
+ mmd->deformflag,
+ (float(*)[3])mmd->prevCos,
+ mmd->vgname, gps);
/* Apply deformed coordinates */
pt = gps->points;