Struct embedded_graphics::geometry::Point

source ·
pub struct Point {
    pub x: i32,
    pub y: i32,
}
Expand description

2D point.

A point can be used to define the position of a graphics object. For example, a Rectangle may be defined that has its top left corner at (-1, -2). To specify the size of an object Size should be used instead.

Nalgebra support can be enabled with the nalgebra_support feature. This implements From<Vector2<N>> and From<&Vector2<N>> where N is Scalar + Into<i32>. This allows use of Nalgebra’s Vector2 with embedded-graphics where i8, i16, i32, u16 or u8 is used for value storage.

§Examples

§Create a Point from two integers

use embedded_graphics::geometry::Point;

// Create a coord using the `new` constructor method
let p = Point::new(10, 20);

§Create a Point from a Nalgebra Vector2

Be sure to enable the nalgebra_support feature to get Nalgebra integration.

use embedded_graphics::geometry::Point;
use nalgebra::Vector2;

let n_coord = Vector2::new(10i32, 20);

assert_eq!(Point::from(n_coord), Point::new(10, 20));

§Convert a Vector2<u8> into a Point

Be sure to enable the nalgebra_support feature to get Nalgebra integration.

Smaller unsigned types that can be converted to i32 are also supported in conversions.

use embedded_graphics::geometry::Point;
use nalgebra::Vector2;

let n_coord = Vector2::new(10u8, 20);

assert_eq!(Point::from(n_coord), Point::new(10, 20));

Fields§

§x: i32

The x coordinate.

§y: i32

The y coordinate.

Implementations§

source§

impl Point

source

pub const fn new(x: i32, y: i32) -> Self

Creates a point from X and Y coordinates.

source

pub const fn zero() -> Self

Creates a point with X and Y equal to zero.

source

pub fn abs(self) -> Self

Remove the sign from a coordinate

let point = Point::new(-5, -10);

assert_eq!(point.abs(), Point::new(5, 10));

Trait Implementations§

source§

impl Add<Size> for Point

source§

fn add(self, other: Size) -> Point

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.

source§

type Output = Point

The resulting type after applying the + operator.
source§

impl Add for Point

source§

type Output = Point

The resulting type after applying the + operator.
source§

fn add(self, other: Point) -> Point

Performs the + operation. Read more
source§

impl AddAssign<Size> for Point

source§

fn add_assign(&mut self, other: Size)

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.

source§

impl AddAssign for Point

source§

fn add_assign(&mut self, other: Point)

Performs the += operation. Read more
source§

impl Clone for Point

source§

fn clone(&self) -> Point

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 Debug for Point

source§

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

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

impl Default for Point

source§

fn default() -> Point

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

impl Div<i32> for Point

source§

type Output = Point

The resulting type after applying the / operator.
source§

fn div(self, rhs: i32) -> Point

Performs the / operation. Read more
source§

impl DivAssign<i32> for Point

source§

fn div_assign(&mut self, rhs: i32)

Performs the /= operation. Read more
source§

impl From<&[i32; 2]> for Point

source§

fn from(other: &[i32; 2]) -> Self

Converts to this type from the input type.
source§

impl From<&Point> for (i32, i32)

source§

fn from(other: &Point) -> (i32, i32)

Converts to this type from the input type.
source§

impl From<[i32; 2]> for Point

source§

fn from(other: [i32; 2]) -> Self

Converts to this type from the input type.
source§

impl From<(i32, i32)> for Point

source§

fn from(other: (i32, i32)) -> Self

Converts to this type from the input type.
source§

impl From<Point> for [i32; 2]

source§

fn from(other: Point) -> [i32; 2]

Converts to this type from the input type.
source§

impl From<Point> for (i32, i32)

source§

fn from(other: Point) -> (i32, i32)

Converts to this type from the input type.
source§

impl Hash for Point

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Index<usize> for Point

source§

type Output = i32

The returned type after indexing.
source§

fn index(&self, idx: usize) -> &i32

Performs the indexing (container[index]) operation. Read more
source§

impl Mul<i32> for Point

source§

type Output = Point

The resulting type after applying the * operator.
source§

fn mul(self, rhs: i32) -> Point

Performs the * operation. Read more
source§

impl MulAssign<i32> for Point

source§

fn mul_assign(&mut self, rhs: i32)

Performs the *= operation. Read more
source§

impl Neg for Point

source§

type Output = Point

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl Ord for Point

source§

fn cmp(&self, other: &Point) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for Point

source§

fn eq(&self, other: &Point) -> 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 PartialOrd for Point

source§

fn partial_cmp(&self, other: &Point) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Sub<Size> for Point

source§

fn sub(self, other: Size) -> Point

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.

source§

type Output = Point

The resulting type after applying the - operator.
source§

impl Sub for Point

source§

type Output = Point

The resulting type after applying the - operator.
source§

fn sub(self, other: Point) -> Point

Performs the - operation. Read more
source§

impl SubAssign<Size> for Point

source§

fn sub_assign(&mut self, other: Size)

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.

source§

impl SubAssign for Point

source§

fn sub_assign(&mut self, other: Point)

Performs the -= operation. Read more
source§

impl TryFrom<&[u32; 2]> for Point

source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(point: &[u32; 2]) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<[u32; 2]> for Point

source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(point: [u32; 2]) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<(u32, u32)> for Point

source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(point: (u32, u32)) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Point> for [u32; 2]

source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(point: Point) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Point> for (u32, u32)

source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(point: Point) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Copy for Point

source§

impl Eq for Point

source§

impl StructuralPartialEq for Point

Auto Trait Implementations§

§

impl Freeze for Point

§

impl RefUnwindSafe for Point

§

impl Send for Point

§

impl Sync for Point

§

impl Unpin for Point

§

impl UnwindSafe for Point

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

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

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 8 bytes