xxxxxxxxxx
62
var tc = 10;
var actRandomSeed = 0;
function setup() {
createCanvas(700, 700);
//noStroke();
strokeWeight(10)
}
function draw() {
clear();
background("#F8EACF");
randomSeed(actRandomSeed);
tileCount = tc;
for (var gridY = 0; gridY < tileCount; gridY++) {
for (var gridX = 0; gridX < tileCount; gridX++) {
let shades = ["#A40D06", "#2D2D2D"];
let shade = random(shades);
cS = color(shade);
fill(cS);
var posX = width / tileCount * gridX;
var posY = height / tileCount * gridY;
var s = int(random(0, 2));
if (s == 0) {
stroke("#A40D06")
line(posX+10, posY, posX+10, posY + height / tileCount);
line(posX+20, posY, posX+20, posY + height / tileCount);
line(posX+30, posY, posX+30, posY + height / tileCount);
stroke("#2D2D2D")
line(posX, posY+10, posX+width/tileCount, posY + 10);
line(posX, posY+20, posX+width/tileCount, posY + 20);
line(posX, posY+30, posX+width/tileCount, posY + 30);
}
if (s == 1) {
stroke("#2D2D2D")
line(posX, posY+10, posX+width/tileCount, posY + 10);
line(posX, posY+20, posX+width/tileCount, posY + 20);
line(posX, posY+30, posX+width/tileCount, posY + 30);
stroke("#A40D06")
line(posX+10, posY, posX+10, posY + height / tileCount);
line(posX+20, posY, posX+20, posY + height / tileCount);
line(posX+30, posY, posX+30, posY + height / tileCount);
}
}
}
}
function mouseReleased() {
actRandomSeed = random(100000);
}