pub type Delta<T> = Vec2<T>;
A type alias that semantically expresses an offset/delta.
struct Delta<T> { pub x: T, pub y: T, }
x: T
y: T