pub struct Point<N> {
pub x: N,
pub y: N,
}
Expand description
A point in 2-dimensional space, with each dimension of type N
.
Legal operations on points are addition and subtraction by vectors, and subtraction between points, to give a vector representing the offset between the two points. Combined with the legal operations on vectors, meaningful manipulations of vectors and points can be performed.
For example, to interpolate between two points by a factor t
:
let interpolated_point = p0 + (p1 - p0) * t;
Fields§
§x: N
§y: N
Trait Implementations§
source§impl<N: Ord> Ord for Point<N>
impl<N: Ord> Ord for Point<N>
source§impl<N: PartialEq> PartialEq for Point<N>
impl<N: PartialEq> PartialEq for Point<N>
source§impl<N: PartialOrd> PartialOrd for Point<N>
impl<N: PartialOrd> PartialOrd for Point<N>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<N: Copy> Copy for Point<N>
impl<N: Eq> Eq for Point<N>
impl<N> StructuralEq for Point<N>
impl<N> StructuralPartialEq for Point<N>
Auto Trait Implementations§
impl<N> RefUnwindSafe for Point<N>where
N: RefUnwindSafe,
impl<N> Send for Point<N>where
N: Send,
impl<N> Sync for Point<N>where
N: Sync,
impl<N> Unpin for Point<N>where
N: Unpin,
impl<N> UnwindSafe for Point<N>where
N: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more