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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-03-16 15:03:49 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-03-16 15:03:49 +0300
commit96e292866cc0a1209f974743cbf25d2b0876ce6e (patch)
tree07c8b5a84f3b9b18a7290439c09a24501a296bf1 /io_scene_x3d
parent2b3c3ff41bf65c252e4777d87eb5dadb8694ffb2 (diff)
Cleanup: forgot to remove some debug prints.
Diffstat (limited to 'io_scene_x3d')
-rw-r--r--io_scene_x3d/export_x3d.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/io_scene_x3d/export_x3d.py b/io_scene_x3d/export_x3d.py
index 88ac5ed2..7ab832d6 100644
--- a/io_scene_x3d/export_x3d.py
+++ b/io_scene_x3d/export_x3d.py
@@ -747,7 +747,6 @@ def export(file,
temp_tri = [None] * 3
for pidx in polygons_group:
for ltri in polygons_to_loop_triangles_indices[pidx]:
- print(pidx, ltri.vertices[:])
for tri_vidx, (lidx, vidx) in enumerate(zip(ltri.loops, ltri.vertices)):
key = vertex_key(lidx)
vh = vertex_hash[vidx]
@@ -759,7 +758,6 @@ def export(file,
vert_tri_list.append(x3d_v)
totvert += 1
temp_tri[tri_vidx] = x3d_v
- print(temp_tri)
face_tri_list[totface][:] = temp_tri[:]
totface += 1