I'm trying to animate some curves that wrap around a cylinder. OK so far:
Animate[ParametricPlot3D[{{Cos[\[Alpha] t], Sin[\[Alpha] t],
Sqrt[1 - \[Alpha]^2] t}, {Cos[\[Alpha] t],
Sin[\[Alpha] t], -Sqrt[1 - \[Alpha]^2] t}}, {\[Alpha], -1, 1},
PlotRange -> {{-1, 1}, {-1, 1}, {-2 \[Pi], 2 \[Pi]}}], {t, 0,
2 \[Pi]}, AnimationRunning -> False]
But I'm struggling to incorporate the cylinder itself:
Graphics3D[Cylinder[{{0, 0, -2 \[Pi]}, {0, 0, 2 \[Pi]}}, 1]]
You can probably see the problem: the curves run around an invisible cylinder. I'd be much happier if I could see it! I've tried to squeeze the cylinder in in a few different ways (putting it into the Animate[ParametricPlot3D[...]] in different places, and using Epilog), but no luck. Any suggestions?



