Struct rusttype::Vector
[−]
[src]
pub struct Vector<N> { pub x: N, pub y: N, }
A vector in 2-dimensional space, with each dimension of type N
.
Legal operations on vectors are addition and subtraction by vectors, addition by points (to give points), and multiplication and division by scalars.
Fields
x: N
y: N
Trait Implementations
impl<N: Hash> Hash for Vector<N>
[src]
fn hash<__HN: Hasher>(&self, __arg_0: &mut __HN)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0
Feeds a slice of this type into the state provided.
impl<N: Eq> Eq for Vector<N>
[src]
impl<N: PartialEq> PartialEq for Vector<N>
[src]
fn eq(&self, __arg_0: &Vector<N>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Vector<N>) -> bool
This method tests for !=
.
impl<N: Ord> Ord for Vector<N>
[src]
fn cmp(&self, __arg_0: &Vector<N>) -> Ordering
This method returns an Ordering
between self
and other
. Read more
impl<N: PartialOrd> PartialOrd for Vector<N>
[src]
fn partial_cmp(&self, __arg_0: &Vector<N>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, __arg_0: &Vector<N>) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, __arg_0: &Vector<N>) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, __arg_0: &Vector<N>) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, __arg_0: &Vector<N>) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl<N: Debug> Debug for Vector<N>
[src]
impl<N: Clone> Clone for Vector<N>
[src]
fn clone(&self) -> Vector<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 Vector<N>
[src]
impl<N: Add<Output=N>> Add for Vector<N>
[src]
type Output = Vector<N>
The resulting type after applying the +
operator
fn add(self, rhs: Vector<N>) -> Vector<N>
The method for the +
operator
impl<N: Sub<Output=N>> Sub for Vector<N>
[src]
type Output = Vector<N>
The resulting type after applying the -
operator
fn sub(self, rhs: Vector<N>) -> Vector<N>
The method for the -
operator
impl Mul<f32> for Vector<f32>
[src]
type Output = Vector<f32>
The resulting type after applying the *
operator
fn mul(self, rhs: f32) -> Vector<f32>
The method for the *
operator
impl Mul<f64> for Vector<f64>
[src]
type Output = Vector<f64>
The resulting type after applying the *
operator
fn mul(self, rhs: f64) -> Vector<f64>
The method for the *
operator
impl Div<f32> for Vector<f32>
[src]
type Output = Vector<f32>
The resulting type after applying the /
operator
fn div(self, rhs: f32) -> Vector<f32>
The method for the /
operator
impl Div<f64> for Vector<f64>
[src]
type Output = Vector<f64>
The resulting type after applying the /
operator
fn div(self, rhs: f64) -> Vector<f64>
The method for the /
operator