• Remix
  • Share
  • New Entry

on 5 Oct 2022
  • 4
  • 31
  • 2
  • 0
  • 263
figure;
mp=60;
ag=0:2*pi/mp:2*pi;
xV=sin(ag);
yV=cos(ag);
for tm=2:36+1
subplot(6,6,tm-1)
for i=0:mp
ptO=[xV(mod(i,mp)+1);yV(mod(i,mp)+1)];
rm=mod(i*tm,mp);
pt=[xV(rm+1);yV(rm+1)];
ptsD=[ptO,pt];
plot(ptsD(1,:),ptsD(2,:),'b');hold on
end
axis([-0.8 .8 -.7 .7])
axis off
end
colormap autumn
Image
Remix Tree