Alright I don't often make posts about my code unless something funky happens. This is one of those times. I'm working on something called an L-system, which is a method of modeling plants using fractals. Fractals are by their very nature recursive, so you have to be very careful about how you define start and stop points, otherwise you end up with the algorithm constantly building upon itself and calling itself in an infinite loop of bullshit. For example... This is a properly working fractal tree: [hider=Working Fractal Tree] [img]https://i.gyazo.com/1663acf8df3c7e23e98770a43334ed39.png[/img][/hider] (ignore the fact that everything is at 90degree angles, I set it like that to test something) And if you fuck up your fractal's ending conditions, you end up with something like this: [hider=My Fractal is the fuckus] [img]https://i.gyazo.com/359373c64c2187f7f7968517ec52cc2d.png[/img] [/hider] I'm honestly wondering if I should fix it, or just submit it as an abstract art project.