• Remix
  • Share
  • New Entry

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