From 70174fd1c2a906b845aae18b5c18082f31843b69 Mon Sep 17 00:00:00 2001 From: Alexander Pinzon Fernandez Date: Wed, 20 Nov 2013 20:25:53 -0500 Subject: 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. --- source/blender/makesdna/DNA_modifier_types.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source/blender/makesdna/DNA_modifier_types.h') 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__ */ -- cgit v1.2.3