xxxxxxxxxx
20
function setup() {
createCanvas(400, 300, WEBGL);
}
function draw() {
background('lightblue');
stroke('gray');
push();
translate(-90, 0, 0);
fill('red');
box(80);
pop();
push();
translate(90, 0, 0);
fill('blue');
cone(50, 80);
pop();
}