move


    private function move(ball:animation_ch09_Ball):void
    {
     ball.vy += gravity;
     ball.x += ball.vx;
     ball.y += ball.vy;