function abs(x) { return Math.abs(x) ;}
function acos(x) { return Math.acos(x) ;}
function asin(x) { return Math.asin(x) ;}
function atan(x) { return Math.atan(x) ;}
function atan2(y,x) { return Math.atan2(y,x) ;}
function ceil(x) { return Math.ceil(x) ;}
function cos(x) { return Math.cos(x) ;}
function exp(x) { return Math.exp(x) ;}
function int(x) { return Math.floor(x); }
function ln(x) { return Math.log(x) ;}
function log(x) { return Math.log(x) ;}
function max(x,y) { return Math.max(x,y) ;}
function min(x,y) { return Math.min(x,y) ;}
function pow(x,y) { return Math.pow(x,y) ;}
function rando(x) { return Math.floor(x*Math.random()); }
function rnd() { return Math.random(); }
function round(x) { return Math.round(x) ;}
function sin(x) { return Math.sin(x) ;}
function sqrt(x) { return Math.sqrt(x) ;}
function tan(x) { return Math.tan(x) ;}