[Bf-extensions-cvs] [3003a501] master: Tissue: fix unreported duel mesh error.

meta-androcto noreply at git.blender.org
Fri Dec 6 02:15:25 CET 2019


Commit: 3003a5010fbb4f7ede2cfbd6c77585c73202ad5b
Author: meta-androcto
Date:   Fri Dec 6 12:14:56 2019 +1100
Branches: master
https://developer.blender.org/rBA3003a5010fbb4f7ede2cfbd6c77585c73202ad5b

Tissue: fix unreported duel mesh error.

===================================================================

M	mesh_tissue/dual_mesh.py

===================================================================

diff --git a/mesh_tissue/dual_mesh.py b/mesh_tissue/dual_mesh.py
index 63735c72..db24f896 100644
--- a/mesh_tissue/dual_mesh.py
+++ b/mesh_tissue/dual_mesh.py
@@ -93,7 +93,7 @@ class dual_mesh_tessellated(Operator):
         except:
             me = bpy.data.meshes.new("Dual-Mesh")  # add a new mesh
             me.from_pydata(verts, edges, faces)
-            me.update(calc_edges=True, calc_edges_loose=True, calc_loop_triangles=True)
+            me.update(calc_edges=True, calc_edges_loose=True)
             if self.source_faces == 'QUAD': n_seams = 8
             else: n_seams = 6
             for i in range(n_seams): me.edges[i].use_seam = True



More information about the Bf-extensions-cvs mailing list