Type Alias Point2

Source
pub type Point2<T> = Vec2<T>;
Expand description

2D point.

Aliased Type§

#[repr(C)]
pub struct Point2<T> { pub x: T, pub y: T, }

Fields§

§x: T§y: T