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>
impl<T> BoundingBox<T>
Sourcepub fn scale(&self, factor: T) -> BoundingBox<T>
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,
impl<T> Clone for BoundingBox<T>where
T: Clone,
Source§fn clone(&self) -> BoundingBox<T>
fn clone(&self) -> BoundingBox<T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T> Debug for BoundingBox<T>where
T: Debug,
impl<T> Debug for BoundingBox<T>where
T: Debug,
Source§impl<T> Default for BoundingBox<T>where
T: Default,
impl<T> Default for BoundingBox<T>where
T: Default,
Source§fn default() -> BoundingBox<T>
fn default() -> BoundingBox<T>
Returns the “default value” for a type. Read more