orbitControl

v0.1.6
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(51);

    -- Allows us to control the camera
    orbitControl();

    noFill();
    stroke(80, 255, 50);
    strokeWeight(4);

    box(60);
end
See orbitControl in camera.h