
You next tell the computer where you want the object to
go.  This can be done in two ways,

               MOVETO (1000,2000,3000)
or             MOVE (10,0,20)

The first method move the object to a set position
(X,Y,Z), whilst the second method moves the object a
certain distance in (X,Y,Z) direction and gives a smooth
gliding animation if used with the LOOP or START and
RESTART commands.

     If you want your animation to go on for ever, the
START and RESTART commands are to be used.
     
     Our animation so far concludes of,

               INCLUDE (2)
               START
               MOVE (10,0,20)
               RESTART

     At the moment, our animation is useless because it
has not been triggered by anything to start it.  To do
this, click on the icon with the tick on it to save and