toRadians()方法用於將以度為單位的角度轉換為以弧度為單位的近似等效角度。
函數定義: (Number).toRadians
返回類型: It returns the converted value of radians.
範例1:
// Scala program of Float toRadians()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toRadians method
val result = (56).toRadians
// Displays output
println(result)
}
}
輸出:
0.9773844
範例2:
// Scala program of Float toRadians()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toRadians method
val result = (180).toRadians
// Displays output
println(result)
}
}
輸出:
3.1415927
相關用法
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Scala Float toRadians() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。