• Remix
  • Share
  • New Entry

  • Adam Danz

  • /
  • Lissajous Encore with tails + tiledlayout spacing (remix)

on 10 Nov 2023
  • 10
  • 44
  • 0
  • 2
  • 322
drawframe(1);
Remix of @Ned Gulley's Lissajous Encore
function drawframe(f)
t = linspace(0,2*pi);
n = 4;
tiledlayout(n,n,'TileSpacing','none','Padding','tight');
for c = 1:n
for r = 1:n
nexttile
plot(cos(r*t),sin(c*t),LineWidth=2)
hold on
t1 = (f:.5:f+3)/48*(2*pi);
scatter(cos(r*t1),sin(c*t1),16,"red","o","filled",...
"AlphaData",(1:7)./7,"MarkerFaceAlpha","flat")
axis padded off
end
end
set(gcf,Color=[1 1 0.85])
end
Animation
Remix Tree