Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_gizmo_library.h
| Show First 20 Lines • Show All 63 Lines • ▼ Show 20 Lines | void ED_gizmo_draw_preset_circle(const struct wmGizmo *gz, | ||||
| float mat[4][4], | float mat[4][4], | ||||
| int axis, | int axis, | ||||
| int select_id); | int select_id); | ||||
| void ED_gizmo_draw_preset_facemap(const struct bContext *C, | void ED_gizmo_draw_preset_facemap(const struct bContext *C, | ||||
| const struct wmGizmo *gz, | const struct wmGizmo *gz, | ||||
| struct Object *ob, | struct Object *ob, | ||||
| const int facemap, | const int facemap, | ||||
| int select_id); | int select_id); | ||||
| void ED_gizmo_draw_preset_snap_elem(const struct wmGizmo *gz, | |||||
| const float screen_co[2], | |||||
| const unsigned char color[4], | |||||
| const short snap_elem_type); | |||||
| /* -------------------------------------------------------------------- */ | /* -------------------------------------------------------------------- */ | ||||
| /* 3D Arrow Gizmo */ | /* 3D Arrow Gizmo */ | ||||
| enum { | enum { | ||||
| ED_GIZMO_ARROW_STYLE_NORMAL = 0, | ED_GIZMO_ARROW_STYLE_NORMAL = 0, | ||||
| ED_GIZMO_ARROW_STYLE_CROSS = 1, | ED_GIZMO_ARROW_STYLE_CROSS = 1, | ||||
| ED_GIZMO_ARROW_STYLE_BOX = 2, | ED_GIZMO_ARROW_STYLE_BOX = 2, | ||||
| ▲ Show 20 Lines • Show All 173 Lines • Show Last 20 Lines | |||||