Changeset View
Changeset View
Standalone View
Standalone View
source/blender/bmesh/operators/bmo_subdivide_edgering.c
| Context not available. | |||||
| * - verts use BM_ELEM_TAG, these need to be cleared before functions exit. | * - verts use BM_ELEM_TAG, these need to be cleared before functions exit. | ||||
| * | * | ||||
| * \note Order of execution with 2+ rings is undefined, | * \note Order of execution with 2+ rings is undefined, | ||||
| * so tage care | * so take care | ||||
| */ | */ | ||||
| #include "MEM_guardedalloc.h" | #include "MEM_guardedalloc.h" | ||||
| Context not available. | |||||
| } | } | ||||
| else if (count == 2) { | else if (count == 2) { | ||||
| /* this case could be removed, | /* this case could be removed, | ||||
| * but simple to avoid 'bm_edgering_pair_calc' in this case since theres only one. */ | * but simple to avoid 'bm_edgering_pair_calc' in this case since there's only one. */ | ||||
| struct BMEdgeLoopStore *el_store_a = eloops_rim.first; | struct BMEdgeLoopStore *el_store_a = eloops_rim.first; | ||||
| struct BMEdgeLoopStore *el_store_b = eloops_rim.last; | struct BMEdgeLoopStore *el_store_b = eloops_rim.last; | ||||
| LoopPairStore *lpair; | LoopPairStore *lpair; | ||||
| Context not available. | |||||