tins2020/math.go

8 lines
182 B
Go
Raw Normal View History

2020-05-09 14:48:39 +00:00
package tins2020
import "math"
func Ceil32(x float32) float32 { return float32(math.Ceil(float64(x))) }
func Floor32(x float32) float32 { return float32(math.Floor(float64(x))) }