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: Debug> Debug for Point<N>
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<N: Clone> Clone for 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

Performs copy-assignment from source. Read more

impl<N: Copy> Copy for Point<N>
[src]

impl<N: Sub<Output=N>> Sub for Point<N>
[src]

type Output = Vector<N>

The resulting type after applying the - operator

fn sub(self, rhs: Point<N>) -> Vector<N>

The method for the - operator

impl<N: Add<Output=N>> Add<Vector<N>> for Point<N>
[src]

type Output = Point<N>

The resulting type after applying the + operator

fn add(self, rhs: Vector<N>) -> Point<N>

The method for the + operator

impl<N: Sub<Output=N>> Sub<Vector<N>> for Point<N>
[src]

type Output = Point<N>

The resulting type after applying the - operator

fn sub(self, rhs: Vector<N>) -> Point<N>

The method for the - operator