角度与弧度间的关系

一个圆 对应的 弧度是 2 PI

即 360度 对应 2PI


单位角度对应的弧度是  2PI/360   即 PI/180


单位弧度对应的角度是 360/2PI  即 180/PI


java 中的 Math 类下的   sin,cos 等函数,参数是 弧度

比如求90角度的sin值:Math.sin(PI/180*90) 

当然Math下有专门的 角度转弧度 和  弧度 转角度 函数

public static double toRadians(double angdeg) {
    return angdeg / 180d * PI;
}
public static double toDegrees(double angrad) {
    return angrad * 180d / PI;
}


圆周长:2PI * radius

圆弧长:弧度 * radius  => PI/180 * radius

你可能感兴趣的:(角度与弧度间的关系)