The Many Stars in One

This design is super basic, but the thing that makes this design super cool is that it is many stars overlapping each other. if you look closely, you may see part of the spiral in darker gray that looks like a few stars overlapping each other.

Log in to post a comment.

// You can find the Turtle API reference here: https://turtletoy.net/syntax
Canvas.setpenopacity(1);

// Global code will be evaluated once.
const turtle = new Turtle();
turtle.penup();
turtle.goto(-50,-20);
turtle.pendown();

// The walk function will be called until it returns false.
function walk(i) {
    turtle.forward(100);
    turtle.right(144.75);
    return i < 125;
}