xxxxxxxxxx
16
// This needs a modified version of p5.js
// Launch Chrome in a Terminal with:
// /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --kiosk --kiosk-printing
// and make sure your default printer is set in Chrome
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
}
function keyPressed() {
window.print();
}