Cleanup: unused TransInfo members

This commit is contained in:
Campbell Barton 2016-02-01 13:33:22 +11:00
parent c2508b0aaf
commit 526dbd8089
2 changed files with 0 additions and 3 deletions

View File

@ -370,7 +370,6 @@ typedef struct TransInfo {
short state; /* current state (running, canceled,...)*/
int options; /* current context/options for transform */
float val; /* init value for some transformations (and rotation angle) */
float fac; /* factor for distance based transform */
void (*transform)(struct TransInfo *, const int[2]);
/* transform function pointer */
eRedrawFlag (*handleEvent)(struct TransInfo *, const struct wmEvent *);
@ -391,7 +390,6 @@ typedef struct TransInfo {
float center[3]; /* center of transformation (in local-space) */
float center_global[3]; /* center of transformation (in global-space) */
float center2d[2]; /* center in screen coordinates */
short event_type; /* event->type used to invoke transform */
short idx_max; /* maximum index on the input vector */
float snap[3]; /* Snapping Gears */
float snap_spatial[3]; /* Spatial snapping gears(even when rotating, scaling... etc) */

View File

@ -1121,7 +1121,6 @@ void initTransInfo(bContext *C, TransInfo *t, wmOperator *op, const wmEvent *eve
t->redraw = TREDRAW_HARD; /* redraw first time */
if (event) {
t->event_type = event->type;
t->mouse.imval[0] = event->mval[0];
t->mouse.imval[1] = event->mval[1];
}