zworld/plugins/math/byte4/byte4.go

11 lines
151 B
Go
Raw Permalink Normal View History

2024-01-14 22:56:06 +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}
}