Tween::start()
Description
Begins the tween, starting with the time at 0. If the tween is playing in reverse, this will start with the time at 1.
Example
import megamu.shapetween.*;

Tween ani;
void setup(){
  ani = new Tween(this, 2);
}

void draw(){
  background(255);
  ellipse(ani.time()*width, ani.position()*height, 4, 4);
}

void mousePressed(){
  ani.start();
}
Syntax
start()
Related
end()
pause()
resume()