pub type Rgb<T = u8> = Vec3<T>;
Single RGB pixel.
pub struct Rgb<T = u8> { pub x: T, pub y: T, pub z: T, }
x: T
y: T
z: T