Files
galaxy-game/pkg/number/number.go
T
2025-09-23 23:33:47 +03:00

17 lines
306 B
Go

package number
import "math"
func Fixed3(num float64) float64 {
return fixed(num, 3)
}
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))
}