pub type FloatRect = Rect<f32>;Expand description
A Rect of f32.
Aliased Type§
#[repr(C)]pub struct FloatRect {
pub left: f32,
pub top: f32,
pub width: f32,
pub height: f32,
}Fields§
§left: f32Left coordinate of the rectangle.
top: f32Top coordinate of the rectangle.
width: f32Width of the rectangle.
height: f32Height of the rectangle.