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>2014-01-08 07:02:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-08 07:03:36 +0400
commite781ea79b2616014b2faff3d74a2efaa844a0f44 (patch)
tree0f60120f03938a1602e9bc108128f71a183dc775 /release
parent3739f53a6e2ea7e643cd9630f999b9c7503110e3 (diff)
UV Unwrap: smart uv unwrap would fail still on some very small faces
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/uvcalc_smart_project.py2
1 files changed, 1 insertions, 1 deletions
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