Type Alias Point

Source
pub type Point<U> = TypedPoint2D<f32, U>;

Aliased Type§

struct Point<U> {
    pub x: f32,
    pub y: f32,
}

Fields§

§x: f32§y: f32