xxxxxxxxxx
13
function setup() {
createCanvas(750, 300);
}
function draw() {
background(20);
stroke(255);
strokeWeight(4);
noFill();
point(width/2, height/2);
let f = 0.25;
rect(width*f, height*f, width-(width*f*2), height-(height*f*2))
}