• Remix
  • Share
  • New Entry

on 25 Oct 2022
  • 8
  • 19
  • 0
  • 0
  • 257
figure("Color","#88BB22")
t=0:.02:2;
x=16*sinpi(t).^3;
f=@cospi;
y=14*f(t)-5*f(2*t)-2*f(3*t)-f(4*t);
hold on
axis equal off
for i=0:.002:1
%tip for remixes: change Color
C=([(1-i)^2,i^2,i/2]); % Color
for j = 1:2
C = flip(C);
for k = 1:3
C=circshift(C,1);
plot([x;x;y;-y]'*i+k*40,[y;-y;x;x]'*i+j*40,Col = C)
end
end
end
Remix Tree