draw_circle(x,y,r,outline)

x = The x position where the center of the circle will be drawn.

y = The y position where the center of the circle will be drawn.

r = The radius that the circle will be drawn to.

outline = Whether or not the circle will be drawn as an outline. If it is true, the circle will be an outline of a circle, if it is false, it will be a full circle.

 

Example:

draw_circle(83,128,64,false);

 

Draws a circle where its center will be in the position x,y, with the radius s. It will either be drawn as an outline (if outline was true) or as a full solid circle (if outline was false).

 

draw_circle

 

esh_corp11 - Revision #1