mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-16 10:52:22 -07:00
Fix atan2 by swapping the arguments internally
This commit is contained in:
+1
-1
@@ -1386,7 +1386,7 @@ atan2 :: proc{
|
||||
}
|
||||
|
||||
atan :: proc "contextless" (x: $T) -> T where intrinsics.type_is_float(T) {
|
||||
return atan2(1, x)
|
||||
return atan2(x, 1)
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user