mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 23:28:48 +00: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) {
|
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