'角度からラジアンを求める(第2引数をTrueにするとラジアンから角度を求める) Private Function GetDegreeToRadian(ByVal Value As Double, Optional ByVal Reverse As Boolean = False) As Double Select Case Reverse Case False GetDegreeToRadian = ((4 * Atn(1)) / 180) * Value '角度 → ラジアン(デフォルト) Case True GetDegreeToRadian = 180 / (4 * Atn(1)) * Value 'ラジアン → 角度 End Select '※VBA・VB6は円周率を"4 * Atn(1)"、.NETは"Microsoft.System.Math.PI"で求める End Function
角度とラジアンの相互変換
2016/9/1 (木)