Struct rusttype::Point [−][src]
pub struct Point<N> {
pub x: N,
pub y: N,
}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
impl<N: Copy> Copy for Point<N>[src]
impl<N: Copy> Copy for Point<N>impl<N: Clone> Clone for Point<N>[src]
impl<N: Clone> Clone for Point<N>fn clone(&self) -> Point<N>[src]
fn clone(&self) -> Point<N>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl<N: Debug> Debug for Point<N>[src]
impl<N: Debug> Debug for Point<N>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<N: PartialOrd> PartialOrd for Point<N>[src]
impl<N: PartialOrd> PartialOrd for Point<N>fn partial_cmp(&self, other: &Point<N>) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Point<N>) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Point<N>) -> bool[src]
fn lt(&self, other: &Point<N>) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Point<N>) -> bool[src]
fn le(&self, other: &Point<N>) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Point<N>) -> bool[src]
fn gt(&self, other: &Point<N>) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Point<N>) -> bool[src]
fn ge(&self, other: &Point<N>) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl<N: Ord> Ord for Point<N>[src]
impl<N: Ord> Ord for Point<N>fn cmp(&self, other: &Point<N>) -> Ordering[src]
fn cmp(&self, other: &Point<N>) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl<N: PartialEq> PartialEq for Point<N>[src]
impl<N: PartialEq> PartialEq for Point<N>fn eq(&self, other: &Point<N>) -> bool[src]
fn eq(&self, other: &Point<N>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Point<N>) -> bool[src]
fn ne(&self, other: &Point<N>) -> boolThis method tests for !=.
impl<N: Eq> Eq for Point<N>[src]
impl<N: Eq> Eq for Point<N>impl<N: Hash> Hash for Point<N>[src]
impl<N: Hash> Hash for Point<N>fn hash<__HN: Hasher>(&self, state: &mut __HN)[src]
fn hash<__HN: Hasher>(&self, state: &mut __HN)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]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl<N: Sub<Output = N>> Sub for Point<N>[src]
impl<N: Sub<Output = N>> Sub for Point<N>type Output = Vector<N>
The resulting type after applying the - operator.
fn sub(self, rhs: Point<N>) -> Vector<N>[src]
fn sub(self, rhs: Point<N>) -> Vector<N>Performs the - operation.
impl<N: Add<Output = N>> Add<Vector<N>> for Point<N>[src]
impl<N: Add<Output = N>> Add<Vector<N>> for Point<N>type Output = Point<N>
The resulting type after applying the + operator.
fn add(self, rhs: Vector<N>) -> Point<N>[src]
fn add(self, rhs: Vector<N>) -> Point<N>Performs the + operation.
impl<N: Sub<Output = N>> Sub<Vector<N>> for Point<N>[src]
impl<N: Sub<Output = N>> Sub<Vector<N>> for Point<N>type Output = Point<N>
The resulting type after applying the - operator.
fn sub(self, rhs: Vector<N>) -> Point<N>[src]
fn sub(self, rhs: Vector<N>) -> Point<N>Performs the - operation.
impl<N: Add<Output = N>> Add<Point<N>> for Vector<N>[src]
impl<N: Add<Output = N>> Add<Point<N>> for Vector<N>