avocado-old/packages/math/index.js

68 lines
821 B
JavaScript
Raw Normal View History

2019-09-08 03:21:27 -05:00
// import * as Matrix from './matrix';
// export {Matrix}
2019-03-20 18:33:59 -05:00
export {QuadTree} from './quadtree';
2019-11-03 10:40:08 -06:00
export {Range} from './range';
2019-03-19 13:49:21 -05:00
import * as Rectangle from './rectangle';
2019-09-08 03:21:27 -05:00
export {Rectangle}
2019-05-16 00:51:26 -05:00
export {SimpleMovingAverage} from './sma';
2019-03-17 23:45:48 -05:00
import * as Vector from './vector';
2019-09-08 03:21:27 -05:00
export {Vector}
2019-03-22 11:25:06 -05:00
import * as Vertice from './vertice';
2019-09-08 03:21:27 -05:00
export {Vertice}
2019-11-03 10:40:08 -06:00
export {
abs,
acos,
acosh,
asin,
asinh,
atan,
atanh,
atan2,
ceil,
cbrt,
expm1,
clz32,
cos,
cosh,
exp,
floor,
2019-11-09 16:44:13 -06:00
fromRad,
2019-11-03 10:40:08 -06:00
fround,
hypot,
imul,
log,
log1p,
log2,
log10,
max,
min,
2019-11-09 16:44:13 -06:00
normalizeAngleRange,
2019-11-03 10:40:08 -06:00
pow,
random,
round,
sign,
sin,
sinh,
sqrt,
tan,
tanh,
2019-11-09 16:44:13 -06:00
toRad,
2019-11-03 10:40:08 -06:00
trunc,
E,
LN10,
LN2,
LOG10E,
LOG2E,
PI,
2019-11-09 16:44:13 -06:00
PI_180,
2019-11-03 10:40:08 -06:00
SQRT1_2,
SQRT2,
add,
div,
frac,
mul,
randomNumber,
sub,
} from './math';