Draw an arc

arc angle radius

Draws an arc with angle and radius. The arc is starting at the turtle heading and it is drawn clockwise. Use angle value of 360 to draw a circle.

Example:

setps 4
repeat 18 [
  setpc 50 * repcount
  arc 20 * repcount 4 * repcount
]

Output: drawing in the graphics output window.

See also:

Table of Content