xxxxxxxxxx
43
function setup() {
createCanvas(800, 800);
noFill();
}
function draw() {
background(220);
const s = 80;
for (let i = 0; i < 4; i++) {
for (let j = 0; j < 4; j++) {
line(0, 0, i * s, j * s);
}
}
push();
translate(400, 0);
for (let i = 0; i < 4; i++) {
for (let j = 0; j < 4; j++) {
line(i * s, j * s, j * s, i * s);
}
}
pop();
push();
translate(0, 400);
for (let i = 0; i < 4; i++) {
for (let j = 0; j < 4; j++) {
rect(i * s, j * s, j * s, i * s);
}
}
pop();
push();
translate(400, 400);
for (let i = 0; i < 4; i++) {
for (let j = 0; j < 4; j++) {
circle(i * s, j * s, (i + j) * s)
}
}
pop();
}