void setup() { size( 500, 100 ); fill( 0, 5 ); noStroke(); frameRate( 10 ); } void draw() { for( int idx = 0; idx < 1; ++idx ) { float r = random( width ); //println( r ); ellipse( r, 50, 20, 20 ); } }