Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_mesh.h
| Show First 20 Lines • Show All 419 Lines • ▼ Show 20 Lines | |||||
| /** | /** | ||||
| * (similar to void `paintface_flush_flags(Object *ob)`) | * (similar to void `paintface_flush_flags(Object *ob)`) | ||||
| * copy the vertex flags, most importantly selection from the mesh to the final derived mesh, | * copy the vertex flags, most importantly selection from the mesh to the final derived mesh, | ||||
| * use in object mode when selecting vertices (while painting). | * use in object mode when selecting vertices (while painting). | ||||
| */ | */ | ||||
| void paintvert_flush_flags(struct Object *ob); | void paintvert_flush_flags(struct Object *ob); | ||||
| void paintvert_tag_select_update(struct bContext *C, struct Object *ob); | void paintvert_tag_select_update(struct bContext *C, struct Object *ob); | ||||
| void paintvert_hide(struct bContext *C, struct Object *ob, bool unselected); | |||||
| void paintvert_reveal(struct bContext *C, struct Object *ob, bool select); | |||||
| /* mirrtopo */ | /* mirrtopo */ | ||||
| typedef struct MirrTopoStore_t { | typedef struct MirrTopoStore_t { | ||||
| intptr_t *index_lookup; | intptr_t *index_lookup; | ||||
| int prev_vert_tot; | int prev_vert_tot; | ||||
| int prev_edge_tot; | int prev_edge_tot; | ||||
| bool prev_is_editmode; | bool prev_is_editmode; | ||||
| } MirrTopoStore_t; | } MirrTopoStore_t; | ||||
| ▲ Show 20 Lines • Show All 247 Lines • Show Last 20 Lines | |||||