Skip to content

Commit c551b37

Browse files
committed
fix(face): Only remove duplicate vertices when splitting with lines
1 parent e58d6f9 commit c551b37

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ladybug_geometry/geometry3d/face.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1290,7 +1290,7 @@ def split_with_line(self, line, tolerance):
12901290
pt_3ds = [prim_pl.xy_to_xyz(node.pt) for node in cycle]
12911291
new_face = Face3D(pt_3ds, plane=prim_pl)
12921292
try:
1293-
new_face = new_face.remove_colinear_vertices(tolerance)
1293+
new_face = new_face.remove_duplicate_vertices(tolerance)
12941294
split_faces.append(new_face)
12951295
except AssertionError: # degenerate geometry to ignore
12961296
pass
@@ -1355,7 +1355,7 @@ def split_with_polyline(self, polyline, tolerance):
13551355
pt_3ds = [prim_pl.xy_to_xyz(node.pt) for node in cycle]
13561356
new_face = Face3D(pt_3ds, plane=prim_pl)
13571357
try:
1358-
new_face = new_face.remove_colinear_vertices(tolerance)
1358+
new_face = new_face.remove_duplicate_vertices(tolerance)
13591359
split_faces.append(new_face)
13601360
except AssertionError: # degenerate geometry to ignore
13611361
pass
@@ -1422,7 +1422,7 @@ def split_with_lines(self, lines, tolerance):
14221422
pt_3ds = [prim_pl.xy_to_xyz(node.pt) for node in cycle]
14231423
new_face = Face3D(pt_3ds, plane=prim_pl)
14241424
try:
1425-
new_face = new_face.remove_colinear_vertices(tolerance)
1425+
new_face = new_face.remove_duplicate_vertices(tolerance)
14261426
split_faces.append(new_face)
14271427
except AssertionError: # degenerate geometry to ignore
14281428
pass

0 commit comments

Comments
 (0)