pub type b2Pos = b2Vec2;
2D vector This can be used to represent a point or free vector
#[repr(C)]pub struct b2Pos { pub x: f32, pub y: f32, }
x: f32
coordinates
y: f32