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.

12 lines
282 B

  1. "use strict";
  2. var sign = require("../math/sign")
  3. , abs = Math.abs
  4. , floor = Math.floor;
  5. module.exports = function (value) {
  6. if (isNaN(value)) return 0;
  7. value = Number(value);
  8. if (value === 0 || !isFinite(value)) return value;
  9. return sign(value) * floor(abs(value));
  10. };