Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'io_mesh_stl')
-rw-r--r--io_mesh_stl/blender_utils.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/io_mesh_stl/blender_utils.py b/io_mesh_stl/blender_utils.py
index c4e73747..ff507b31 100644
--- a/io_mesh_stl/blender_utils.py
+++ b/io_mesh_stl/blender_utils.py
@@ -26,7 +26,6 @@ def create_and_link_mesh(name, faces, points, global_matrix):
Create a blender mesh and object called name from a list of
*points* and *faces* and link it in the current scene.
"""
- from mathutils import Vector
mesh = bpy.data.meshes.new(name)
mesh.from_pydata(points, [], faces)