Struct embedded_graphics::geometry::Size  [−][src]
Expand description
2D size.
Size is used to define the width and height of an object.
Nalgebra support can be enabled with the nalgebra_support feature. This implements
From<Vector2<N>> and From<&Vector2<N>> where N is Scalar + Into<u32>. This allows use
of Nalgebra’s Vector2 with embedded-graphics where u32, u16 or u8 is used for value
storage.
Examples
Create a Size from two integers
use embedded_graphics::geometry::Size; // Create a size using the `new` constructor method let s = Size::new(10, 20);
Create a Size from a Nalgebra Vector2
Be sure to enable the nalgebra_support feature to get Nalgebra integration.
Any Vector2<N> can be used where N: Into<u32> + nalgebra::Scalar. This includes the primitive types u32, u16 and u8.
use embedded_graphics::geometry::Size; use nalgebra::Vector2; assert_eq!(Size::from(Vector2::new(10u32, 20)), Size::new(10u32, 20)); assert_eq!(Size::from(Vector2::new(10u16, 20)), Size::new(10u32, 20)); assert_eq!(Size::from(Vector2::new(10u8, 20)), Size::new(10u32, 20));
.into() can also be used, but may require more type annotations:
use embedded_graphics::geometry::Size; use nalgebra::Vector2; let c: Size = Vector2::new(10u32, 20).into(); assert_eq!(c, Size::new(10u32, 20));
Fields
width: u32The width.
height: u32The height.
Implementations
impl Size[src]
impl Size[src]pub const fn new_equal(value: u32) -> Size[src]
pub const fn new_equal(value: u32) -> Size[src]Creates a size with width and height set to an equal value.
use embedded_graphics::geometry::Size; let size = Size::new_equal(11); assert_eq!( size, Size { width: 11, height: 11 } );
pub const fn x_axis(self) -> Size[src]
pub const fn x_axis(self) -> Size[src]Returns a size with equal width value and height set to 0.
Examples
Move a Point along the X axis.
use embedded_graphics::geometry::{Point, Size}; let size = Size::new(20, 30); let point = Point::new(10, 15); let moved_x = point + size.x_axis(); assert_eq!(moved_x, Point::new(30, 15));
pub const fn y_axis(self) -> Size[src]
pub const fn y_axis(self) -> Size[src]Returns a size with equal height value and width set to 0.
Examples
Move a Point along the Y axis.
use embedded_graphics::geometry::{Point, Size}; let size = Size::new(20, 30); let point = Point::new(10, 15); let moved_y = point + size.y_axis(); assert_eq!(moved_y, Point::new(10, 45));
pub fn saturating_add(self, other: Size) -> Size[src]
pub fn saturating_add(self, other: Size) -> Size[src]Saturating addition.
Returns u32::max_value() for width and/or height instead of overflowing.
pub fn saturating_sub(self, other: Size) -> Size[src]
pub fn saturating_sub(self, other: Size) -> Size[src]Saturating subtraction.
Returns 0 for width and/or height instead of overflowing, if the
value in other is larger then in self.
pub fn component_min(self, other: Size) -> Size[src]
pub fn component_min(self, other: Size) -> Size[src]Returns the componentwise minimum of two Sizes.
use embedded_graphics::geometry::Size; let min = Size::new(20, 30).component_min(Size::new(15, 50)); assert_eq!(min, Size::new(15, 30));
pub fn component_max(self, other: Size) -> Size[src]
pub fn component_max(self, other: Size) -> Size[src]Returns the componentwise maximum of two Sizes.
use embedded_graphics::geometry::Size; let min = Size::new(20, 30).component_max(Size::new(15, 50)); assert_eq!(min, Size::new(20, 50));
pub fn component_mul(self, other: Size) -> Size[src]
pub fn component_mul(self, other: Size) -> Size[src]Returns the componentwise multiplication of two Sizes.
use embedded_graphics::geometry::Size; let result = Size::new(20, 30).component_mul(Size::new(2, 3)); assert_eq!(result, Size::new(40, 90));
pub fn component_div(self, other: Size) -> Size[src]
pub fn component_div(self, other: Size) -> Size[src]Returns the componentwise division of two Sizes.
Panics
Panics if one of the components of other equals zero.
use embedded_graphics::geometry::Size; let result = Size::new(20, 30).component_div(Size::new(5, 10)); assert_eq!(result, Size::new(4, 3));
Trait Implementations
impl AddAssign<Size> for Point[src]
impl AddAssign<Size> for Point[src]pub fn add_assign(&mut self, other: Size)[src]
pub fn add_assign(&mut self, other: Size)[src]Offsets a point by adding a size.
Panics
This function will panic if width or height are too large to be represented as an i32
and debug assertions are enabled.
impl AddAssign<Size> for Size[src]
impl AddAssign<Size> for Size[src]pub fn add_assign(&mut self, other: Size)[src]
pub fn add_assign(&mut self, other: Size)[src]Performs the += operation. Read more
impl DivAssign<u32> for Size[src]
impl DivAssign<u32> for Size[src]pub fn div_assign(&mut self, rhs: u32)[src]
pub fn div_assign(&mut self, rhs: u32)[src]Performs the /= operation. Read more
impl<'_, N> From<&'_ Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>> for Size where
    N: Into<u32> + Scalar + Copy, [src]
impl<'_, N> From<&'_ Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>> for Size where
    N: Into<u32> + Scalar + Copy, [src]impl<N> From<Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>> for Size where
    N: Into<u32> + Scalar + Copy, [src]
impl<N> From<Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>> for Size where
    N: Into<u32> + Scalar + Copy, [src]impl MulAssign<u32> for Size[src]
impl MulAssign<u32> for Size[src]pub fn mul_assign(&mut self, rhs: u32)[src]
pub fn mul_assign(&mut self, rhs: u32)[src]Performs the *= operation. Read more
impl Ord for Size[src]
impl Ord for Size[src]impl PartialOrd<Size> for Size[src]
impl PartialOrd<Size> for Size[src]pub fn partial_cmp(&self, other: &Size) -> Option<Ordering>[src]
pub fn partial_cmp(&self, other: &Size) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl SubAssign<Size> for Point[src]
impl SubAssign<Size> for Point[src]pub fn sub_assign(&mut self, other: Size)[src]
pub fn sub_assign(&mut self, other: Size)[src]Offsets a point by subtracting a size.
Panics
This function will panic if width or height are too large to be represented as an i32
and debug assertions are enabled.
impl SubAssign<Size> for Size[src]
impl SubAssign<Size> for Size[src]pub fn sub_assign(&mut self, other: Size)[src]
pub fn sub_assign(&mut self, other: Size)[src]Performs the -= operation. Read more
impl Copy for Size[src]
impl Eq for Size[src]
impl StructuralEq for Size[src]
impl StructuralPartialEq for Size[src]
Auto Trait Implementations
impl RefUnwindSafe for Size
impl Send for Size
impl Sync for Size
impl Unpin for Size
impl UnwindSafe for Size
Blanket Implementations
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, [src]
impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, [src]pub fn lossless_try_into(self) -> Option<Dst>[src]
pub fn lossless_try_into(self) -> Option<Dst>[src]Performs the conversion.
impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, [src]
impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, [src]pub fn lossy_into(self) -> Dst[src]
pub fn lossy_into(self) -> Dst[src]Performs the conversion.
impl<T> Same<T> for T
impl<T> Same<T> for Ttype Output = T
type Output = TShould always be Self
impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, pub fn to_subset(&self) -> Option<SS>
pub fn to_subset(&self) -> Option<SS>The inverse inclusion map: attempts to construct self from the equivalent element of its
superset. Read more
pub fn is_in_subset(&self) -> bool
pub fn is_in_subset(&self) -> boolChecks if self is actually part of its subset T (and can be converted to it).
pub fn to_subset_unchecked(&self) -> SS
pub fn to_subset_unchecked(&self) -> SSUse with care! Same as self.to_subset but without any property checks. Always succeeds.
pub fn from_subset(element: &SS) -> SP
pub fn from_subset(element: &SS) -> SPThe inclusion map: converts self to the equivalent element of its superset.
impl<T> ToOwned for T where
    T: Clone, [src]
impl<T> ToOwned for T where
    T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
impl<V, T> VZip<V> for T where
    V: MultiLane<T>, pub fn vzip(self) -> V
impl<T, Right> ClosedAdd<Right> for T where
    T: Add<Right, Output = T> + AddAssign<Right>, 
T: Add<Right, Output = T> + AddAssign<Right>,
impl<T, Right> ClosedDiv<Right> for T where
    T: Div<Right, Output = T> + DivAssign<Right>, 
T: Div<Right, Output = T> + DivAssign<Right>,
impl<T, Right> ClosedMul<Right> for T where
    T: Mul<Right, Output = T> + MulAssign<Right>, 
T: Mul<Right, Output = T> + MulAssign<Right>,
impl<T, Right> ClosedSub<Right> for T where
    T: Sub<Right, Output = T> + SubAssign<Right>, 
T: Sub<Right, Output = T> + SubAssign<Right>,