//    Instruction Example :      track.key.rotation.set (float,float,float)


        screen.resolution.set (512,384)

        screen.set (BACK)
          pattern.display ("avo\bubble.gif")
        screen.end ()

        @track1=track.create (TRACK_LOOP)
          track.key.set (0)
          track.key.rotation.set (0,0,0)
          track.key.set (1)
          track.key.rotation.set (0,180,180)
          track.key.set (2)
          track.key.rotation.set (90,270,0)
        track.end ()

        mesh.cube.display (CENTER,CENTER,320,200,@track1)

        text.display ("Press a key to exit.",CENTER,350)

        keyboard.wait ()

        script.stop ()