Fix Point

這個提交存在於:
Didier Le Botlan 2023-03-07 11:30:34 +01:00
父節點 ce5c34cb06
當前提交 77ed944b3c

查看文件

@ -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.