Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2005-03-28 18:00:49 +0400
committerTon Roosendaal <ton@blender.org>2005-03-28 18:00:49 +0400
commitc3abdd9608841ffa12b0aa02dc92e56f088d2608 (patch)
tree68dd0fe5aa5461d5304b0b05783fc4885ba8309a /source/blender/makesdna/DNA_view3d_types.h
parentcdd7e935669a8c5106d31dacce7f3d24fcddae55 (diff)
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'
Diffstat (limited to 'source/blender/makesdna/DNA_view3d_types.h')
-rw-r--r--source/blender/makesdna/DNA_view3d_types.h12
1 files changed, 6 insertions, 6 deletions
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 */