mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
parent
ae1cb5697e
commit
6137ce23c0
@ -206,9 +206,6 @@ pub fn acos(x f64) f64 {
|
||||
if (x < -1.0) || (x > 1.0) {
|
||||
return nan()
|
||||
}
|
||||
if x == 0.0 {
|
||||
return nan()
|
||||
}
|
||||
if x > 0.5 {
|
||||
return f64(2.0) * asin(sqrt(0.5 - 0.5 * x))
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user