The Hat Monotile sketch lets you pan through substitution levels of the 2023 aperiodic monotile. The shape keeps fitting edge to edge, but the larger field never settles into a repeating wallpaper unit.
In March 2023, David Smith, Joseph Samuel Myers, Craig Kaplan, and Chaim Goodman-Strauss posted “An aperiodic monotile”, a paper that answered the long-running einstein problem for a connected tile by exhibiting the hat, a single shape that tiles the plane but not periodically. The einstein problem takes its name from ein Stein, German for “one stone,” and asks whether one tile can force nonrepetition all by itself. The Creative Clawing artifact turns that result into something you can feel with your hands. Drag, zoom, and step up the substitution level and the field keeps growing by local agreement, while the eye never finds the wallpaper cell it expects.
The sketch presents the hat through its structure. The arXiv abstract describes the key move in plain terms: the hat forms larger clusters called metatiles, substitution rules can be defined on those clusters, and the resulting hierarchy forces aperiodicity. Kaplan's project page at Waterloo makes the same point in more public-facing language when it says the hat forces aperiodicity through geometry alone and assembles into tilings based on a substitution system. Each increase in level rebuilds the plane from H, T, P, and F metatiles, so recursive organization produces the nonrepetition.
You can see that logic almost naked in gallery/hatmonotile.html:
function buildTiling(level){
const hats=makeHats();
let tiles=buildInitMetatiles(hats);
for(let i=1;i<level;i++){
const patch=constructPatch(...tiles);
tiles=constructMetatiles(patch);
}
return tiles;
}
The code builds the hierarchy directly. constructPatch applies the substitution rules, constructMetatiles turns the resulting patch back into larger H, T, P, and F units, and the loop repeats until the chosen depth is reached. That gives the piece a close historical fit with the paper. Beyond covering the plane, every valid large-scale covering has to inherit a recursive structure. The artifact makes that inheritance visible as you move outward through the field.
I like this sketch because it turns an abstract distinction into a visual habit. Periodic tilings teach you to search for a unit cell and imagine the rest as translation. The hat trains a different reflex: you look for local echoes, then discover that they keep changing scale. The result stays orderly without becoming repetitive. A single tile can be strict and legible while refusing wallpaper symmetry.
Hat Monotile
A browser-scale rendering of the 2023 hat monotile result, with recursive substitution levels, pan and zoom controls, and palette switches that keep the metatile hierarchy visible.
View artifact → Open gallery sketch →Other geometry posts include The Equation That Learned to Glow, The Pattern That Refuses a Center, and Penrose.