Struct embedded_graphics::geometry::Point[][src]

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

impl Point[src]

pub const fn new(x: i32, y: i32) -> Point[src]

Creates a point from X and Y coordinates.

pub const fn new_equal(value: i32) -> Point[src]

Creates a point with X and Y values set to an equal value.

Examples

use embedded_graphics::geometry::Point;

let point = Point::new_equal(11);

assert_eq!(point, Point { x: 11, y: 11 });

pub const fn zero() -> Point[src]

Creates a point with X and Y equal to zero.

pub const fn x_axis(self) -> Point[src]

Returns a point with equal x value and y set to 0.

Examples

Move a Point along the X axis.

use embedded_graphics::geometry::Point;

let translate = Point::new(20, 30);

let point = Point::new(10, 15);

let moved_x = point + translate.x_axis();

assert_eq!(moved_x, Point::new(30, 15));

pub const fn y_axis(self) -> Point[src]

Returns a point with equal y value and x set to 0.

Examples

Move a Point along the Y axis.

use embedded_graphics::geometry::Point;

let translate = Point::new(20, 30);

let point = Point::new(10, 15);

let moved_y = point + translate.y_axis();

assert_eq!(moved_y, Point::new(10, 45));

pub const fn abs(self) -> Point[src]

Remove the sign from a coordinate

Examples

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

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

pub fn component_min(self, other: Point) -> Point[src]

Returns the componentwise minimum of two Points

Examples

use embedded_graphics::geometry::Point;

let min = Point::new(20, 30).component_min(Point::new(15, 50));

assert_eq!(min, Point::new(15, 30));

pub fn component_max(self, other: Point) -> Point[src]

Returns the componentwise maximum of two Points

Examples

use embedded_graphics::geometry::Point;

let min = Point::new(20, 30).component_max(Point::new(15, 50));

assert_eq!(min, Point::new(20, 50));

pub fn component_mul(self, other: Point) -> Point[src]

Returns the componentwise multiplication of two Points.

use embedded_graphics::geometry::Point;

let result = Point::new(20, 30).component_mul(Point::new(-2, 3));

assert_eq!(result, Point::new(-40, 90));

pub fn component_div(self, other: Point) -> Point[src]

Returns the componentwise division of two Pointss.

Panics

Panics if one of the components of other equals zero.

use embedded_graphics::geometry::Point;

let result = Point::new(20, 30).component_div(Point::new(10, -3));

assert_eq!(result, Point::new(2, -10));

Trait Implementations

impl Add<Point> for Point[src]

type Output = Point

The resulting type after applying the + operator.

pub fn add(self, other: Point) -> Point[src]

Performs the + operation. Read more

impl Add<Size> for Point[src]

pub fn add(self, other: Size) -> Point[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.

type Output = Point

The resulting type after applying the + operator.

impl AddAssign<Point> for Point[src]

pub fn add_assign(&mut self, other: Point)[src]

Performs the += operation. Read more

impl AddAssign<Size> for Point[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 Clone for Point[src]

pub fn clone(&self) -> Point[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Point[src]

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

Formats the value using the given formatter. Read more

impl Default for Point[src]

pub fn default() -> Point[src]

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

impl Div<i32> for Point[src]

type Output = Point

The resulting type after applying the / operator.

pub fn div(self, rhs: i32) -> Point[src]

Performs the / operation. Read more

impl DivAssign<i32> for Point[src]

pub fn div_assign(&mut self, rhs: i32)[src]

Performs the /= operation. Read more

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

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

Performs the conversion.

impl<'_, N> From<&'_ Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>> for Point where
    N: Into<i32> + Scalar + Copy
[src]

pub fn from(
    other: &Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>
) -> Point
[src]

Performs the conversion.

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

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

Performs the conversion.

impl From<(i32, i32)> for Point[src]

pub fn from(other: (i32, i32)) -> Point[src]

Performs the conversion.

impl<N> From<Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>> for Point where
    N: Into<i32> + Scalar + Copy
[src]

pub fn from(
    other: Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>
) -> Point
[src]

Performs the conversion.

impl Hash for Point[src]

pub fn hash<__H>(&self, state: &mut __H) where
    __H: Hasher
[src]

Feeds this value into the given Hasher. Read more

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

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

impl Index<usize> for Point[src]

type Output = i32

The returned type after indexing.

pub fn index(&self, idx: usize) -> &i32[src]

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

impl Mul<i32> for Point[src]

type Output = Point

The resulting type after applying the * operator.

pub fn mul(self, rhs: i32) -> Point[src]

Performs the * operation. Read more

impl MulAssign<i32> for Point[src]

pub fn mul_assign(&mut self, rhs: i32)[src]

Performs the *= operation. Read more

impl Neg for Point[src]

type Output = Point

The resulting type after applying the - operator.

pub fn neg(self) -> <Point as Neg>::Output[src]

Performs the unary - operation. Read more

impl Ord for Point[src]

pub fn cmp(&self, other: &Point) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl PartialEq<Point> for Point[src]

pub fn eq(&self, other: &Point) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

pub fn ne(&self, other: &Point) -> bool[src]

This method tests for !=.

impl PartialOrd<Point> for Point[src]

pub fn partial_cmp(&self, other: &Point) -> 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) -> bool
1.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) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Sub<Point> for Point[src]

type Output = Point

The resulting type after applying the - operator.

pub fn sub(self, other: Point) -> Point[src]

Performs the - operation. Read more

impl Sub<Size> for Point[src]

pub fn sub(self, other: Size) -> Point[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.

type Output = Point

The resulting type after applying the - operator.

impl SubAssign<Point> for Point[src]

pub fn sub_assign(&mut self, other: Point)[src]

Performs the -= operation. Read more

impl SubAssign<Size> for Point[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<'_> TryFrom<&'_ [u32; 2]> for Point[src]

type Error = TryFromIntError

The type returned in the event of a conversion error.

pub fn try_from(
    point: &[u32; 2]
) -> Result<Point, <Point as TryFrom<&'_ [u32; 2]>>::Error>
[src]

Performs the conversion.

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

type Error = TryFromIntError

The type returned in the event of a conversion error.

pub fn try_from(
    point: [u32; 2]
) -> Result<Point, <Point as TryFrom<[u32; 2]>>::Error>
[src]

Performs the conversion.

impl TryFrom<(u32, u32)> for Point[src]

type Error = TryFromIntError

The type returned in the event of a conversion error.

pub fn try_from(
    point: (u32, u32)
) -> Result<Point, <Point as TryFrom<(u32, u32)>>::Error>
[src]

Performs the conversion.

impl Copy for Point[src]

impl Eq for Point[src]

impl StructuralEq for Point[src]

impl StructuralPartialEq for Point[src]

Auto Trait Implementations

impl RefUnwindSafe for Point

impl Send for Point

impl Sync for Point

impl Unpin for Point

impl UnwindSafe for Point

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[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]

pub fn lossy_into(self) -> Dst[src]

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Debug + Any
[src]

pub fn inlined_clone(&self) -> T[src]

Performance hack: Clone doesn’t get inlined for Copy types in debug mode, so make it inline anyway.

fn is<T>() -> bool where
    T: Scalar
[src]

Tests if Self the same as the type T Read more

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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

Checks if self is actually part of its subset T (and can be converted to it).

pub fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

pub fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]

🔬 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<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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>, 

impl<T, Right> ClosedDiv<Right> for T where
    T: Div<Right, Output = T> + DivAssign<Right>, 

impl<T, Right> ClosedMul<Right> for T where
    T: Mul<Right, Output = T> + MulAssign<Right>, 

impl<T> ClosedNeg for T where
    T: Neg<Output = T>, 

impl<T, Right> ClosedSub<Right> for T where
    T: Sub<Right, Output = T> + SubAssign<Right>,