Added `Round()`, Fixed documentation of `Atan2()`
In this release Round
was added by @neclepsio. Also, Atan2
was reported to have a documentation issue - before the fix the function signature was Atan2(x, y float32)
. After the fix it's Atan2(y, x float32)
. No changes to the internal functioning were made as Atan2
is a wrapper to math.Atan2
.
Much thanks to @neclepsio