C-Turtle icon indicating copy to clipboard operation
C-Turtle copied to clipboard

The "circle" function of Turtle is inconsistent with Python.

Open Morphlng opened this issue 2 years ago • 0 comments

In Python, the circle function could do two kinds of jobs.

  1. draw a full circle with given radius. e.g. turtle.circle(100)
  2. draw an arc with given radius and extent. e.g. turtle.circle(100, 135)

It seems like C-Turtle's circle function can only do the first one. Is there any way to achieve the second intention?

Morphlng avatar Apr 29 '22 07:04 Morphlng