Type Alias IntRect

Source
pub type IntRect = Rect<i32>;
Expand description

A Rect of i32.

Aliased Type§

struct IntRect {
    pub left: i32,
    pub top: i32,
    pub width: i32,
    pub height: i32,
}

Fields§

§left: i32

Left coordinate of the rectangle.

§top: i32

Top coordinate of the rectangle.

§width: i32

Width of the rectangle.

§height: i32

Height of the rectangle.