• Remix
  • Share
  • New Entry

on 10 Oct 2021
  • 11
  • 51
  • 1
  • 0
  • 260
figure(Color='k');
p=@(d,l,w)polarplot(d,l,LineWidth=w);
p(10*eye(50),'-.w',.1);
grid off;axis off;hold on
p(12*eye(30),'--w',.1);
p(14*eye(20),'-w',.1);
for i=5:12
s=30+10*i;
m=i*tan(5*eye(s));
p(m,'.w',.1);
t=randi([1,360],1,1);
polarplot(t*ones(s,s),m,'-ow','LineWidth',1.5);
end
Remix Tree