Files
galaxy-game/internal/number/number.go
T
2026-02-10 20:54:43 +03:00

23 lines
373 B
Go

package number
import (
"math"
)
func Fixed3(num float64) float64 {
return fixed(num, 3)
}
func Fixed12(num float64) float64 {
return fixed(num, 12)
}
func fixed(num float64, precision int) float64 {
output := math.Pow(10, float64(precision))
return float64(round(num*output)) / output
}
func round(num float64) int {
return int(num + math.Copysign(0.5, num))
}