/**
 * Some useful math-related helper functions.
 *
 * @author jwiseman
 * @provides math-extensions
 */

function rand32() {
  return Math.floor(Math.random()*4294967295);
}

