Changeset View
Changeset View
Standalone View
Standalone View
source/blender/bmesh/intern/bmesh_polygon_edgenet.c
| Context not available. | |||||
| /* Set the following vars once we have >1 groups */ | /* Set the following vars once we have >1 groups */ | ||||
| /* when when an edge in a previous group connects to this one, | /* when an edge in a previous group connects to this one, | ||||
| * so theres no need to create one pointing back. */ | * so theres no need to create one pointing back. */ | ||||
| uint has_prev_edge : 1; | uint has_prev_edge : 1; | ||||
| Context not available. | |||||
| if (!BM_elem_flag_test(v_iter, VERT_IN_ARRAY)) { | if (!BM_elem_flag_test(v_iter, VERT_IN_ARRAY)) { | ||||
| BM_elem_flag_enable(v_iter, VERT_IN_ARRAY); | BM_elem_flag_enable(v_iter, VERT_IN_ARRAY); | ||||
| /* not nice, but alternatives arent much better :S */ | /* not nice, but alternatives aren't much better :S */ | ||||
| { | { | ||||
| copy_v3_v3(vert_coords_backup[v_index], v_iter->co); | copy_v3_v3(vert_coords_backup[v_index], v_iter->co); | ||||
| Context not available. | |||||