pub type Rectangle4<T> = Rectangle<T, 4>;
#[repr(C)]pub struct Rectangle4<T> { pub pos: Vector<T, 4>, pub size: Vector<T, 4>, }
pos: Vector<T, 4>
size: Vector<T, 4>