//
//// Simple dynamic sketch:  follow the mouse.

//// SETUP:  size & modes
void setup() 
{
  size( 600, 400 );
  smooth();
}

//// NEXT FRAME:  scene, action (show & move), show
void draw() 
{
  background( 150,220,250 );
  fill( 255,0,255 );
  ellipse( mouseX,mouseY, 30,50 );
  text( "Move the mouse", 50,50 );
}

//