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:
authorPeter Schlaile <peter@schlaile.de>2006-10-31 01:28:06 +0300
committerPeter Schlaile <peter@schlaile.de>2006-10-31 01:28:06 +0300
commite8a58eb0f9731600fde13898ec5d329258801a64 (patch)
treedef19ca5d7585b8713520152eff7a833179428ef /source/blender/makesdna/DNA_sequence_types.h
parent55d16189906c6a62d6f43233cc75a06858d0f507 (diff)
== Sequencer ==
Bugfixes: Fixed partially bug #5030 Added patch: #4992 Basic Transforms This adds basic transform capabilities (rotate, scale, shift) to the sequencer.
Diffstat (limited to 'source/blender/makesdna/DNA_sequence_types.h')
-rw-r--r--source/blender/makesdna/DNA_sequence_types.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h
index 6762279559c..0213b8263ff 100644
--- a/source/blender/makesdna/DNA_sequence_types.h
+++ b/source/blender/makesdna/DNA_sequence_types.h
@@ -160,6 +160,18 @@ typedef struct GlowVars {
int bNoComp; /* SHOW/HIDE glow buffer */
} GlowVars;
+typedef struct TransformVars {
+ float ScalexIni;
+ float ScaleyIni;
+ float ScalexFin;
+ float ScaleyFin;
+ float xIni;
+ float xFin;
+ float yIni;
+ float yFin;
+ float rotIni;
+ float rotFin;
+} TransformVars;
/* ***************** SEQUENCE ****************** */
@@ -195,6 +207,7 @@ typedef struct GlowVars {
#define SEQ_PLUGIN 24
#define SEQ_WIPE 25
#define SEQ_GLOW 26
+#define SEQ_TRANSFORM 27
#endif