Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
82073f40ae | |||
4513bfcb6f |
@ -14,6 +14,6 @@ func Max[N Number](a, b N) N {
|
||||
return b
|
||||
}
|
||||
|
||||
func Limit[N Number](v, min, max N) N {
|
||||
func Clamp[N Number](v, min, max N) N {
|
||||
return Min(Max(v, min), max)
|
||||
}
|
||||
|
7
math.go
Normal file
7
math.go
Normal file
@ -0,0 +1,7 @@
|
||||
package gmath
|
||||
|
||||
import "math"
|
||||
|
||||
func Pow[N Number](x, y N) N {
|
||||
return N(math.Pow(float64(x), float64(y)))
|
||||
}
|
@ -1,5 +1,9 @@
|
||||
package gmath
|
||||
|
||||
type Number interface {
|
||||
~int | ~int8 | ~int16 | ~int32 | ~int64 | ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~float32 | ~float64
|
||||
Integer | ~float32 | ~float64
|
||||
}
|
||||
|
||||
type Integer interface {
|
||||
~int | ~int8 | ~int16 | ~int32 | ~int64 | ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64
|
||||
}
|
||||
|
Reference in New Issue
Block a user