Could you help me in solving this issue. I would like making the point to follow the round sinusoidal curve, instead to turn on a circle. Here is what I wrote:
r = 5 + Sin[20 t];
curves = ParametricPlot[{r Cos[t], r Sin[t]}, {t, 0, 2 Pi}];
Animate[Show[curves, Graphics[{PointSize[Large], Point[{5 Cos[t], 5 Sin[t]}]}]], {t, 0, 2 Pi}]
Could you correct in order to make the point run along the round sinusoidal. Thank you.