Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/transform/transform.h
| Show First 20 Lines • Show All 414 Lines • ▼ Show 20 Lines | typedef struct TransInfo { | ||||
| int mval[2]; /* current mouse position */ | int mval[2]; /* current mouse position */ | ||||
| float zfac; /* use for 3d view */ | float zfac; /* use for 3d view */ | ||||
| struct Object *obedit; | struct Object *obedit; | ||||
| float obedit_mat[3][3]; /* normalized editmode matrix (T_EDIT only) */ | float obedit_mat[3][3]; /* normalized editmode matrix (T_EDIT only) */ | ||||
| void *draw_handle_apply; | void *draw_handle_apply; | ||||
| void *draw_handle_view; | void *draw_handle_view; | ||||
| void *draw_handle_pixel; | void *draw_handle_pixel; | ||||
| void *draw_handle_cursor; | void *draw_handle_cursor; | ||||
| char custom_text[256]; /* custom text drawn on header during transformation */ | |||||
| } TransInfo; | } TransInfo; | ||||
| /* ******************** Macros & Prototypes *********************** */ | /* ******************** Macros & Prototypes *********************** */ | ||||
| /* transinfo->state */ | /* transinfo->state */ | ||||
| #define TRANS_STARTING 0 | #define TRANS_STARTING 0 | ||||
| #define TRANS_RUNNING 1 | #define TRANS_RUNNING 1 | ||||
| ▲ Show 20 Lines • Show All 314 Lines • Show Last 20 Lines | |||||