Posted 28 September 2013 - 08:04 AM
How would I go about removing this?
Code:
Thank you in advance. :)/>
Code:
function circle(cx,cy,radius,precision)
precision = precision or 1
for i=0,359,precision do
local x = cx + radius*math.cos(i)
local y = cy + radius*math.sin(i) / 1.5
pixel(x,y)
end
end
Thank you in advance. :)/>