- /
-
Spooky triangles
on 4 Oct 2021
- 9
- 27
- 2
- 0
- 165
theta = linspace(0,360,4);
c=flipud(bone(20));
for i=20:-1:1
patch(i*sind(theta+18*i),i*cosd(theta+18*i),c(i,:),'edgecolor','none');
end
axis equal off; set(gcf,'color','w');