Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_view3d_types.h
| Show First 20 Lines • Show All 519 Lines • ▼ Show 20 Lines | enum { | ||||
| V3D_AROUND_ACTIVE = 4, | V3D_AROUND_ACTIVE = 4, | ||||
| }; | }; | ||||
| /** #View3d.gridflag */ | /** #View3d.gridflag */ | ||||
| #define V3D_SHOW_FLOOR (1 << 0) | #define V3D_SHOW_FLOOR (1 << 0) | ||||
| #define V3D_SHOW_X (1 << 1) | #define V3D_SHOW_X (1 << 1) | ||||
| #define V3D_SHOW_Y (1 << 2) | #define V3D_SHOW_Y (1 << 2) | ||||
| #define V3D_SHOW_Z (1 << 3) | #define V3D_SHOW_Z (1 << 3) | ||||
| #define V3D_SHOW_ORTHO_GRID (1 << 4) | |||||
| /** #TransformOrientationSlot.type */ | /** #TransformOrientationSlot.type */ | ||||
| enum { | enum { | ||||
| V3D_ORIENT_GLOBAL = 0, | V3D_ORIENT_GLOBAL = 0, | ||||
| V3D_ORIENT_LOCAL = 1, | V3D_ORIENT_LOCAL = 1, | ||||
| V3D_ORIENT_NORMAL = 2, | V3D_ORIENT_NORMAL = 2, | ||||
| V3D_ORIENT_VIEW = 3, | V3D_ORIENT_VIEW = 3, | ||||
| V3D_ORIENT_GIMBAL = 4, | V3D_ORIENT_GIMBAL = 4, | ||||
| ▲ Show 20 Lines • Show All 54 Lines • Show Last 20 Lines | |||||