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