xxxxxxxxxx
11
function setup() {
createCanvas(windowWidth, windowHeight);
background(200, 200, 0);
}
function draw() {}
function keyPressed() {
if (key == 'i')
console.log("windowWidth " + windowWidth + " windowHeight " + windowHeight + " width " + width + " height " + height);
}