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:
authorCampbell Barton <ideasman42@gmail.com>2012-05-26 13:18:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-26 13:18:47 +0400
commite343a69e76d51c2f07a57fd953e9cec8985118e8 (patch)
tree78f25b2a497c70544306b81fdd52165596d5779e /source/blender/makesdna/DNA_modifier_types.h
parent026e2b3d03501aab64d7ad9d02c5e6fba44e65df (diff)
solidify option to flip normals
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index a5a540ff6b4..cf8b08549f6 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -728,11 +728,12 @@ typedef struct SolidifyModifierData {
short mat_ofs_rim;
} SolidifyModifierData;
-#define MOD_SOLIDIFY_RIM (1<<0)
-#define MOD_SOLIDIFY_EVEN (1<<1)
-#define MOD_SOLIDIFY_NORMAL_CALC (1<<2)
-#define MOD_SOLIDIFY_VGROUP_INV (1<<3)
-#define MOD_SOLIDIFY_RIM_MATERIAL (1<<4) /* deprecated, used in do_versions */
+#define MOD_SOLIDIFY_RIM (1 << 0)
+#define MOD_SOLIDIFY_EVEN (1 << 1)
+#define MOD_SOLIDIFY_NORMAL_CALC (1 << 2)
+#define MOD_SOLIDIFY_VGROUP_INV (1 << 3)
+#define MOD_SOLIDIFY_RIM_MATERIAL (1 << 4) /* deprecated, used in do_versions */
+#define MOD_SOLIDIFY_FLIP (1 << 5)
typedef struct ScrewModifierData {
ModifierData modifier;