#[repr(C)]
pub struct Point<N, Kind: CoordinateSpace> { pub x: N, pub y: N, /* private fields */ }
Expand description

A point as defined by its x and y coordinates

Operations on points are saturating.

Fields§

§x: N

horizontal coordinate

§y: N

vertical coordinate

Implementations§

source§

impl<N, Kind: CoordinateSpace> Point<N, Kind>

source

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

Create a new point

source§

impl<N: Sign + Copy + Debug, Kind: CoordinateSpace> Point<N, Kind>

source

pub fn to_size(self) -> Extent<N, Kind>

Convert this Point to a Extent with the same coordinates

Checks that the coordinates are positive with a debug_assert!().

source

pub fn to_size_abs(self) -> Extent<N, Kind>

Convert this Point to a Extent with the same coordinates

Ensures that the coordinates are positive by taking their absolute value

source§

impl<N: Copy + SaturatingMul, Kind: CoordinateSpace> Point<N, Kind>

source

pub fn saturating_mul(self, scale: Scale<N>) -> Point<N, Kind>

Multiply this point by a scale, if the result will overflow, saturate to the maximum value.

source§

impl<N: Ord + Copy, Kind: CoordinateSpace> Point<N, Kind>

source

pub fn clamp(self, rect: Rectangle<N, Kind>) -> Point<N, Kind>

Clamp this Point to within a Rectangle with in the same coordinate space.

The Point returned is guaranteed to be within the Rectangle

source§

impl<N: Approx, Kind: CoordinateSpace> Point<N, Kind>

source

pub fn round(self) -> Self

Round the coordinates to the nearest integer

source

pub fn floor(self) -> Self

Truncate the coordinates to the largest integer less than or equal to the coordinate.

source

pub fn ceil(self) -> Self

Round up the coordinates to the smallest integer greater than or equal to the coordinate.

source§

impl<N, Kind: CoordinateSpace> Point<N, Kind>

source

pub fn to<M: Copy + 'static>(self) -> Point<M, Kind>where N: AsPrimitive<M>,

Convert the number type of a point.

Trait Implementations§

source§

impl<N: Add<Output = N> + Copy, Kind: CoordinateSpace> Add<Extent<N, Kind>> for Point<N, Kind>

§

type Output = Point<N, Kind>

The resulting type after applying the + operator.
source§

fn add(self, other: Extent<N, Kind>) -> Point<N, Kind>

Performs the + operation. Read more
source§

impl<N: Add<Output = N> + Copy, Kind: CoordinateSpace> Add<Point<N, Kind>> for Point<N, Kind>

§

type Output = Point<N, Kind>

The resulting type after applying the + operator.
source§

fn add(self, other: Point<N, Kind>) -> Point<N, Kind>

Performs the + operation. Read more
source§

impl<N: Add<Output = N> + Copy, Kind: CoordinateSpace> AddAssign<Point<N, Kind>> for Point<N, Kind>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl<N: Clone, Kind: Clone + CoordinateSpace> Clone for Point<N, Kind>

source§

fn clone(&self) -> Point<N, Kind>

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<N: Debug, Kind: Debug + CoordinateSpace> Debug for Point<N, Kind>

source§

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

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

impl<N: Zero + Copy, Kind: CoordinateSpace> Default for Point<N, Kind>

source§

fn default() -> Self

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

impl<N: Copy + Div<Output = N>, Kind: CoordinateSpace> Div<Scale<N>> for Point<N, Kind>

§

type Output = Point<N, Kind>

The resulting type after applying the / operator.
source§

fn div(self, scale: Scale<N>) -> Self::Output

Performs the / operation. Read more
source§

impl<N: Hash, Kind: Hash + CoordinateSpace> Hash for Point<N, Kind>

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<N, Kind: CoordinateSpace> Map for Point<N, Kind>

§

type Output<Kind2> where Kind2: CoordinateSpace = Point<N, Kind2>

The output type with the new coordinate space.
source§

fn map<Kind2: CoordinateSpace>( self, f: impl FnOnce(Point<N, Kind2>) -> Point<N, Kind2> ) -> Point<N, Kind2>

Map from one coordinate space to another by applying a function.
source§

impl<N: Copy + Mul<Output = N>, Kind: CoordinateSpace> Mul<Scale<N>> for Point<N, Kind>

§

type Output = Point<N, Kind>

The resulting type after applying the * operator.
source§

fn mul(self, scale: Scale<N>) -> Self::Output

Performs the * operation. Read more
source§

impl<N: PartialEq, Kind: PartialEq + CoordinateSpace> PartialEq<Point<N, Kind>> for Point<N, Kind>

source§

fn eq(&self, other: &Point<N, Kind>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<N: SaturatingAdd + Copy, Kind: CoordinateSpace> SaturatingAdd for Point<N, Kind>

source§

fn saturating_add(&self, other: &Self) -> Self

Saturating addition. Computes self + other, saturating at the relevant high or low boundary of the type.
source§

impl<N: Sub<Output = N> + Copy, Kind: CoordinateSpace> Sub<Extent<N, Kind>> for Point<N, Kind>

§

type Output = Point<N, Kind>

The resulting type after applying the - operator.
source§

fn sub(self, other: Extent<N, Kind>) -> Point<N, Kind>

Performs the - operation. Read more
source§

impl<N: Sub<Output = N> + Copy, Kind: CoordinateSpace> Sub<Point<N, Kind>> for Point<N, Kind>

§

type Output = Point<N, Kind>

The resulting type after applying the - operator.
source§

fn sub(self, other: Point<N, Kind>) -> Point<N, Kind>

Performs the - operation. Read more
source§

impl<N: Sub<Output = N> + Copy, Kind: CoordinateSpace> SubAssign<Point<N, Kind>> for Point<N, Kind>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl<N: Copy, Kind: Copy + CoordinateSpace> Copy for Point<N, Kind>

source§

impl<N: Eq, Kind: Eq + CoordinateSpace> Eq for Point<N, Kind>

source§

impl<N, Kind: CoordinateSpace> StructuralEq for Point<N, Kind>

source§

impl<N, Kind: CoordinateSpace> StructuralPartialEq for Point<N, Kind>

Auto Trait Implementations§

§

impl<N, Kind> RefUnwindSafe for Point<N, Kind>where Kind: RefUnwindSafe, N: RefUnwindSafe,

§

impl<N, Kind> Send for Point<N, Kind>where Kind: Send, N: Send,

§

impl<N, Kind> Sync for Point<N, Kind>where Kind: Sync, N: Sync,

§

impl<N, Kind> Unpin for Point<N, Kind>where Kind: Unpin, N: Unpin,

§

impl<N, Kind> UnwindSafe for Point<N, Kind>where Kind: UnwindSafe, N: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dstwhere T: Cast<Dst>,

Casts the value.
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<Src, Dst> CastFrom<Src> for Dstwhere Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<T> DynClone for Twhere T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

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

const: unstable · 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<Src, Dst> LosslessTryInto<Dst> for Srcwhere Dst: LosslessTryFrom<Src>,

source§

fn lossless_try_into(self) -> Option<Dst>

Performs the conversion.
source§

impl<Src, Dst> LossyInto<Dst> for Srcwhere Dst: LossyFrom<Src>,

source§

fn lossy_into(self) -> Dst

Performs the conversion.
source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dstwhere T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dstwhere T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dstwhere T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.