Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/mesh/editmesh_tools.c
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show First 20 Lines • Show All 8,220 Lines • ▼ Show 20 Lines | enum { | ||||
| EDBM_CLNOR_MODAL_POINTTO_USE_MOUSE = 110, | EDBM_CLNOR_MODAL_POINTTO_USE_MOUSE = 110, | ||||
| EDBM_CLNOR_MODAL_POINTTO_USE_PIVOT = 111, | EDBM_CLNOR_MODAL_POINTTO_USE_PIVOT = 111, | ||||
| EDBM_CLNOR_MODAL_POINTTO_USE_OBJECT = 112, | EDBM_CLNOR_MODAL_POINTTO_USE_OBJECT = 112, | ||||
| EDBM_CLNOR_MODAL_POINTTO_SET_USE_3DCURSOR = 113, | EDBM_CLNOR_MODAL_POINTTO_SET_USE_3DCURSOR = 113, | ||||
| EDBM_CLNOR_MODAL_POINTTO_SET_USE_SELECTED = 114, | EDBM_CLNOR_MODAL_POINTTO_SET_USE_SELECTED = 114, | ||||
| }; | }; | ||||
| /* Called in transform_ops.c, on each regeneration of key-maps. */ | |||||
| wmKeyMap *point_normals_modal_keymap(wmKeyConfig *keyconf) | wmKeyMap *point_normals_modal_keymap(wmKeyConfig *keyconf) | ||||
| { | { | ||||
| static const EnumPropertyItem modal_items[] = { | static const EnumPropertyItem modal_items[] = { | ||||
| {EDBM_CLNOR_MODAL_CANCEL, "CANCEL", 0, "Cancel", ""}, | {EDBM_CLNOR_MODAL_CANCEL, "CANCEL", 0, "Cancel", ""}, | ||||
| {EDBM_CLNOR_MODAL_CONFIRM, "CONFIRM", 0, "Confirm", ""}, | {EDBM_CLNOR_MODAL_CONFIRM, "CONFIRM", 0, "Confirm", ""}, | ||||
| /* Point To operator. */ | /* Point To operator. */ | ||||
| {EDBM_CLNOR_MODAL_POINTTO_RESET, "RESET", 0, "Reset", "Reset normals to initial ones"}, | {EDBM_CLNOR_MODAL_POINTTO_RESET, "RESET", 0, "Reset", "Reset normals to initial ones"}, | ||||
| ▲ Show 20 Lines • Show All 1,617 Lines • Show Last 20 Lines | |||||