summaryrefslogtreecommitdiff
path: root/range.go
blob: f6dd88ae277de57f0923f81b0884a86e6615d50d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package mt

type RangeF32 struct {
	Min, Max float32
	Bias     float32
}

type RangeV3F32 struct {
	Min, Max [3]float32
	Bias     float32
}