xxxxxxxxxx
103
var tileCount = 5;
var actRandomSeed = 0;
function setup() {
createCanvas(800, 800);
}
function draw() {
clear();
let shadesBG = ["#70001e", "#30465c", "#ffabb8", "#f5ead0", "#4d877a", "#bf8217", "#ffffff"];
let shadeBG = random(shadesBG);
BG = color(shadeBG);
background(BG);
randomSeed(actRandomSeed);
for (var gridY = 0; gridY < tileCount; gridY++) {
for (var gridX = 0; gridX < tileCount; gridX++) {
let shades = ["#5F6648", "#BB051F", "#A7132B", "#DFB65F", "#1E1108", "#ECCC9E", "#CCD9B1", "#6A859E" ];
// green, red, maroon, yellow, brown, tan, light green, blue
let shade = random(shades);
cS = color(shade);
fill(cS);
stroke(cS);
strokeWeight(2);
var posX = width / tileCount * gridX;
var posY = height / tileCount * gridY;
var s = int(random(0, 5));
if (s == 0) {
noStroke();
fill("#ffffff");
rect(posX, posY, posX + width / tileCount);
fill(cS);
for (x=posX+6; x<posX + width / tileCount; x=x+10){
for (y=posY+6; y<posY + height / tileCount; y=y+10){
noStroke();
ellipse(x, y, 6);
}
}
}
if (s == 1) {
noStroke();
triangle(posX + width / tileCount, posY, posX + width / tileCount, posY + height / tileCount, posX, posY + height / tileCount);
let shade = random(shades);
cS = color(shade);
fill(cS);
triangle(posX, posY + height / tileCount, posX, posY, posX + width / tileCount, posY);
}
if (s == 2) {
for (y=posY+2; y<posY + height / tileCount; y=y+4){
line(posX, y, posX + width / tileCount,y);
}
}
if (s == 3) {
for (x=posX+2; x<posX + width / tileCount; x=x+4){
line(x, posY, x,posY + height / tileCount);
}
}
if (s == 4) {
noStroke();
rect(posX, posY, posX + width / tileCount, (posY + height / tileCount)/2);
let shade1 = random(shades);
cS1 = color(shade1);
fill(cS1);
rect(posX, (posY + height / tileCount)/2, (posX + width / tileCount)/4, posY + height / tileCount/2);
let shade2 = random(shades);
cS2 = color(shade2);
fill(cS2);
rect((posX + width / tileCount)/2, (posY + height / tileCount)/2, (posX + width / tileCount)/4, posY + height / tileCount/2);
}
}
}
}
function mouseReleased() {
actRandomSeed = random(100000);
}