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-14 23:49:37 +0400
committerAlexander Pinzon <apinzonf@gmail.com>2013-08-14 23:49:37 +0400
commit54741c2311f0c01885f8b4a818b11cea38f7085d (patch)
tree6326ea3ef022e11a2592423257f59a892aaa7174 /source/blender/makesdna/DNA_modifier_types.h
parent0b09beb16702af4acfd7d591dc6d3b2b8f8098b3 (diff)
parent503b7d5b9a385fdcd220df3142857300d912d80c (diff)
svn merge ^/trunk/blender 58498:59138
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index a76f57a3e7c..5e65369b32d 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -282,16 +282,23 @@ typedef struct BevelModifierData {
short val_flags; /* flags used to interpret the bevel value */
short lim_flags; /* flags to tell the tool how to limit the bevel */
short e_flags; /* flags to direct how edge weights are applied to verts */
- float bevel_angle; /* if the BME_BEVEL_ANGLE is set, this will be how "sharp" an edge must be before it gets beveled */
- char defgrp_name[64]; /* if the BME_BEVEL_VWEIGHT option is set, this will be the name of the vert group, MAX_VGROUP_NAME */
+ float bevel_angle; /* if the MOD_BEVEL_ANGLE is set, this will be how "sharp" an edge must be before it gets beveled */
+ char defgrp_name[64]; /* if the MOD_BEVEL_VWEIGHT option is set, this will be the name of the vert group, MAX_VGROUP_NAME */
} BevelModifierData;
-typedef struct BMeshModifierData {
- ModifierData modifier;
-
- float pad;
- int type;
-} BMeshModifierData;
+#define MOD_BEVEL_VERT (1 << 1)
+// #define MOD_BEVEL_RADIUS (1 << 2)
+#define MOD_BEVEL_ANGLE (1 << 3)
+#define MOD_BEVEL_WEIGHT (1 << 4)
+#define MOD_BEVEL_VGROUP (1 << 5)
+#define MOD_BEVEL_EMIN (1 << 7)
+#define MOD_BEVEL_EMAX (1 << 8)
+// #define MOD_BEVEL_RUNNING (1 << 9)
+// #define MOD_BEVEL_RES (1 << 10)
+// #define MOD_BEVEL_EVEN (1 << 11) /* this is a new setting not related to old (trunk bmesh bevel code) but adding
+// * here because they are mixed - campbell */
+// #define MOD_BEVEL_DIST (1 << 12) /* same as above */
+#define MOD_BEVEL_OVERLAP_OK (1 << 13)
/* Smoke modifier flags */
@@ -714,8 +721,7 @@ typedef struct SimpleDeformModifierData {
char mode; /* deform function */
char axis; /* lock axis (for taper and strech) */
- char originOpts; /* originOptions */
- char pad;
+ char pad[2];
} SimpleDeformModifierData;
@@ -727,12 +733,6 @@ typedef struct SimpleDeformModifierData {
#define MOD_SIMPLEDEFORM_LOCK_AXIS_X (1<<0)
#define MOD_SIMPLEDEFORM_LOCK_AXIS_Y (1<<1)
-/* indicates whether simple deform should use the local
- * coordinates or global coordinates of origin */
-/* XXX, this should have never been an option, all other modifiers work relatively
- * (so moving both objects makes no change!) - Campbell */
-#define MOD_SIMPLEDEFORM_ORIGIN_LOCAL (1<<0)
-
#define MOD_UVPROJECT_MAX 10
typedef struct ShapeKeyModifierData {