chewxy / math32

A float32 version of Go's math package

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Atan2 argument names are swapped

neclepsio opened this issue · comments

For math it's math.Atan2(y, x float64), for math32 it's math32.Atan2(x, y float32), which calls math.Atan2(x, y).