sin(x) = a/c; a是角度的对边,c是斜边
con(y) = b/c; b是角度的邻边,c是斜边
x,y都是指的‘弧度‘而非‘角度‘,弧度的计算公式为:2*PI/360*角度;
30°角度的弧度 = 2*PI/360*30;
function getXY(R,ideg){ var ideg = (2*Math.PI/360)*ideg; var x = Math.round(Math.sin(ideg) * R); var y = Math.round(Math.cos(ideg) * R); return {a:x,b:y}; }
时间: 2024-10-22 21:35:39