• Remix
  • Share
  • New Entry

on 14 Oct 2021
  • 2
  • 13
  • 0
  • 0
  • 245
plot([-1 0],[-1 0],'w');
set([gcf gca],'color','k');
hold on
C=hsv(120);
for n=1:100
a=n/5+[0 1];
x=[0 2*cosd(a)];
y=[0 2*sind(a)];
P(n)=patch(x,y,C(n,:));
end
plot([-1 1],[-2 2],'color',0.5*[1 1 1]);
set(P,'edgecolor','none');
axis equal off
xlim([-1 1]);
ylim([-1 1]);
Remix Tree