-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.min.js
1 lines (1 loc) · 2.48 KB
/
index.min.js
1
const RAD2DEG=180/Math.PI,DEG2RAD=Math.PI/180;Math.truncated=((t,a)=>{if(null==a)return Math.trunc(t);let h=Math.pow(10,a);return Math.round(t*h)/h}),Math.lerp=((t,a,h)=>(1-h)*t+h*a),Math.average=(t=>Math.sum(t)/t.length),Math.sum=(t=>t.reduce((t,a)=>t+a,0)),Math.isInt=(t=>Number(t)===t&&t%1==0),Math.isFloat=(t=>Number(t)===t&&t%1!=0),Math.clamp=((t,a,h)=>Math.max(a,Math.min(t,h))),Math.clamp01=(t=>Math.clamp(t,0,1)),Math.inRange=((t,a,h=0)=>a<t&&t<h||h<t&&t<a),Math.multiply=((t,a)=>t*a),Math.divide=((t,a)=>t/a),Math.lt=((t,a)=>t<a),Math.lte=((t,a)=>t<=a),Math.gt=((t,a)=>t>a),Math.gte=((t,a)=>t>=a),Math.add=((t,a)=>t+a),Math.subtract=((t,a)=>t-a),Math.getBaseLog=((t,a)=>Math.log(a)/Math.log(t)),Math.cycle=((t,a)=>t>0?t%a:a+t%a),Math.distance=((t,a,h,M)=>Math.sqr(t-h)+Math.sqr(a-M)),Math.randomInt=((t,a)=>Math.floor(t+Math.random()*(a+1-t))),Math.randomFloat=((t,a)=>Math.random()*(a-t)+t),Math.normalize=((t,a,h)=>(t-a)/(h-a)),Math.normalize01=((t,a,h)=>Math.clamp01(Math.normalize(t,a,h))),Math.factorial=(t=>1!=t?t*Math.factorial(t-1):1),Math.fib=(t=>t<=1?t:Math.fib(t-1)+Math.fib(t-2)),Math.gcd=((t,a)=>0==a?t:Math.gcd(a,t%a)),Math.lcd=((t,a)=>t/Math.gcd(t,a)*a),Math.lcm=((t,a)=>t*(a/Math.gcd(t,a))),Math.hcf=((t,a)=>{for(t=Math.abs(t),a=Math.abs(a);a;){let h=a;a=t%a,t=h}return t}),Math.toRadians=(t=>t*DEG2RAD),Math.toDegrees=(t=>t*RAD2DEG),Math.sqr=(t=>t*t),Math.isEven=(t=>t%2==0),Math.isOdd=(t=>t%2!=0),Math.isPositive=(t=>t>0),Math.isNegative=(t=>t<0),Math.isZero=(t=>Math.isNumber(t)&&0==t),Math.isNonZero=(t=>Math.isNumber(t)&&0!=t),Math.isNumber=(t=>"number"==typeof t&&Number(t)===t),Math.randomBoolean=(()=>!!Math.randomInt(0,1)),Math.ctg=(t=>1/Math.tan(t)),Math.actg=(t=>Math.PI/2-Math.atan(t)),Math.round5=(t=>Math.roundN(t,5)),Math.roundN=((t,a)=>Math.round(t/a)*a),Math.roundGauss=((t,a)=>{let h=a||0,M=Math.pow(10,h),e=+(h?t*M:t).toFixed(8),r=Math.floor(e),o=e-r,i=1e-8,n=o>.5-i&&o<.5+i?r%2==0?r:r+1:Math.round(e);return h?n/M:n}),Math.copysign=((t,a)=>a<0?t<0?t:-t:t>0?t:-t),Math.multiply=((t,a)=>a.map(a=>a+t)),Math.operations=((t,a)=>a.map(a=>Math.operation(t,a))),Math.operation=((t,a)=>t.reduce((t,a)=>a(t),a)),Math.unique=(t=>[...new Set(t)]),Math.difference=((t,a)=>t>a?-(t-a):a-t),Math.repeat=((t,a)=>Math.abs(t/a>0?Math.floor(t/a):Math.ceil(t/a))),Math.cube=(t=>t*t*t),Math.square=(t=>t*t),Math.not=(t=>!t),Math.bitAnd=((t,a)=>t&a),Math.bitNot=(t=>~t),Math.bitOr=((t,a)=>t|a),Math.bitXor=((t,a)=>t^a),Math.leftShift=((t,a)=>t<<a),Math.rightArithShift=((t,a)=>t>>a),Math.rightLogShift=((t,a)=>t>>>a);