xxxxxxxxxx
20
let a;
let b;
let c;
let d;
function setup() {
createCanvas(600, 400);
a = width/4; // top/bottom left X
b = width/4*3; // top/bottom right X
c = height/4; // left/right top Y
d = height/4*3; // left/right bottom Y
}
function draw() {
background(220);
line(a, c, b, c);
line(b, c, b, d);
line(b, d, a, d);
line(a, d, a, c);
}