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:
authorNicholas Bishop <nicholasbishop@gmail.com>2011-07-31 06:03:48 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2011-07-31 06:03:48 +0400
commit6c3bb8b9030a86388d42a752b0cba2826630c4c6 (patch)
tree984b6fc3b1da05f0cf6b7eaaea57a1799977d038 /source/blender/makesdna/DNA_modifier_types.h
parentcff57b14a122a7925d8fb6aeb0ecd53984fa0c58 (diff)
EditMesh-based skin node drawing
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 483bd339b3d..3787675f339 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -71,7 +71,6 @@ typedef enum ModifierType {
eModifierType_Solidify,
eModifierType_Screw,
eModifierType_Warp,
- eModifierType_Skin,
NUM_MODIFIER_TYPES
} ModifierType;
@@ -786,17 +785,4 @@ typedef enum {
/* PROP_RANDOM not used */
} WarpModifierFalloff;
-typedef enum SkinModifierFlags {
- MOD_SKIN_DRAW_SKIN = (1<<0),
- MOD_SKIN_DRAW_NODES = (1<<1),
-} SkinModifierFlags;
-
-typedef struct SkinModifierData {
- ModifierData modifier;
- float threshold;
- int subdiv;
- int flag;
- int pad;
-} SkinModifierData;
-
#endif