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:
authorAlexander Gavrilov <angavrilov@gmail.com>2016-02-08 16:18:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-02-08 16:19:28 +0300
commitc6afa36f477573b0c074e6667904ff7d54143f19 (patch)
tree09a43111ad8383ac05daa9fb8292b7655d2b020e /source/blender/blenkernel/BKE_deform.h
parent172143d4f8f570068ad7de6f86a2c184b50cf094 (diff)
Fix group flipping when syncing mirror weights
Corrects mirror syncing for invert, levels & smooth. Note that the code changed to process mirroring even if both verts are selected, since group flipping can mean that is still meaningful.
Diffstat (limited to 'source/blender/blenkernel/BKE_deform.h')
-rw-r--r--source/blender/blenkernel/BKE_deform.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_deform.h b/source/blender/blenkernel/BKE_deform.h
index 284080aa50d..8756f73df72 100644
--- a/source/blender/blenkernel/BKE_deform.h
+++ b/source/blender/blenkernel/BKE_deform.h
@@ -76,7 +76,13 @@ void defvert_copy(struct MDeformVert *dvert_dst, const struct MDeformVert *dvert
void defvert_copy_subset(
struct MDeformVert *dvert_dst, const struct MDeformVert *dvert_src,
const bool *vgroup_subset, const int vgroup_tot);
-void defvert_copy_index(struct MDeformVert *dvert_dst, const struct MDeformVert *dvert_src, const int defgroup);
+void defvert_mirror_subset(
+ struct MDeformVert *dvert_dst, const struct MDeformVert *dvert_src,
+ const bool *vgroup_subset, const int vgroup_tot,
+ const int *flip_map, const int flip_map_len);
+void defvert_copy_index(
+ struct MDeformVert *dvert_dst, const int defgroup_dst,
+ const struct MDeformVert *dvert_src, const int defgroup_src);
void defvert_sync(struct MDeformVert *dvert_dst, const struct MDeformVert *dvert_src, const bool use_verify);
void defvert_sync_mapped(
struct MDeformVert *dvert_dst, const struct MDeformVert *dvert_src,