- /
-
Ball
on 18 Oct 2021
- 2
- 5
- 0
- 0
- 174
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',5)
hold off
drawnow
end