• Remix
  • Share
  • New Entry

on 13 Nov 2023
  • 42
  • 73
  • 1
  • 3
  • 283
drawframe(1);
function drawframe(f)
c=(sqrt(5)+1)/2;
d=2*pi/c;
alpha = interp1([0 48],[0 48*2*pi/12],f);
theta = (1:600)*d;
r = sqrt(theta);
theta = theta + alpha;
x = r.*cos(theta);
y = r.*sin(theta);
sz = 30*(1-(1:numel(x))/numel(x)) + 1;
clr = sz;
scatter(x,y,sz,clr,"filled")
axis equal off
axis(45*[-1 1 -1 1])
set(gcf,Color=0.3*[1 1 1])
end
Animation
Remix Tree