orbitControl();Helpful utility for controlling the camera around the origin.
Enables quick camera controls without much of an implementation.
function setup()
    createWindow(800, 800, GL3D);
end
function draw() 
    background('purple');
    -- Allows us to control the camera
    orbitControl();
    noFill();
    stroke(80, 255, 50);
    strokeWeight(4);
    box(60);
end