xxxxxxxxxx
52
let px = 30;
function setup() {
createCanvas(px*35, px*35);
noLoop();
noStroke();
for (let i = 0; i < width; i+=px) {
for (let j = 0; j < height; j+=px) {
let c = color(random([
"#09584B", "#006144", "#065235", "#0B5B51", "#0B675F", "#007250", "#0A5D3D", "#0C5B44", "#07544A","#055E63", "#04522E", "#054739","#024232", "#09544A", "#0C7176"]));
fill(c);
rect(i, j, px);
if (random() < 0.45) {
// fill("#FEC2EE");
fill(254, 194, 238, random(5, 65));
// ellipse(i+px, j+px, px*2);
} else if (random() < 0.2) {
// fill("#FEC2EE");
// fill(254, 194, 238, 90);
fill(0, 0, 0, 50);
// ellipse(i+px, j+px, px*2);
} else {
fill(0, 0);
}
if (random() < 0.5) {
if (random() < 0.5) {
arc(i, j, px*2, px*2, 0, HALF_PI);
} else {
arc(i+px, j, px*2, px*2, HALF_PI, PI);
}
} else {
if (random() < 0.5) {
arc(i+px, j+px, px*2, px*2, PI, PI + HALF_PI);
} else {
arc(i, j+px, px*2, px*2, PI + HALF_PI, TWO_PI);
}
}
}
}
// background(0, 66, 70, 150);
}
function draw() {
}