Recti

Type Alias Recti 

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

Integer rectangle.

Aliased Type§

#[repr(C)]
pub struct Recti { pub x: i32, pub y: i32, pub width: i32, pub height: i32, }

Fields§

§x: i32

X coordinate of the top-left corner.

§y: i32

Y coordinate of the top-left corner.

§width: i32

Rectangle width.

§height: i32

Rectangle height.