KP size(400,400); background(255); for(int i=0;i<400;i++){ float x = random(0,400); float y = random(0,400); ellipse( x, y, 20, 20 ); } size(400,400); background(255); for(int i=0;i<400;i++){ int x = (int)random(0,400); int y = (int)random(0,400); ellipse( x, y, 20, 20 ); }