lepoulsdumonde.com is one of the many independent Mastodon servers you can use to participate in the fediverse.
Small french Mastodon instance for friends, family and useful bots

Administered by:

Server stats:

53
active users

#tilingtuesday

16 posts13 participants0 posts today

```
library(tidyverse)
library(interp)
x = c(runif(500), 0,0,1,1)
y = c(runif(500), 0,1,0,1)
triangles(tri.mesh(x = x,y = y)) |>
as_tibble() |>
mutate(i=1:n()) |>
rowwise() |>
mutate(tri = list(
tibble(x=x[c(node1,node2,node3,node1)],
y=y[c(node1,node2,node3,node1)]))) |>
unnest('tri') |>
ggplot() +
geom_polygon(aes(x=x,y=y,group=i,fill=i), show.legend=FALSE) +
scale_fill_viridis_c(option='F') +
theme_void()
```

There are 12 ways to replace two of the cells of an L tetromino with diagonal bars of opposite orientations. They form a unique 6×6 square tiling with a single cycle of overlapping perpendicular bars up to the symmetries of the square and swapping the bar orientations.

There are 18 hexominoes that can be traversed with orthogonal moves without revisiting cells. This tiling has a closed tour, where all of the cells in each hexomino are visited in an uninterrupted sequence. (I have a blog post in the works about this stuff, but it's not quite done, and Tuesday very nearly is.)