Fix Point
這個提交存在於:
父節點
ce5c34cb06
當前提交
77ed944b3c
共有 1 個檔案被更改,包括 1 行新增 和 3 行删除
|
@ -31,9 +31,7 @@ public final class Point {
|
|||
if (koef >= 1.0) { koef = 1.0 ; }
|
||||
if (koef <= -1.0) { koef = -1.0 ; }
|
||||
|
||||
res = EARTH_RADIUS * Math.acos(koef) ;
|
||||
|
||||
return res
|
||||
return (EARTH_RADIUS * Math.acos(koef)) ;
|
||||
}
|
||||
|
||||
// Longitude and latitude of the point.
|
||||
|
|
載入中…
新增問題並參考