Rhino3dm edge list not implemented?

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

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

that works! now I know where to look. Thanks @stevebaer!