Type Alias fltk::draw::Rect

source ·
pub type Rect = Rectangle<i32>;
Expand description

i32 Coordinates

Aliased Type§

struct Rect {
    pub x: i32,
    pub y: i32,
    pub w: i32,
    pub h: i32,
}

Fields§

§x: i32

Leftmost corner

§y: i32

Topmost corner

§w: i32

Width

§h: i32

Height