- /
-
Rubber band ball
on 19 Oct 2021
- 12
- 65
- 0
- 0
- 126
% This is merely a remix of Stewart Thomas's "Putting the X in Xmas"
% but in polar coordinates, with a range of [0,2pi], and with color.
polaraxes(pos=[0 0 1 1])
hold on
for i=1:1200
p=2*pi*rand();
q=2*pi*rand();
polarplot([p,q],[1,1],Color=rand(1,3),LineW=1);
end
axis off