pub type Point2<T> = Vec2<T>;
2D point.
#[repr(C)]pub struct Point2<T> { pub x: T, pub y: T, }
x: T
y: T