Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2006-06-21 19:36:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-06-21 19:36:05 +0400
commitc276501a101c0e0563df5985214cda84743d35f2 (patch)
treeb88ff60b3fed20c7d3b4021f06128432de9db13f /source/blender/src/editmesh_tools.c
parentad388f6a39fa603c2f05d68123518e7049e64be8 (diff)
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.
Diffstat (limited to 'source/blender/src/editmesh_tools.c')
-rw-r--r--source/blender/src/editmesh_tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editmesh_tools.c b/source/blender/src/editmesh_tools.c
index 45369e05883..f1796af7ffe 100644
--- a/source/blender/src/editmesh_tools.c
+++ b/source/blender/src/editmesh_tools.c
@@ -5659,7 +5659,7 @@ typedef struct CollectedEdge{
EditEdge *eed;
} CollectedEdge;
-#define MERGELIMIT 0.001
+#define MERGELIMIT 0.000001
static void build_edgecollection(ListBase *allcollections)
{