[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4761] trunk/py/scripts/addons/ io_scene_fbx/export_fbx.py: Eeek, revert some changes that should not have been committed!

Bastien Montagne montagne29 at wanadoo.fr
Mon Sep 16 16:41:05 CEST 2013


Revision: 4761
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=4761
Author:   mont29
Date:     2013-09-16 14:41:05 +0000 (Mon, 16 Sep 2013)
Log Message:
-----------
Eeek, revert some changes that should not have been committed!

Modified Paths:
--------------
    trunk/py/scripts/addons/io_scene_fbx/export_fbx.py

Modified: trunk/py/scripts/addons/io_scene_fbx/export_fbx.py
===================================================================
--- trunk/py/scripts/addons/io_scene_fbx/export_fbx.py	2013-09-16 13:56:27 UTC (rev 4760)
+++ trunk/py/scripts/addons/io_scene_fbx/export_fbx.py	2013-09-16 14:41:05 UTC (rev 4761)
@@ -1383,7 +1383,6 @@
            )
 
         # Write the Real Mesh data here
-        _tm = time.process_time()
         fw('\n\t\tVertices: ')
         i = -1
         for v in me_vertices:
@@ -1396,9 +1395,7 @@
                     i = 0
                 fw(',%.6f,%.6f,%.6f' % v.co[:])
             i += 1
-        print("Old verts: done in %f secs..." % (time.process_time() - _tm))
 
-        _tm = time.process_time()
         fw('\n\t\tPolygonVertexIndex: ')
         i = -1
         for f in me_faces:
@@ -1420,7 +1417,6 @@
                 else:
                     fw(',%i,%i,%i,%i' % (fi[0], fi[1], fi[2], fi[3] ^ -1))
             i += 1
-        print("Old faces: done in %f secs..." % (time.process_time() - _tm))
 
         # write loose edges as faces.
         for ed in me_edges:



More information about the Bf-extensions-cvs mailing list