From f1eed11ad75df3f0e43d847a341ee34b6a59482e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 13 Jul 2006 13:41:26 +0000 Subject: [PATCH] Missing constant added. --- release/scripts/bpymodules/BPyMathutils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/release/scripts/bpymodules/BPyMathutils.py b/release/scripts/bpymodules/BPyMathutils.py index d991ef03d99..72755d73153 100644 --- a/release/scripts/bpymodules/BPyMathutils.py +++ b/release/scripts/bpymodules/BPyMathutils.py @@ -182,7 +182,7 @@ def convexHull(point_list_2d): # Concatenate both halfs and return. return [p[1] for ls in (upper, lower) for p in ls] - +SMALL_NUM = 0.000001 def lineIntersect2D(v1a, v1b, v2a, v2b): ''' Do 2 lines intersect, if so where. @@ -265,4 +265,3 @@ def lineIntersect2D(v1a, v1b, v2a, v2b): else: return None, 300 -