OSArch Community

Topologic for Dynamo question

  1. D

    Hello, everyone!

    I wonder how to get edges from wire inside python script in dynamo.

    I have tried such variants already in my function, which don't work.

    Thank you!

  2. B

    I have this sort of thing:

    myedges = []
    
    mywire.Edges(None, myedges)
  3. D

    @brunopostle said:

    I have this sort of thing:

    myedges = []
    mywire.Edges(None, myedges)

    Thank you.

    Unfortunately it didn't help me. I have same error: 'list' object is not callable. Not sure why, because my wire is single object and not list of wires.

  4. B

    There is a discord channel where you can ask Topologic questions, but I dont know how to link to it. @topologic ?

  5. D

    @brunopostle Yes, I have tried to find a link, but they all were old. @topologic Could you, please, create a new link?

  6. T

    Hi. The link to the Discord channel is: https://discord.gg/BWp6GdAf

    Looking above it seems the object is a list not a wire. I know you said it is a wire but how about you confirm that? Print it out or return it at the moment before it is giving you trouble.

  7. D

    @topologic

    Thank you!

    I have checked that it wasn't a list, but I decided to move my python script to designscript(code blocks) and everything works as it should.

Login or Register to reply.