Math.atan2(x,y) Math.atan(x) Map.size 此方法返回其参数的商的反正切值。atan2方法返回-pi和pi之间的数值,表示(x,y)点的角度θ。 语法 Math.atan2(x,y) 参数 x和y - 表示数字 例 console.log("---Math.atan2()---") console.log("Math.atan2(0): "+Math.atan2(0,1)) console.log("Math.atan2(Math.SQRT1_2): "+Math.atan2(1,1)) 输出 ---Math.atan2()--- Math.atan2(0): 0 Math.atan2(Math.SQRT1_2): 0.7853981633974483 Math.atan(x) Map.size