xxxxxxxxxx
36
// Trying to copy GEORG NEES work
// https://collections.vam.ac.uk/item/O221321/schotter-print-nees-georg/
const space = 20;
let count = 0;
function setup() {
createCanvas(400, 600);
background("#F0EFE9");
angleMode(DEGREES);
let startX = width * 0.1;
let startY = height * 0.08;
noFill();
stroke(0);
strokeWeight(30);
rect(0, 0, width, height);
stroke(0);
strokeWeight(1);
for (let col = startX; col < width * 1.36; col += space) {
for (let row = startY; row < height * 0.55; row += space) {
push();
translate(0, 0);
rotate(random(-count * 1.5, count * 2));
rect(row, col, space);
count += 0.007;
pop();
}
}
}
function draw() {}