- /
-
Cathedral
on 5 Oct 2022
- 6
- 27
- 0
- 0
- 208
figure;
mp=1000;
ag=0:2*pi/mp:2*pi;
xV=cos(ag);
yV=sin(ag);
tm=451;
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,:));hold on
end
axis square
axis off