xxxxxxxxxx
148
var tileCount = 4;
var actRandomSeed = 0;
function setup() {
createCanvas(800, 800);
//noStroke();
}
function draw() {
clear();
randomSeed(actRandomSeed);
for (var gridY = 0; gridY < tileCount; gridY++) {
for (var gridX = 0; gridX < tileCount; gridX++) {
let shades = ["#73BE9C","#B3DDB3","#D1DD8C","#90C6CF","#9CC8C7","#B9C8A3","#AABE69","#EAE9D6"];
let shade = random(shades);
cS = color(shade);
fill(cS);
stroke(cS);
strokeWeight(2);
//background(shade);
var posX = width / tileCount * gridX;
var posY = height / tileCount * gridY;
var s = int(random(3, 8));
if (s == 0) {
noStroke();
triangle(posX, posY, posX + width / tileCount / 2, posY + height / tileCount / 2, posX + width / tileCount, posY);
let shade1 = random(shades);
cS1 = color(shade1);
fill(cS1);
triangle(posX, posY, posX + width / tileCount / 2, posY + height / tileCount / 2, posX, posY + height / tileCount);
let shade2 = random(shades);
cS2 = color(shade2);
fill(cS2);
triangle(posX + width / tileCount, posY, posX + width / tileCount / 2, posY + height / tileCount / 2, posX + width / tileCount, posY + height / tileCount);
let shade3 = random(shades);
cS3 = color(shade3);
fill(cS3);
triangle(posX + width / tileCount, posY + height / tileCount, posX + width / tileCount / 2, posY + height / tileCount / 2, posX, posY + height / tileCount);
}
if (s == 1) {
noStroke();
rect(posX, posY, (posX + width / tileCount) / 2, (posY + height / tileCount) / 2);
let shade1 = random(shades);
cS1 = color(shade1);
fill(cS1);
rect((posX + width / tileCount) / 2, (posY + height / tileCount) / 2, (posX + width / tileCount) / 2, (posY + height / tileCount) / 2);
let shade2 = random(shades);
cS2 = color(shade2);
fill(cS2);
rect(posX, (posY + height / tileCount) / 2, (posX + width / tileCount) / 2, (posY + height / tileCount) / 2);
let shade3 = random(shades);
cS3 = color(shade3);
fill(cS3);
rect((posX + width / tileCount) / 2, posY, (posX + width / tileCount) / 2, (posY + height / tileCount) / 2);
}
if (s == 2) {
noStroke();
for (x = posX; x < (posX + width / tileCount); x = x + (posX + width / tileCount) / tileCount) {
for (y = posY; y < posY + height / tileCount; y = y + (posY + height / tileCount) / tileCount) {
let shade1 = random(shades);
cS1 = color(shade1);
fill(cS1);
rect(x, y, (posX + width / tileCount) / tileCount, posY + height / tileCount);
}
}
}
if (s == 3) {
noStroke();
for (y = posY; y < posY + height / tileCount; y = y + ((posY + height / tileCount) / tileCount)) {
for (x = posX; x < posX + width / tileCount; x = x + ((posX + height / tileCount) / tileCount)) {
let shade1 = random(shades);
cS1 = color(shade1);
fill(cS1);
rect(x, y, posX + (width / tileCount), posY + (height / tileCount) / tileCount);
}
}
}
if (s == 4) {
noStroke();
fill("#ffffff");
rect(posX, posY, (posX + width / tileCount));
fill(cS)
for (x=posX+5; x<posX + width / tileCount; x=x+8){
for (y=posY+5; y<posY + height / tileCount; y=y+8){
noStroke();
ellipse(x, y, 4);
}
}
}
if (s == 5) {
for (y=posY+3; y<posY + height / tileCount; y=y+5){
stroke(cS);
line(posX, y, posX + width / tileCount+200,y);
}
}
if (s == 7) {
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 == 6) {
for (x=posX+3; x<posX + width / tileCount; x=x+5){
line(x, posY, x,posY + height / tileCount+200);
}
}
}
}
}
function mouseReleased() {
actRandomSeed = random(100000);
}