dadandroid
(DavidAndresLeon)
1
hi @stevebaer. I’m not able to iterate throught the brepedges
of an brepedgelist
in rhino3dm.py.
The following simple code produces an None
:
for e in brep.Edges:
print(e)
I suppose hat not been implemented yet? Would it be possible to?
1 Like
stevebaer
(Steve Baer)
2
It should be implemented, but it doesn’t look like it is iterable yet
What do you get if you go with
for i in range(len(brep.Edges)):
e = brep.Edges[i]
print (e)
2 Likes
dadandroid
(DavidAndresLeon)
3
that works! now I know where to look. Thanks @stevebaer!