xxxxxxxxxx
18
let a, b, c, d;
function setup() {
createCanvas(400, 400);
a = 0.25 * width;
b = 0.25 * height;
c = 0.75 * width;
d = 0.75 * height;
}
function draw() {
background(220);
line(a, b, c, b);
line(a, d, c, d);
line(a, b, a, d);
line(c, b, c, d);
}