Type Alias carnelian::geometry::IntPoint

source ·
pub type IntPoint = Point2D<IntCoord>;
Expand description

A two-dimensional integer point

Aliased Type§

struct IntPoint {
    pub x: i32,
    pub y: i32,
    /* private fields */
}

Fields§

§x: i32§y: i32