This page contains large animations.

Download the Maple Worksheet

 

For reference, here is the finished code for the animation:

> with(plottools):with(plots):

> c:=circle([0, 0], 1):

> l:=display(seq(line([0, 0], [cos(t/100), sin(t/100)], color=red), t=0..200*evalf(Pi, 3)), insequence=true):

> display(c, l, scaling=constrained);

Solution:

> t:=display(seq(textplot([0.5, 0.5, convert(evalf(t/100), string)]), t=0..200*evalf(Pi, 3)), insequence=true):

> display(c, l, t, scaling=constrained);

[Maple Plot]

 

Solution:

> with(plots):with(plottools):

> txt:=display(seq(textplot([0.5, 0.5, convert(evalf(t/100, 3), string)]), t=0..evalf(exp(1), 4)*100), insequence=true):

> l:=line([0, 0.5], [0.5, 0]):

> display(txt, l, display(seq(plot(x*t/100, x=-0.5..0.75, -0.5..0.5), t=0..evalf(exp(1), 4)*100), insequence=true), scaling=constrained);

[Maple Plot]

 

Close Window