• Remix
  • Share
  • New Entry

on 14 Oct 2021
  • 18
  • 63
  • 1
  • 0
  • 245
t=0:(2*pi)/1023:2*pi;
r=2+sin(6*t)/2;
theta=t+sin(18*t)/18;
z0=r.*exp(theta*i);
colormap('turbo');
hold on;
for s=1:-0.005:0.01
z=exp(i*0.2*sin(10*s))*z0;
xr=real(z);
yr=imag(z);
patch(s*xr,s*yr,s,'EdgeColor','none');
end
hold off;
axis off;
set(gcf,'Color',[0.1,0,0.05]);
Remix Tree