- /
-
10 point star
on 18 Oct 2021
- 5
- 13
- 0
- 0
- 165
[x,y] = cylinder(1,5);
x=x(1,:);
y=y(1,:);
c=[bone(100);flipud(pink(100))];
for i=1:4600
patch(y,x,c(mod(i-1,200)+1,:),'edgecolor','none');
x=-x*0.999;
y=y*0.999;
end
axis equal off;