Some circles
Log in to post a comment.
Canvas.setpenopacity(.75); const turtle = new Turtle(); turtle.home(); turtle.pendown(); function walk() { circles(); } function circles() { for(i=0; i<72; i++) { turtle.circle(50); turtle.right(5); } }
t
walk
Warning: depending on the total number of frames, the export can take several minutes!