circle ( x y r -- )
publication: 23 mars 2023 / mis à jour 23 mars 2023
vocabulaire: web
Trace un cercle centré en x y, de rayon r.
Exemple:
web definitions
JSWORD: arc { x y r a0 ax div }
context.ctx.arc(x, y, r, (Math.PI * 2 * a0) / div, (Math.PI * 2 * ax) / div);
~
: circle { x y r }
x y r 0 360 360 arc
;
forth definitions
Legal: site web personnel sans commerce / personal site without seling
