skrifa::metrics

Type Alias BoundingBox

Source
pub type BoundingBox = BoundingBox<f32>;
Expand description

Type for a bounding box with single precision floating point coordinates.

Aliased Type§

struct BoundingBox {
    pub x_min: f32,
    pub y_min: f32,
    pub x_max: f32,
    pub y_max: f32,
}

Fields§

§x_min: f32

Minimum extent in the x direction– the left side of a region.

§y_min: f32

Minimum extent in the y direction. In a Y-up coordinate system, which is used by fonts, this represents the bottom of a region.

§x_max: f32

Maximum extent in the x direction– the right side of a region.

§y_max: f32

Maximum extend in the y direction. In a Y-up coordinate system, which is used by fonts, this represents the top of the region.

Implementations

Source§

impl<T> BoundingBox<T>
where T: Mul<Output = T> + Copy,

Source

pub fn scale(&self, factor: T) -> BoundingBox<T>

Return a BoundingBox scaled by a scale factor of the same type as the stored bounds.

Trait Implementations

Source§

impl<T> Clone for BoundingBox<T>
where T: Clone,

Source§

fn clone(&self) -> BoundingBox<T>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T> Debug for BoundingBox<T>
where T: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<T> Default for BoundingBox<T>
where T: Default,

Source§

fn default() -> BoundingBox<T>

Returns the “default value” for a type. Read more
Source§

impl<T> PartialEq for BoundingBox<T>
where T: PartialEq,

Source§

fn eq(&self, other: &BoundingBox<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T> Copy for BoundingBox<T>
where T: Copy,

Source§

impl<T> Eq for BoundingBox<T>
where T: Eq,

Source§

impl<T> StructuralPartialEq for BoundingBox<T>