illegal radius

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

illegal radius

dmoeller
I am making a Breakout mock game for this project but when I try to draw a circle on the screen I get "illegal radius" in the VM emulator.
Reply | Threaded
Open this post in threaded view
|

Re: illegal radius

cadet1620
Administrator
dmoeller wrote
I am making a Breakout mock game for this project but when I try to draw a circle on the screen I get "illegal radius" in the VM emulator.
This error means that your circle does not fit completely on the screen. Limits are:
    0 <= x-r, x+r <= 511
    0 <= y-r, y+r <= 255

--Mark