旋转弧度计算方式JS
2022-09-15 本文已影响0人
秒怂的哈士奇爱吃西瓜
js数学函数:
1、三次方函数 Math.pow()
2、绝对值函数 Math.abs(a,b):a为要操作的数,b决定取几次方
3、向上取整 Math.ceil()
4、向下取整 Math.floor()
5、四舍五入 Math.round()
6、找最大值 Math.max()
7、找最小值 Math.min()
8、产生随机数 Math.random()
产生0-1之间的随机数,前开后闭,即包含0不含1:
var b = Math.random();
document.write(b);
要产生处于[min,max]之间的随机数可以用:Math.floor(Math.random()*(max-min+1)+min);
产生0-9之间的随机数,可根据需要自行设置max和min的值:
var b = Math.floor(Math.random()*10);
9、正弦函数 Math.sin()
10、余弦函数 Math.cos()
11、Math.sqrt() 求平方根
12、Math.log()函数获得任意数字的对数
<!DOCTYPE HTML>
<html>
<body>
<script>
//弧度 = π/180×角度
//角度 = 180/π×弧度
var hd = Math.PI / 180 * 30 ;
var jd = 180/Math.PI * hd;
//角度 = 180/Math.PI * Math.asin(1/2)
console.log(Math.sin(Math.PI/180*30));
</script>
</body>
</html>
cocos creator数学函数 :
// 合成基于X正方向的方向向量
var dir = cc.v2(Math.cos(hd), Math.sin(hd));
// 单位化向量
dir.normalizeSelf();