• Remix
  • Share
  • New Entry

on 9 Oct 2021
  • 12
  • 80
  • 0
  • 0
  • 238
t = linspace(0, 2*pi);
rng(51)
for k = 5:15
[x,y] = pol2cart(t,sin(k*t)+1.5);
i = randi([1 15]);
plot([10 k],[-5 i],'g',LineWidth=4)
hold on
plot(x+k,y+i, LineWidth=4)
end
patch([6 14 14 13 12 8 7 6],-[5 5 6 6 12 12 6 6],[.9 .6 .5])
axis equal
axis off
Remix Tree