Blender Git Commit Log
Git Commits -> Revision 6644e96
Revision 6644e96 by Campbell Barton (master) July 14, 2021, 04:22 (GMT) |
Cleanup: use BMLoop.next/prev for BMesh auto-smooth logic Use more direct access to next/previous vertices. - `BM_edge_other_vert(l_curr->e, l_curr->v)` -> `l_curr->next->v`. - `BM_edge_other_vert(l_curr->prev->e, l_curr->v)` -> `l_curr->prev->v`. Add asserts to keep the intention clear. |
Commit Details:
Full Hash: 6644e96f01da353de1dba8c3e38c61de83a8d516
Parent Commit: ae37971
Lines Changed: +8, -3
1 Modified Path:
/source/blender/bmesh/intern/bmesh_mesh_normals.c (+8, -3) (Diff)