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>2013-07-23 23:31:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-07-23 23:31:49 +0400
commitf77405356aa5e1816287b1afe6b6546f518cc1f1 (patch)
tree3f4404610a8afde49c9b60c59db30900e815739f /source/blender/makesdna/DNA_modifier_types.h
parent8ef3b51325c39dcf18cf340d41f6e847c902dfbd (diff)
remove use_relative option from simple deform,
all modifiers should be using object transformations relatively.
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 98469102cb0..65e5c4e347a 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -720,8 +720,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;
@@ -733,12 +732,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 {