From ef8ea14f459e0e765e07fc48858c18dc11cfdfb5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Aug 2013 14:18:54 +0000 Subject: rewrite edgenet fill bmesh operator. previous code created faces with mixed face-flipping and could get very slow, test with ~60,000 edges here hung my system for over 2min (didnt wait for it to finish), new code executes in about 1 second. new code doesn't attempt to flip faces correctly, its quite involved to do so, especially when the new faces are not created adjacent to eachother. so simpler to calculate normals afterwards. --- source/blender/bmesh/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/blender/bmesh/CMakeLists.txt') diff --git a/source/blender/bmesh/CMakeLists.txt b/source/blender/bmesh/CMakeLists.txt index 228ebcb96c4..533593d6f77 100644 --- a/source/blender/bmesh/CMakeLists.txt +++ b/source/blender/bmesh/CMakeLists.txt @@ -123,6 +123,8 @@ set(SRC tools/bmesh_decimate_dissolve.c tools/bmesh_decimate_unsubdivide.c tools/bmesh_decimate.h + tools/bmesh_edgenet.c + tools/bmesh_edgenet.h tools/bmesh_edgesplit.c tools/bmesh_edgesplit.h tools/bmesh_path.c -- cgit v1.2.3