Point

Type Alias Point 

Source
pub type Point = Point2D<u32, u32>;
Expand description

Alias for euclid’s Point2D of 2 unsigned 32-bit integers

Aliased Type§

#[repr(C)]
pub struct Point { pub x: u32, pub y: u32, }

Fields§

§x: u32§y: u32