pub type PixF32 = Pix2D<f32>;
pub struct PixF32 { pub width: usize, pub height: usize, pub data: Vec<f32>, pub initialized: bool, }
width: usize
height: usize
data: Vec<f32>
initialized: bool