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:
authormeta-androcto <meta.androcto1@gmail.com>2019-12-06 04:14:56 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-12-06 04:14:56 +0300
commit3003a5010fbb4f7ede2cfbd6c77585c73202ad5b (patch)
treed846b7f0bbc545e7453c0403295593ebbba0b5d9 /mesh_tissue
parent2f425cc128b8b709cc1ebf2c96ad372778f4aeda (diff)
Tissue: fix unreported duel mesh error.
Diffstat (limited to 'mesh_tissue')
-rw-r--r--mesh_tissue/dual_mesh.py2
1 files changed, 1 insertions, 1 deletions
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