From c3abdd9608841ffa12b0aa02dc92e56f088d2608 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Mon, 28 Mar 2005 14:00:49 +0000 Subject: Cleanup of widget code; - made more general calls with args for drawing types - made it accept transparency for all modes (used while transform now) - added argument to detect 'combo' mode, gave offsets to translate/scale handles in combos. - added 'pie chart' on view-aligned rotate for widget - made trackball for rotate widget rt==4 behave compatible - removed redundant code for 'ghosting' --- source/blender/makesdna/DNA_view3d_types.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/blender/makesdna/DNA_view3d_types.h') diff --git a/source/blender/makesdna/DNA_view3d_types.h b/source/blender/makesdna/DNA_view3d_types.h index f7857f5d52a..17bceb427ce 100644 --- a/source/blender/makesdna/DNA_view3d_types.h +++ b/source/blender/makesdna/DNA_view3d_types.h @@ -148,14 +148,14 @@ typedef struct View3D { #define V3D_SHOW_Z 8 /* View3d->twtype (bits, we can combine them) */ -#define V3D_MANIPULATOR_TRANSLATE 1 -#define V3D_MANIPULATOR_ROTATE 2 -#define V3D_MANIPULATOR_SCALE 4 +#define V3D_MANIP_TRANSLATE 1 +#define V3D_MANIP_ROTATE 2 +#define V3D_MANIP_SCALE 4 /* View3d->twmode */ -#define V3D_MANIPULATOR_GLOBAL 0 -#define V3D_MANIPULATOR_LOCAL 1 -#define V3D_MANIPULATOR_NORMAL 2 +#define V3D_MANIP_GLOBAL 0 +#define V3D_MANIP_LOCAL 1 +#define V3D_MANIP_NORMAL 2 /* View3d->twflag */ /* USE = user setting, DRAW = based on selection */ -- cgit v1.2.3