Skip to content

Draw_circle

hpgDesigns edited this page Aug 8, 2021 · 1 revision

NOTOC {{-}} This function is part of the function set Drawing shapes

Notation

Description

Draw a circle using brush color/alpha at (x,y) with radius r. If outline is true the circle is not filled in.

Parameters

  • (x,y) indicate the coordinates for the center of the circle.
  • r indicates the radius around the center for the circle.
  • outline indicates whether to only draw the outline (true) or fill the circle (false).

Return Values

none

Example Call

draw_set_color(c_red);
draw_circle(100, 100, 16, false);

This is number 1

Clone this wiki locally