zworld-demo/plugin/math/byte4/byte4.go

11 lines
151 B
Go
Raw Normal View History

2023-12-22 22:04:27 +08:00
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}
}