• Remix
  • Share
  • New Entry

on 4 Oct 2021
  • 1
  • 198
  • 1
  • 0
  • 199
N=2*10^5;
v=zeros(N,2);
a=5;
t=linspace(0,2*pi,a+1);
c=[cos(t);sin(t)]';
p=[0,0];
lc=1;
for i=1:N
idx=randi(a);
s=c(idx,:);
p=(p+s)/2.6;
v(i,:)=p;
end
plot(v(:,1),v(:,2),'.',markersize=1)
xlim([-.6,.6])
ylim([-.6,.6])
axis off
Remix Tree
Load full remix tree