1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
Math.* 常用的数学运算动作方法. 数学运算表示式可以直接代入变量运算,也可以将运算结果赋值到新的变量. • Math.PI ◦圆周率运算 (3.141592) •Math.abs(var) or Math.abs(result,v) ◦生成绝对值. •Math.acos(var) or Math.acos(result,v) ◦技算出余弦值. •Math.asin(var) or Math.asin(result,v) ◦计算出正弦值. •Math.atan(var) or Math.atan(result,v) ◦计算出反正切值. •Math.atan2(result,a,b) ◦使用两个变量计算出反正切值. •Math.ceil(var) or Math.ceil(result,v) ◦通过舍入计算下一个整数最大值. •Math.cos(var) or Math.cos(result,v) ◦计算出余弦值. •Math.exp(var) or Math.exp(result,v) ◦计算次幂的值. •Math.floor(var) or Math.floor(result,v) ◦通过舍入计算下一个整数最小值. •Math.log(var) or Math.log(result,v) ◦计算出自然对数. •Math.max(var,var2) or Math.max(result,...vars) ◦获取两个变量值中的最大值. •Math.min(var,var2) or Math.min(result,...vars) ◦获取两个变量值中最小值. •Math.pow(var,var2) or Math.pow(result,v1,v2) ◦计算出次方值. •Math.round(var) or Math.round(result,v) ◦计算圆整数值. •Math.sin(var) or Math.sin(result,v) ◦计算正弦(参数弧度). •Math.sqrt(var) or Math.sqrt(result,v) ◦计算平方根. •Math.tan(var) or Math.tan(result,v) ◦计算切线(参数弧度). |