Olympic Rings (Simple)

Daniel Pereira
on 28 Oct 2021
- 6
- 44
- 0
- 0
- 146
[x,y]=cylinder(2.9,1e4);
x=x(1,:);
y=y(1,:);
hold on;
c='bykgr';
for i=0:4
plot(x+i*3.25,y-3*mod(i,2),'linew',6,'color',c(i+1));
end
axis equal off;
xlim([-4 17]);