Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/transform/transform.h
| Show First 20 Lines • Show All 796 Lines • ▼ Show 20 Lines | enum { | ||||
| TFM_MODAL_EDGESLIDE_UP = 24, | TFM_MODAL_EDGESLIDE_UP = 24, | ||||
| TFM_MODAL_EDGESLIDE_DOWN = 25, | TFM_MODAL_EDGESLIDE_DOWN = 25, | ||||
| /* for analog input, like trackpad */ | /* for analog input, like trackpad */ | ||||
| TFM_MODAL_PROPSIZE = 26, | TFM_MODAL_PROPSIZE = 26, | ||||
| /* node editor insert offset (aka auto-offset) direction toggle */ | /* node editor insert offset (aka auto-offset) direction toggle */ | ||||
| TFM_MODAL_INSERTOFS_TOGGLE_DIR = 27, | TFM_MODAL_INSERTOFS_TOGGLE_DIR = 27, | ||||
| /* Disable 'T_RELEASE_CONFIRM'. */ | |||||
| TFM_MODAL_RELEASE_CONFIRM_OFF = 28, | |||||
| }; | }; | ||||
| /* Hard min/max for proportional size. */ | /* Hard min/max for proportional size. */ | ||||
| #define T_PROP_SIZE_MIN 1e-6f | #define T_PROP_SIZE_MIN 1e-6f | ||||
| #define T_PROP_SIZE_MAX 1e12f | #define T_PROP_SIZE_MAX 1e12f | ||||
| bool initTransform(struct bContext *C, | bool initTransform(struct bContext *C, | ||||
| struct TransInfo *t, | struct TransInfo *t, | ||||
| ▲ Show 20 Lines • Show All 169 Lines • Show Last 20 Lines | |||||