// Setup the Processing Canvas void setup(){ size(1280, 720); frameRate(1); background(#FBFBFB); } // Main draw loop void draw(){ for(int i = 0; i < 1000; i = i + 1) ellipse(random(width), random(height), 10, 10); //noLoop(); }