From f1dbe6bf1a795a8355958f8b3e95df0d4d4a8cf1 Mon Sep 17 00:00:00 2001
From: Campbell Barton <ideasman42@gmail.com>
Date: Mon, 9 Apr 2012 04:27:38 +0000
Subject: [PATCH] fix for bad error exporting vertex locations twice.

---
 io_scene_fbx/export_fbx.py | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py
index c5c09627e..8090c44d9 100644
--- a/io_scene_fbx/export_fbx.py
+++ b/io_scene_fbx/export_fbx.py
@@ -1865,17 +1865,6 @@ def save_single(operator, scene, filepath="",
                     i += 1
                 fw('\n\t\t}')
 
-        for v in me_vertices:
-            if i == -1:
-                fw('%.6f,%.6f,%.6f' % v.co[:])
-                i = 0
-            else:
-                if i == 7:
-                    fw('\n\t\t')
-                    i = 0
-                fw(',%.6f,%.6f,%.6f' % v.co[:])
-            i += 1
-
         fw('\n\t}')
 
     def write_group(name):
-- 
GitLab