Rectd

Type Alias Rectd 

Source
pub type Rectd = Rect<f64>;
Expand description

Double-precision rectangle.

Aliased Type§

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

Fields§

§x: f64

X coordinate of the top-left corner.

§y: f64

Y coordinate of the top-left corner.

§width: f64

Rectangle width.

§height: f64

Rectangle height.