star

hairy star

Log in to post a comment.

Canvas.setpenopacity(1);

const turtle = new Turtle();
let x, y;

function walk(i) {
    x = -100+200*Math.random();
    y = -100+200*Math.random();
    turtle.penup();
    turtle.goto(x,y);
    turtle.seth(x*y);
    turtle.pendown();
    turtle.forward(2.61);
    return i < 54321;
}