pub struct BBox {
pub llx: f32,
pub lly: f32,
pub urx: f32,
pub ury: f32,
}Expand description
A font or glyph bounding box, with ordinary f32 precision limits.
Fields§
§llx: f32Lower-left x coordinate.
lly: f32Lower-left y coordinate.
urx: f32Upper-right x coordinate.
ury: f32Upper-right y coordinate.
Trait Implementations§
impl Copy for BBox
impl StructuralPartialEq for BBox
Auto Trait Implementations§
impl Freeze for BBox
impl RefUnwindSafe for BBox
impl Send for BBox
impl Sync for BBox
impl Unpin for BBox
impl UnsafeUnpin for BBox
impl UnwindSafe for BBox
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more