Skip to content

Commit f4191ab

Browse files
chriswmackeyChris Mackey
authored andcommitted
fix(mesh): Remove the generation of ShadeMesh wireframe
1 parent 254ba22 commit f4191ab

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

honeybee_display/model.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -460,10 +460,6 @@ def _process_wireframe(face3d, wireframe, line_width=1):
460460
for shd in model.outdoor_shades:
461461
lw = 2 if shd.is_detached else 1
462462
_process_wireframe(shd.geometry, wireframe, lw)
463-
for shd_m in model.shade_meshes:
464-
lw = 2 if shd_m.is_detached else 1
465-
for seg in shd_m.geometry.face_edges:
466-
wireframe.append(DisplayPolyline3D(seg, line_width=lw))
467463

468464
# build the VisualizationSet and return it
469465
if len(wireframe) == 0:

0 commit comments

Comments
 (0)