xxxxxxxxxx
// suppress the right-click contextual menu
document.oncontextmenu =()=> false;
function setup() {
createCanvas(windowWidth,windowHeight, WEBGL);
createEasyCam(); // required to enable the camera
}
function draw() {
background(63);
lights();
box(250);
}