xxxxxxxxxx
// wont work online, will work on processing
void setup() {
size(400, 800);
noStroke();
// try other blend modes and see what happens!
blendMode(ADD);
background(0);
frameRate(5);
}
void draw() {
//background(255);
for (int circCount = 0; circCount<10; circCount++) {
float x = random(width);
float y = random(height);
fill( random(255), random(255), random(255), 30);
ellipse(x, y, 100, 100);
}
}