My code is…
function setup()
{
createCanvas(500, 500, WEBGL);
}
function draw()
{
background(200);
orbitControl();
// Objects
box(75, 100, 50);
sphere(50)
}
How would I change the x and y position of the box and/or the sphere?