local function getY( centerx, centery, radius, x ) local origin = math.sqrt( radius^2 - (x - centerx) ^2 ) return (centery + origin), (centery - origin) end
Using this function, you can draw a circle. However, I'm unsure of what to adjust for. I've heard multiply by .66, but if I multiply the entire result, it doesn't start at the center. Ditto for everything else I've tried. Anyone got any ides?












