Fix T68129: Bridge edge loops fails on small edge loops

This commit is contained in:
Campbell Barton
2019-08-03 02:51:52 +10:00
parent 26d5fae284
commit a744fedc85

View File

@@ -45,7 +45,9 @@ typedef struct BMEdgeLoopStore {
} BMEdgeLoopStore;
#define BM_EDGELOOP_IS_CLOSED (1 << 0)
#define EDGELOOP_EPS 0.00001f
/* Use a small value since we need normals even for very small loops. */
#define EDGELOOP_EPS 1e-10f
/* -------------------------------------------------------------------- */
/* BM_mesh_edgeloops_find & Util Functions */