void setup() {
size(400, 400);
background(255);
smooth();
noStroke();
frameRate(30);
}
void draw() {
background(255);
for(int i=0; i<20; i++){
for (int j = 0; j < 20; ++j) {
fill(random(255), random(255), random(255));
ellipse(i*20+10, j*20 + 10, 10, 10);
}
}
}
More than 5 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme