|
Blender V5.0
|
#include "DNA_screen_types.h"#include "DNA_sequence_types.h"#include "DNA_space_types.h"#include "MEM_guardedalloc.h"#include "BLI_listbase.h"#include "BLI_math_matrix.h"#include "BLI_math_vector.h"#include "BKE_context.hh"#include "ED_markers.hh"#include "SEQ_animation.hh"#include "SEQ_channels.hh"#include "SEQ_edit.hh"#include "SEQ_effects.hh"#include "SEQ_iterator.hh"#include "SEQ_relations.hh"#include "SEQ_sequencer.hh"#include "SEQ_time.hh"#include "SEQ_transform.hh"#include "UI_view2d.hh"#include "transform.hh"#include "transform_convert.hh"#include "transform_mode.hh"Go to the source code of this file.
Namespaces | |
| namespace | blender |
| namespace | blender::ed |
| namespace | blender::ed::transform |
Macros | |
| #define | STRIP_EDGE_PAN_INSIDE_PAD 3.5 |
| #define | STRIP_EDGE_PAN_OUTSIDE_PAD 0 /* Disable clamping for panning, use whole screen. */ |
| #define | STRIP_EDGE_PAN_SPEED_RAMP 1 |
| #define | STRIP_EDGE_PAN_MAX_SPEED 4 /* In UI units per second, slower than default. */ |
| #define | STRIP_EDGE_PAN_DELAY 1.0f |
| #define | STRIP_EDGE_PAN_ZOOM_INFLUENCE 0.5f |
Functions | |
UVs Transform Flush | |
| static void | blender::ed::transform::view2d_edge_pan_loc_compensate (TransInfo *t, float r_offset[2]) |
| static void | blender::ed::transform::flushTransSeq (TransInfo *t) |
| static void | blender::ed::transform::recalcData_sequencer (TransInfo *t) |
Special After Transform Sequencer | |
| static void | blender::ed::transform::special_aftertrans_update__sequencer (bContext *C, TransInfo *t) |
| bool | blender::ed::transform::transform_convert_sequencer_clamp (const TransInfo *t, float r_val[2]) |
| #define STRIP_EDGE_PAN_DELAY 1.0f |
Definition at line 45 of file transform_convert_sequencer.cc.
Referenced by blender::ed::transform::createTransSeqData().
| #define STRIP_EDGE_PAN_INSIDE_PAD 3.5 |
Definition at line 41 of file transform_convert_sequencer.cc.
Referenced by blender::ed::transform::createTransSeqData().
| #define STRIP_EDGE_PAN_MAX_SPEED 4 /* In UI units per second, slower than default. */ |
Definition at line 44 of file transform_convert_sequencer.cc.
Referenced by blender::ed::transform::createTransSeqData().
| #define STRIP_EDGE_PAN_OUTSIDE_PAD 0 /* Disable clamping for panning, use whole screen. */ |
Definition at line 42 of file transform_convert_sequencer.cc.
Referenced by blender::ed::transform::createTransSeqData().
| #define STRIP_EDGE_PAN_SPEED_RAMP 1 |
Definition at line 43 of file transform_convert_sequencer.cc.
Referenced by blender::ed::transform::createTransSeqData().
| #define STRIP_EDGE_PAN_ZOOM_INFLUENCE 0.5f |
Definition at line 46 of file transform_convert_sequencer.cc.
Referenced by blender::ed::transform::createTransSeqData().