
Plotting the Square Root
So the issue with this was that it was upside down. This is due to GD--and just about every other image creation and manipulation program--considering the top left corner to be (0,0). X corresponds to the width and Y corresponds to the height. We fix this by mapping the Y to the $height - ($x ** 2). The next thing that needed overcome was widening the view of these points so it seems "zoomed in." This was accomplished by multiplying each point in @x_point by 10 after calculating the @y_point from it.
Before multiplying x by 10


I was trying to debug this, which generated some interesting pictures. I started by making sure the x coordinates were only going to my mapped origin (0, $height). This made a feather-like fractal I suppose. The next picture is an attempt which always plotted the same y coordinate but changed x coordinates. These were still being sorted in the wrong order. After that, I properly ordered the keys. And then the final product was me allowing the y coordinate to change too.






