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_scene_obj/export_obj.py')
-rw-r--r--io_scene_obj/export_obj.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/io_scene_obj/export_obj.py b/io_scene_obj/export_obj.py
index 594a4167..a6570907 100644
--- a/io_scene_obj/export_obj.py
+++ b/io_scene_obj/export_obj.py
@@ -20,7 +20,6 @@
import os
import time
-import shutil
import bpy
import mathutils
@@ -239,9 +238,6 @@ def write_file(filepath, objects, scene,
if EXPORT_GLOBAL_MATRIX is None:
EXPORT_GLOBAL_MATRIX = mathutils.Matrix()
- # XXX
- import math
-
def veckey3d(v):
return round(v.x, 6), round(v.y, 6), round(v.z, 6)
@@ -273,7 +269,6 @@ def write_file(filepath, objects, scene,
return '(null)'
print('OBJ Export path: %r' % filepath)
- temp_mesh_name = '~tmp-mesh'
time1 = time.clock()
# time1 = sys.time()