mirror of
https://github.com/make-42/xyosc
synced 2025-01-19 02:57:34 +01:00
8 lines
105 B
Go
8 lines
105 B
Go
|
package math32
|
||
|
|
||
|
import "math"
|
||
|
|
||
|
func Log10(x float32) float32 {
|
||
|
return float32(math.Log10(float64(x)))
|
||
|
}
|