CocosCreator开发笔记(7)-Math.floor()、Math.ceil()、Math.round()的作用
几个常用数学函数的作用: Math.floor():用作向下取整 Math.ceil():用作向上取整 Math.round():四舍五入取整 实例代码运行的结果如下: // 向下取整 let f1 = Math.floor(0.1); // 0 let f2 = Math.floor(0.5); … 阅读更多 »CocosCreator开发笔记(7)-Math.floor()、Math.ceil()、Math.round()的作用