web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
597 B

  1. "use strict";
  2. module.exports = {
  3. acosh: require("./acosh"),
  4. asinh: require("./asinh"),
  5. atanh: require("./atanh"),
  6. cbrt: require("./cbrt"),
  7. ceil10: require("./ceil-10"),
  8. clz32: require("./clz32"),
  9. cosh: require("./cosh"),
  10. expm1: require("./expm1"),
  11. floor10: require("./floor-10"),
  12. fround: require("./fround"),
  13. hypot: require("./hypot"),
  14. imul: require("./imul"),
  15. log10: require("./log10"),
  16. log2: require("./log2"),
  17. log1p: require("./log1p"),
  18. round10: require("./round-10"),
  19. sign: require("./sign"),
  20. sinh: require("./sinh"),
  21. tanh: require("./tanh"),
  22. trunc: require("./trunc")
  23. };