xxxxxxxxxx
15
let rotation = 0;
function setup() {
createCanvas(256, 256, WEBGL);
angleMode(DEGREES);
}
function draw() {
background('lightblue');
stroke('white');
fill(mouseY, 0, 0);
rotateY(rotation);
rotation += mouseX / 30;
box(120, 60, 30);
}