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 Pinzon <apinzonf@gmail.com>2013-08-15 03:29:55 +0400
committerAlexander Pinzon <apinzonf@gmail.com>2013-08-15 03:29:55 +0400
commit24469d08df688b271e71422df592f350ead43678 (patch)
tree03952ff0db0febfc6ecbbdead4fb64177e7d2818 /source/blender/makesdna/DNA_modifier_types.h
parent54741c2311f0c01885f8b4a818b11cea38f7085d (diff)
Now the deformation method does not require static vertices, only with the handles can solve the system.
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 5e65369b32d..0b07605d22d 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -1224,8 +1224,7 @@ enum {
typedef struct LaplacianDeformModifierData {
ModifierData modifier;
- char defgrp_name_s[64]; /* MAX_VGROUP_NAME */
- char defgrp_name_h[64]; /* MAX_VGROUP_NAME */
+ char defgrp_name[64]; /* MAX_VGROUP_NAME */
void * custom_data;
} LaplacianDeformModifierData;