Skip to content

Commit 9bc3a40

Browse files
committed
fix(polyface): Ensure Faces align with input segs in from_offset_face
1 parent 0adfe18 commit 9bc3a40

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

ladybug_geometry/geometry2d/mesh.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def centroid(self):
299299
@property
300300
def face_edges(self):
301301
"""List of polylines with one Polyline2D for each face.
302-
302+
303303
This is faster to compute compared to the edges and results in effectively
304304
the same type of wireframe visualization.
305305
"""

ladybug_geometry/geometry3d/polyface.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -247,15 +247,17 @@ def from_offset_face(cls, face, offset):
247247
if face.has_holes:
248248
_st_i = len(verts)
249249
for i, hole in enumerate(face.hole_polygon2d):
250-
hole_verts = face._holes[i] if hole.is_clockwise else \
251-
tuple(reversed(face._holes[i]))
250+
is_cc = hole.is_clockwise
251+
h_pts = face._holes[i] if is_cc else tuple(reversed(face._holes[i]))
252252
verts_2, face_ind_extru_2, edge_indices_2 = \
253-
Polyface3D._verts_faces_edges_from_boundary(
254-
hole_verts, extru_vec, _st_i)
253+
Polyface3D._verts_faces_edges_from_boundary(h_pts, extru_vec, _st_i)
254+
if not is_cc:
255+
face_ind_extru_2 = list(reversed(face_ind_extru_2))
256+
face_ind_extru_2.append(face_ind_extru_2.pop(0))
255257
verts.extend(verts_2)
256258
face_ind_extru.extend(face_ind_extru_2)
257259
edge_indices.extend(edge_indices_2)
258-
_st_i += len(hole_verts * 2)
260+
_st_i += len(h_pts * 2)
259261
face_ind_extru = [[fc] for fc in face_ind_extru]
260262
# compute the final faces (accounting for top and bottom)
261263
if not face.has_holes:

0 commit comments

Comments
 (0)