Skip to content

Commit 8136c3d

Browse files
fix: Compact mesh face in the conversion from DFFace to Rhino.Geometry.Mesh
1 parent 544aab8 commit 8136c3d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/gh/diffCheck/diffCheck/df_geometries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def to_mesh(self):
241241
for mesh_part in mesh_parts:
242242
mesh.Append(mesh_part)
243243
mesh.Faces.ConvertQuadsToTriangles()
244-
# mesh.Compact()
244+
mesh.Compact()
245245

246246
return mesh
247247

0 commit comments

Comments
 (0)