摘要: 角度转弧度,弧度转角度 //弧度转角度 #define Radians_To_Degrees(radians) ((radians) * (180.0 / M_PI)) //角度转弧度 #define Degrees_To_Radians(angle) ((angle) / 180.0 * M_PI 阅读全文
posted @ 2022-01-18 13:47 brave-sailor 阅读(147) 评论(0) 推荐(0)
摘要: 1、 三角函数double sin (double); 正弦double cos (double);余弦double tan (double);正切 2 、反三角函数double asin (double); 结果介于[-PI/2, PI/2]double acos (double); 结果介于[0 阅读全文
posted @ 2022-01-18 13:39 brave-sailor 阅读(417) 评论(0) 推荐(0)