From e8a58eb0f9731600fde13898ec5d329258801a64 Mon Sep 17 00:00:00 2001 From: Peter Schlaile Date: Mon, 30 Oct 2006 22:28:06 +0000 Subject: == Sequencer == Bugfixes: Fixed partially bug #5030 Added patch: #4992 Basic Transforms This adds basic transform capabilities (rotate, scale, shift) to the sequencer. --- source/blender/makesdna/DNA_sequence_types.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'source/blender/makesdna/DNA_sequence_types.h') 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 -- cgit v1.2.3