BusyCircleA10.mws
| > | restart; |
| > | with(plots, animate); |
| > | #Parametric plots |
| > | x := t -> 5*cos(t) - cos(5*t); |
| > | y := t -> 5*sin(t) - sin(5*t); |
| > | plot(y, colour=BLUE); |
| > | plot([x, y, 0..2*Pi]); |
| > | animate(plot, [[x, y, 0..T]], T=0..2*Pi); |
| > |
| > |
| > |