Twisted hexagon ⬡

Single stroke hexgon from plotterfiles.com/%40ms…3c-945c-95168e3af224

Log in to post a comment.

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

// Global code will be evaluated once.
const turtle = new Turtle();

// The walk function will be called until it returns false.
function walk(i) {
    turtle.forward(i/4);
    turtle.right(60.15);
    return i < 395;
}