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: PartialOrd> PartialOrd for Point<N>
impl<N: PartialOrd> PartialOrd for Point<N>
impl<N: Copy> Copy for Point<N>
impl<N: Eq> Eq for Point<N>
impl<N> StructuralPartialEq for Point<N>
Auto Trait Implementations§
impl<N> Freeze for Point<N>where
N: Freeze,
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