Skip to main content

Point2i

Type Alias Point2i 

Source
pub type Point2i = Point2<i32>;
Expand description

A 2D point in signed pixel coordinates, for image-space offsets.

Aliased Type§

pub struct Point2i {
    pub x: i32,
    pub y: i32,
}

Fields§

§x: i32§y: i32