Point

Type Alias Point 

Source
pub type Point = Vector;
Expand description

Alias for vectors, used to better state intent in certain places.

Aliased Type§

pub struct Point {
    pub x: f32,
    pub y: f32,
}

Fields§

§x: f32§y: f32