Triral

Triangle + spiral, more number editing.

Log in to post a comment.

const turtle = new Turtle();
function walk(i) {
    turtle.forward(i*2)
    turtle.right(240 + i*.03);
    return i < 600;
}