small change, the edge collapse limit was only 0.001, whats way too big and I found it removed more points then just the ones that collapsed.

changed to 0.000001 - the verts are collapsed to the same location so it they shuld not to offset from eachother anyway.
This commit is contained in:
2006-06-21 15:36:05 +00:00
parent ad388f6a39
commit c276501a10

View File

@@ -5659,7 +5659,7 @@ typedef struct CollectedEdge{
EditEdge *eed;
} CollectedEdge;
#define MERGELIMIT 0.001
#define MERGELIMIT 0.000001
static void build_edgecollection(ListBase *allcollections)
{