ラジアン←→度

説明

ラジアンから度に変換するには「ラジアン*180/π」、度からラジアンに変換するは「度*π/180」となります。

サンプルプログラム

// 度からラジアンに変換
document.getElementById("toRad").addEventListener("click", function(){
var deg = parseFloat(document.getElementById("srcValue").value);
var rad = deg * Math.PI / 180;
document.getElementById("resultValue").value = rad;
}, false);
// ラジアンから度に変換
document.getElementById("toDeg").addEventListener("click", function(){
var rad = parseFloat(document.getElementById("srcValue").value);
var deg = rad * 180 / Math.PI;
document.getElementById("resultValue").value = deg;
}, false);
サンプルを実行
[戻る]