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:
authorCampbell Barton <ideasman42@gmail.com>2011-10-05 08:52:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-10-05 08:52:58 +0400
commit360d41a2df8451c6249ebf354c2a2cf2e644d459 (patch)
tree514c77c3278d6c3b6dbcc744e51918b0b00ad07d /io_scene_fbx
parent75e5f56ef262e35a4992a7493ac19a47af3a5635 (diff)
minor change to string formatting.
Diffstat (limited to 'io_scene_fbx')
-rw-r--r--io_scene_fbx/export_fbx.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py
index 3e6a2a99..a56427ea 100644
--- a/io_scene_fbx/export_fbx.py
+++ b/io_scene_fbx/export_fbx.py
@@ -1808,12 +1808,12 @@ def save_single(operator, scene, filepath="",
i = -1
for dv in delta_verts:
if i == -1:
- fw("%g,%g,%g" % dv)
+ fw("%.6f,%.6f,%.6f" % dv)
else:
if i == 4:
fw('\n\t\t\t')
i = 0
- fw(",%g,%g,%g" % dv)
+ fw(",%.6f,%.6f,%.6f" % dv)
i += 1
# all zero, why? - campbell