Release
I liked how Inertia turned out, so I decided to make a triangular grid and see about deforming it in some interesting way. I didn't want to do twisting again, but after an hour or so I realized I was essentially re-creating Dave Whyte's dot line wave, so I decided to go in a different direction.
Sorry that the definition of dots
is so gross...
DynamicModule[{cols, dots, xmax = 13, ymax = 13},
cols = GrayLevel /@ {.95, .2};
Manipulate[
dots = Table[(1 -
1/2 Total[
Flatten[Table[(-1)^((i + j + 8)/8) Haversine[
t - Pi Norm[{x, y} - {i, j}]/15], {i, {-4, 4}}, {j, {-4, 4}}], 1]])
{Sqrt[3] x + (-1)^y Sqrt[3]/4 - Sqrt[3]/4, 3 y/2},
{x, -xmax, xmax}, {y, -ymax, ymax}];
Graphics[{cols[[1]], Thickness[.003], CapForm["Round"],
Table[Line[dots[[i]]], {i, 1, Length[dots]}],
Table[Line[Transpose[dots][[i]]], {i, 1, Length[Transpose[dots]]}],
Table[Line[{dots[[i + 1, j + 1]], dots[[i, j]],
dots[[i + 1, j - 1]]}], {i, 1, Length[dots] - 1}, {j, 2, Length[Transpose[dots]], 2}]},
ImageSize -> 540, PlotRange -> 35, Background -> cols[[-1]]],
{t, 0., 2 Pi}]
]