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>2019-03-15 11:45:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-15 11:45:21 +0300
commit41b289be30021b8fc63031aba701065f1c40ed47 (patch)
tree66d4d132d33ac75c4aef5d748418420f7929a2b3 /release/scripts/modules/bpy_extras/mesh_utils.py
parentf29b80ff79ec7c6a2532d0b0eb5841d00cc7af1b (diff)
Cleanup: unused imports
Diffstat (limited to 'release/scripts/modules/bpy_extras/mesh_utils.py')
-rw-r--r--release/scripts/modules/bpy_extras/mesh_utils.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/release/scripts/modules/bpy_extras/mesh_utils.py b/release/scripts/modules/bpy_extras/mesh_utils.py
index e76d1f1815e..98ddc731028 100644
--- a/release/scripts/modules/bpy_extras/mesh_utils.py
+++ b/release/scripts/modules/bpy_extras/mesh_utils.py
@@ -443,7 +443,6 @@ def triangle_random_points(num_points, loop_triangles):
"""
from random import random
- from mathutils.geometry import area_tri
# For each triangle, generate the required number of random points
sampled_points = [None] * (num_points * len(loop_triangles))