pub type CircleF = Circle<f32>;
#[repr(C)]pub struct CircleF { pub center: Vec2<f32>, pub radius: f32, }
center: Vec2<f32>
radius: f32