Skip to content

Commit e5f3349

Browse files
committed
accidental revert
1 parent 673ccaf commit e5f3349

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/compas_occ/brep/brep.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -231,11 +231,11 @@ def is_surface(self) -> bool:
231231
@property
232232
def points(self) -> list[Point]:
233233
points = []
234-
# seen = []
234+
seen = []
235235
for vertex in self.vertices:
236-
# if any(vertex.is_same(test) for test in seen):
237-
# continue
238-
# seen.append(vertex)
236+
if any(vertex.is_same(test) for test in seen):
237+
continue
238+
seen.append(vertex)
239239
points.append(vertex.point)
240240
return points
241241

0 commit comments

Comments
 (0)