Appearance
度をラジアンに変換する
math.rad (x)
度単位の角度 x をラジアン単位に変換して返します。
x
local degrees = 180 local radians = math.rad(degrees) print(radians) -- 3.1415926535898
この例では、180度をラジアンに変換しています。
180度
math.deg