• Replying to comment by: vuiceI'm pleased to announce that nodes2python is finished! You

    Yooooo, congrats comrade 👏

    2
    View
  • Replying to comment by: vuicealso GUESS WHAT I GOT IT TO WORK : D

    Let’s gooooo

    1
    View
  • Smol uninteresting update: I have an hour or so to work on this, so rn I’m just racking my brain tryna figure out the best way to structure the Stickfigure and Sticknode classes…

    None of this code is final btw. I’m pretty much just brainstorming at this point. I wanna make these classes as efficient as I can (especially the Sticknode class since there’s gonna be a lot of instances of them)

    8
  • Replying to comment by: vuiceI didnt even know there was a debugger, is that a VS Code th

    https://learn.microsoft.com/en-us/visualstudio/python/debugging-python-in-visual-studio?view=vs-2019

    1
    View
  • Replying to comment by: vuiceI didnt even know there was a debugger, is that a VS Code th

    Any good IDE should have one. I would imagine VS 2019 would have it hidden somewhere,

    but I always thought of the main line Visual Studio as more focused on lower end programming languages like C, C#, etc, so maybe they don’t have one for Python?

    That’d still be kind of weird if it doesn’t have a debugger for Python somewhere.

    1
    View
  • Replying to comment by: Ralph (Developer)there you have it guys stick nodes pc now leave me alone

    Lmao

    0
    View
  • Replying to comment by: vuicei think the issue isnt with the conversion itself, its runni

    Bro, btw, if you’re pushing off learning how to use the debugger like I was, I recommend taking a little time to learn it. It’s really not as complicated as you might think, and it’s sooooo helpful.

    Basically, it lets you step through your code line by line and read what any value is at any point in your program.

    2
    View
  • Replying to comment by: vuicethis is definitely me when attempting to stickfigure like w

    One last thing. I think I messed up the documentation a little with colors. Each byte of the color (A,B,G, and R) may need to be unsigned so they range from 0 to 255 instead of -128 to 127

    1
    View
  • Replying to comment by: vuicethis is definitely me when attempting to stickfigure like w

    Also, what are the allNodeIDs and node_x_Layer properties?

    1
    View
  • Replying to comment by: vuicethis is definitely me when attempting to stickfigure like w

    The e notion for the floats are due to the odd nature of floating points.

    Floating points basically use the binary equivalent of scientific notation, so it’s easy for floating points to represent a really really small number instead of 0.

    For example, in your case representing something like 0.00000000 … 000000069 instead of 0.

    1
    View
  • Replying to comment by: vuicethis is definitely me when attempting to stickfigure like w

    If you’re trying to get a total node count from the file, there isn’t a total node count anywhere in the file.

    The only node counts in the file are the numberOfChildNodes count as the last 4 bytes of every node to know whether it should iterate child nodes or move onto the next sister node.

    1
    View
  • Btw, I didn’t have time to post about it before now. Here’s a screenshot of the first ever stickfigure rendered by Open Nodes:

    Basically, each stickfigure will be composed of a hierarchy of PIXI.Graphics objects to make up each node. The root node of that hierarchy (and by extension all child nodes) will be added to the PIXI.Stage upon initialization of its corresponding Stickfigure object.

    The image above is just a hardcoded PIXI.Graphics hierarchy (just 1 purple rectangle Graphics object), but the next step is to dynamically construct these Graphics objects based on actual node data.

    10
  • Replying to comment by: tankcouldn't u just - copy segment and children - paste - flip

    He’s asking for a feature to automate those steps, which is a perfectly reasonable feature for Open Nodes since the goal of Open Nodes is to cater to powerusers who want to work more efficiently.

    1
    View
  • Replying to comment by: Ralph (Developer)...

    xd

    0
    View
  • Replying to comment by: MannyAnimsPic time These images depict two nodes. They are copied. I

    Yep, definitely possible to implement

    2
    View
  • Load More