import megamu.shapetween.*;
Tween ani;
void setup(){
ani = new Tween(this, 50, Tween.FRAMES);
ani.repeat();
ani.start();
}
void draw(){
background(255);
ellipse(ani.time()*width, ani.position()*height, 4, 4);
}
void mousePressed(){
ani.noRepeat();
}
repeat()