- /
-
Rolled Sheet
on 5 Oct 2022
- 4
- 26
- 0
- 4
- 172
t = 0:pi/500:pi;
hold on;
for i = 10:0.001:11.3
x = sin(t).*cos(i*t);
y = sin(t).*sin(i*t);
z = cos(t);
x = x(z<0);
y = y(z<0);
k = (i-10)/1.31;
plot(x,y,'Color',[k,k,k]);
end
hold off;
axis off;