- /
-
Geometric Design
on 29 Oct 2021
- 27
- 19
- 2
- 0
- 227
t=0:97.5:4680;
r=1;
for i=1:2
patch('x',r*cosd(t),'y',r*sind(t),'edgecolor','r','linewidth',1,'facecolor','green','edgealpha',0.5);
hold on;
plot(r*cosd(t),r*sind(t),'.r','markersize',15-i^2);
r=r*0.55;
end
axis equal off;
set(gcf,'color','k');