xyosc/vendor/github.com/chewxy/math32/cbrt.go
2024-12-21 17:38:26 +01:00

8 lines
103 B
Go

package math32
import "math"
func Cbrt(x float32) float32 {
return float32(math.Cbrt(float64(x)))
}