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 Fernandez <apinzonf@gmail.com>2013-11-21 05:25:53 +0400
committerAlexander Pinzon Fernandez <apinzonf@gmail.com>2013-11-21 05:25:53 +0400
commit70174fd1c2a906b845aae18b5c18082f31843b69 (patch)
treec4eb7a4037d1f1099e3fe68c3bd6edffc2a1a67f /source/blender/makesdna/DNA_modifier_types.h
parent9c826cf9f527083f72b6e7018378bbaa565218f2 (diff)
Create of new Operator for bind Laplacian Deform Modifier
The Laplacian Deform Modifier bind the initial vertexes positions. I Modified the LaplacianDeformModifierData struct to store bind state.
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 24817fa8f43..76f80da7902 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -1300,8 +1300,14 @@ typedef struct LaplacianDeformModifierData {
int total_verts, repeat;
float *vertexco;
void *cacheSystem;
+ short bind, pad[3];
} LaplacianDeformModifierData;
+/* Smooth modifier flags */
+enum {
+ MOD_LAPLACIANDEFORM_BIND = 1,
+};
+
#endif /* __DNA_MODIFIER_TYPES_H__ */