• Remix
  • Share
  • New Entry

on 9 Oct 2021
  • 49
  • 52
  • 3
  • 0
  • 245
p=250;
rng(p)
c=@(r,t)r.*cos(t);
s=@(r,t)r.*sin(t);
t=linspace(0,2*pi,p);
r=sqrt(abs(s(2,5*t)));
x=c(r,t);
y=s(r,t);
m=c(.2,t);
n=s(.2,t);
v=15;
hold on
g=[hot(3*p)];
for i=randperm(p*3)
u=rand(2);
fill(x+u(1)*v,y+u(2)*v,g(i,:))
fill(m+u(1)*v,n+u(2)*v,'y')
end
axis equal off
Remix Tree
Load full remix tree