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-07-13 17:41:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-07-13 17:41:26 +0400
commitf1eed11ad75df3f0e43d847a341ee34b6a59482e (patch)
tree30cf692cbe9a9dfa6d5f1a7c7340a1e2717b92a7
parent3503ad47dc8b52e4422642eaced24db37237d5d6 (diff)
Missing constant added.
-rw-r--r--release/scripts/bpymodules/BPyMathutils.py3
1 files changed, 1 insertions, 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
-