Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/transform/transform.h
| Show First 20 Lines • Show All 745 Lines • ▼ Show 20 Lines | enum { | ||||
| T_ALT_TRANSFORM = 1 << 24, | T_ALT_TRANSFORM = 1 << 24, | ||||
| /** #TransInfo.center has been set, don't change it. */ | /** #TransInfo.center has been set, don't change it. */ | ||||
| T_OVERRIDE_CENTER = 1 << 25, | T_OVERRIDE_CENTER = 1 << 25, | ||||
| T_MODAL_CURSOR_SET = 1 << 26, | T_MODAL_CURSOR_SET = 1 << 26, | ||||
| T_CLNOR_REBUILD = 1 << 27, | T_CLNOR_REBUILD = 1 << 27, | ||||
| /** Set once when the depsgraph has been evaluated in the rare cases it's needed. */ | |||||
| T_DEPSGRAPH_EVAL = 1 << 28, | |||||
| }; | }; | ||||
| /** #TransInfo.modifiers */ | /** #TransInfo.modifiers */ | ||||
| enum { | enum { | ||||
| MOD_CONSTRAINT_SELECT = 1 << 0, | MOD_CONSTRAINT_SELECT = 1 << 0, | ||||
| MOD_PRECISION = 1 << 1, | MOD_PRECISION = 1 << 1, | ||||
| MOD_SNAP = 1 << 2, | MOD_SNAP = 1 << 2, | ||||
| MOD_SNAP_INVERT = 1 << 3, | MOD_SNAP_INVERT = 1 << 3, | ||||
| ▲ Show 20 Lines • Show All 97 Lines • ▼ Show 20 Lines | |||||
| void applyAspectRatio(TransInfo *t, float vec[2]); | void applyAspectRatio(TransInfo *t, float vec[2]); | ||||
| void removeAspectRatio(TransInfo *t, float vec[2]); | void removeAspectRatio(TransInfo *t, float vec[2]); | ||||
| void drawPropCircle(const struct bContext *C, TransInfo *t); | void drawPropCircle(const struct bContext *C, TransInfo *t); | ||||
| struct wmKeyMap *transform_modal_keymap(struct wmKeyConfig *keyconf); | struct wmKeyMap *transform_modal_keymap(struct wmKeyConfig *keyconf); | ||||
| void transform_depsgraph_eval_ensure(TransInfo *t); | |||||
| /*********************** transform_conversions.c ********** */ | /*********************** transform_conversions.c ********** */ | ||||
| void flushTransIntFrameActionData(TransInfo *t); | void flushTransIntFrameActionData(TransInfo *t); | ||||
| void flushTransGraphData(TransInfo *t); | void flushTransGraphData(TransInfo *t); | ||||
| void remake_graph_transdata(TransInfo *t, struct ListBase *anim_data); | void remake_graph_transdata(TransInfo *t, struct ListBase *anim_data); | ||||
| void flushTransUVs(TransInfo *t); | void flushTransUVs(TransInfo *t); | ||||
| void flushTransParticles(TransInfo *t); | void flushTransParticles(TransInfo *t); | ||||
| ▲ Show 20 Lines • Show All 223 Lines • Show Last 20 Lines | |||||