Skip to content

Commit 8d83ddb

Browse files
committed
fix(face): Fix bug in coplanar_union_all
1 parent e99f3db commit 8d83ddb

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

ladybug_geometry/geometry2d/polyline.py

+2
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,8 @@ def join_segments(segments, tolerance):
362362
joined segments.
363363
"""
364364
# group the vertices that make up polylines
365+
if len(segments) <= 1:
366+
return segments
365367
grouped_verts = _group_vertices(segments, tolerance)
366368

367369
# create the Polyline2D and LineSegment2D objects

ladybug_geometry/geometry3d/face.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2459,7 +2459,7 @@ def coplanar_union_all(faces, tolerance, angle_tolerance):
24592459
all_poly = [faces[0].boundary_polygon2d]
24602460
if faces[0].has_holes:
24612461
for hole in faces[0].hole_polygon2d:
2462-
all_poly.extend(hole)
2462+
all_poly.append(hole)
24632463
hole_decoder.append(True)
24642464
for of in faces[1:]:
24652465
of_poly = Polygon2D(tuple(prim_pl.xyz_to_xy(pt) for pt in of.boundary))
@@ -2468,7 +2468,7 @@ def coplanar_union_all(faces, tolerance, angle_tolerance):
24682468
if of.has_holes:
24692469
for hole in of.holes:
24702470
h_poly = Polygon2D(tuple(prim_pl.xyz_to_xy(pt) for pt in hole))
2471-
all_poly.extend(h_poly)
2471+
all_poly.append(h_poly)
24722472
hole_decoder.append(True)
24732473
# snap the polygons to one another to avoid tolerance issues
24742474
try:

ladybug_geometry/geometry3d/polyline.py

+2
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,8 @@ def join_segments(segments, tolerance):
292292
joined segments.
293293
"""
294294
# group the vertices that make up polylines
295+
if len(segments) <= 1:
296+
return segments
295297
grouped_verts = _group_vertices(segments, tolerance)
296298
# create the Polyline3D and LineSegment3D objects
297299
return Polyline3D._grouped_verts_to_objs(grouped_verts)

0 commit comments

Comments
 (0)