Skip to content

Commit

Permalink
toponaming bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
kbwbe committed Dec 19, 2018
1 parent d7a3542 commit 78695b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion a2p_topomapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def filterShapeObs(self,_list):
lst = []
for ob in _list:
if hasattr(ob,"Shape"):
if len(ob.Shape.Faces) > 0:
if len(ob.Shape.Faces) > 0 and len(ob.Shape.Vertexes) > 0:
lst.append(ob)
S = set(lst)
lst = []
Expand Down

0 comments on commit 78695b5

Please sign in to comment.