Skip to content

Commit

Permalink
accidental revert
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Jan 16, 2025
1 parent 673ccaf commit e5f3349
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/compas_occ/brep/brep.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,11 +231,11 @@ def is_surface(self) -> bool:
@property
def points(self) -> list[Point]:
points = []
# seen = []
seen = []
for vertex in self.vertices:
# if any(vertex.is_same(test) for test in seen):
# continue
# seen.append(vertex)
if any(vertex.is_same(test) for test in seen):
continue
seen.append(vertex)
points.append(vertex.point)
return points

Expand Down

0 comments on commit e5f3349

Please sign in to comment.