$.math

Commonly used math methods such as floor, ceil, roundatan2, sin, cos using degrees. As well useful utility methods
Methods

// Random - Generate random number when pressing "N" key and display to canvas.
if ($.keys.down("r")) {
    randomValue = $.math.random(0, 100);
}

$.text.print($.w/2,$.h/2, randomValue.toString());