zworld-demo/plugin/math/byte4/byte4.go
2023-12-22 22:04:27 +08:00

11 lines
151 B
Go

package byte4
// T is a 4-component vector of uint8 (bytes)
type T struct {
X, Y, Z, W byte
}
func New(x, y, z, w byte) T {
return T{x, y, z, w}
}