xxxxxxxxxx
17
class Pixel {
constructor(x, y, r, c) {
this.x = x;
this.y = y;
this.r = random(r);
this.c = c;
blendMode(ADD);
}
display(n) {
noStroke();
fill(this.c);
rect(this.x, this.y, this.r * 4, this.r / 2);
}
}