- /
-
Spring Ball
on 18 Oct 2021
- 1
- 30
- 1
- 0
- 175
t=linspace(0,6*pi,100)
x=cos(t)
y=2*sin(t)
z=2*t
for i=1:length(x)
plot3(x,y,z,'Color','k','Linewidth',1)
hold on
axis off
plot3(x(i),y(i),z(i),'Or','Markersize',10)
hold off
drawnow
end