From e781ea79b2616014b2faff3d74a2efaa844a0f44 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 8 Jan 2014 14:02:18 +1100 Subject: [PATCH] UV Unwrap: smart uv unwrap would fail still on some very small faces --- release/scripts/startup/bl_operators/uvcalc_smart_project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/scripts/startup/bl_operators/uvcalc_smart_project.py b/release/scripts/startup/bl_operators/uvcalc_smart_project.py index 76f965f4a22..74fb9e98c82 100644 --- a/release/scripts/startup/bl_operators/uvcalc_smart_project.py +++ b/release/scripts/startup/bl_operators/uvcalc_smart_project.py @@ -23,7 +23,7 @@ import bpy from bpy.types import Operator DEG_TO_RAD = 0.017453292519943295 # pi/180.0 -SMALL_NUM = 0.0000001 # see bug [#31598] why we dont have smaller values +SMALL_NUM = 0.000001 # see bug [#31598] why we dont have smaller values global USER_FILL_HOLES global USER_FILL_HOLES_QUALITY