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