1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-01-16 22:12:02 +01:00
ebiten/internal/shader/testdata/atan.go

8 lines
95 B
Go
Raw Normal View History

package main
func Foo(x, y float) bool {
a := atan(y / x)
b := atan2(y, x)
return a == b
}