Struct cgmath::Vector2
[−]
[src]
#[repr(C)]pub struct Vector2<S> { pub x: S, pub y: S, }
A 2-dimensional vector.
This type is marked as #[repr(C)].
Fields
x: S
The x component of the vector.
y: S
The y component of the vector.
Methods
impl<S> Vector2<S>[src]
impl<S: NumCast + Copy> Vector2<S>[src]
impl<S: BaseNum> Vector2<S>[src]
fn unit_x() -> Vector2<S>[src]
A unit vector in the x direction.
fn unit_y() -> Vector2<S>[src]
A unit vector in the y direction.
fn perp_dot(self, other: Vector2<S>) -> S[src]
The perpendicular dot product of the vector and other.
fn extend(self, z: S) -> Vector3<S>[src]
Create a Vector3, using the x and y values from this vector, and the
provided z.
Trait Implementations
impl<S: PartialEq> PartialEq for Vector2<S>[src]
fn eq(&self, __arg_0: &Vector2<S>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Vector2<S>) -> bool[src]
This method tests for !=.
impl<S: Eq> Eq for Vector2<S>[src]
impl<S: Copy> Copy for Vector2<S>[src]
impl<S: Clone> Clone for Vector2<S>[src]
fn clone(&self) -> Vector2<S>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<S: Hash> Hash for Vector2<S>[src]
fn hash<__HS: Hasher>(&self, __arg_0: &mut __HS)[src]
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]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl<S: BaseFloat> MetricSpace for Vector2<S>[src]
type Metric = S
The metric to be returned by the distance function.
fn distance2(self, other: Self) -> S[src]
Returns the squared distance. Read more
fn distance(self, other: Self) -> Self::Metric[src]
The distance between two values.
impl<S: Copy> Array for Vector2<S>[src]
type Element = S
fn len() -> usize[src]
Get the number of elements in the array type Read more
fn from_value(scalar: S) -> Vector2<S>[src]
Construct a vector from a single value, replicating it. Read more
fn sum(self) -> S where
S: Add<Output = S>, [src]
S: Add<Output = S>,
The sum of the elements of the array.
fn product(self) -> S where
S: Mul<Output = S>, [src]
S: Mul<Output = S>,
The product of the elements of the array.
fn as_ptr(&self) -> *const Self::Element[src]
Get the pointer to the first element of the array.
fn as_mut_ptr(&mut self) -> *mut Self::Element[src]
Get a mutable pointer to the first element of the array.
fn swap_elements(&mut self, i: usize, j: usize)[src]
Swap the elements at indices i and j in-place.
impl<S: BaseNum> Zero for Vector2<S>[src]
fn zero() -> Vector2<S>[src]
Returns the additive identity element of Self, 0. Read more
fn is_zero(&self) -> bool[src]
Returns true if self is equal to the additive identity.
impl<S: BaseNum> Sum<Vector2<S>> for Vector2<S>[src]
fn sum<I: Iterator<Item = Vector2<S>>>(iter: I) -> Vector2<S>[src]
Method which takes an iterator and generates Self from the elements by "summing up" the items. Read more
impl<'a, S: 'a + BaseNum> Sum<&'a Vector2<S>> for Vector2<S>[src]
fn sum<I: Iterator<Item = &'a Vector2<S>>>(iter: I) -> Vector2<S>[src]
Method which takes an iterator and generates Self from the elements by "summing up" the items. Read more
impl<S: BaseNum> VectorSpace for Vector2<S>[src]
type Scalar = S
The associated scalar.
impl<S: Neg<Output = S>> Neg for Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the - operator.
fn neg(self) -> Vector2<S>[src]
Performs the unary - operation.
impl<S: BaseFloat> ApproxEq for Vector2<S>[src]
type Epsilon = S::Epsilon
Used for specifying relative comparisons.
fn default_epsilon() -> S::Epsilon[src]
The default tolerance to use when testing values that are close together. Read more
fn default_max_relative() -> S::Epsilon[src]
The default relative tolerance for testing values that are far-apart. Read more
fn default_max_ulps() -> u32[src]
The default ULPs to tolerate when testing values that are far-apart. Read more
fn relative_eq(
&self,
other: &Self,
epsilon: S::Epsilon,
max_relative: S::Epsilon
) -> bool[src]
&self,
other: &Self,
epsilon: S::Epsilon,
max_relative: S::Epsilon
) -> bool
A test for equality that uses a relative comparison if the values are far apart.
fn ulps_eq(&self, other: &Self, epsilon: S::Epsilon, max_ulps: u32) -> bool[src]
A test for equality that uses units in the last place (ULP) if the values are far apart.
fn relative_ne(
&self,
other: &Self,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon
) -> bool[src]
&self,
other: &Self,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon
) -> bool
The inverse of ApproxEq::relative_eq.
fn ulps_ne(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool[src]
The inverse of ApproxEq::ulps_eq.
impl<S: BaseFloat + Rand> Rand for Vector2<S>[src]
fn rand<R: Rng>(rng: &mut R) -> Vector2<S>[src]
Generates a random instance of this type using the specified source of randomness. Read more
impl<S: Bounded> Bounded for Vector2<S>[src]
fn min_value() -> Vector2<S>[src]
returns the smallest finite number this type can represent
fn max_value() -> Vector2<S>[src]
returns the largest finite number this type can represent
impl<S: BaseNum> Add<Vector2<S>> for Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the + operator.
fn add(self, other: Vector2<S>) -> Vector2<S>[src]
Performs the + operation.
impl<'a, S: BaseNum> Add<&'a Vector2<S>> for Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the + operator.
fn add(self, other: &'a Vector2<S>) -> Vector2<S>[src]
Performs the + operation.
impl<'a, S: BaseNum> Add<Vector2<S>> for &'a Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the + operator.
fn add(self, other: Vector2<S>) -> Vector2<S>[src]
Performs the + operation.
impl<'a, 'b, S: BaseNum> Add<&'a Vector2<S>> for &'b Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the + operator.
fn add(self, other: &'a Vector2<S>) -> Vector2<S>[src]
Performs the + operation.
impl<S: BaseNum + AddAssign<S>> AddAssign<Vector2<S>> for Vector2<S>[src]
fn add_assign(&mut self, other: Vector2<S>)[src]
Performs the += operation.
impl<S: BaseNum> Sub<Vector2<S>> for Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the - operator.
fn sub(self, other: Vector2<S>) -> Vector2<S>[src]
Performs the - operation.
impl<'a, S: BaseNum> Sub<&'a Vector2<S>> for Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the - operator.
fn sub(self, other: &'a Vector2<S>) -> Vector2<S>[src]
Performs the - operation.
impl<'a, S: BaseNum> Sub<Vector2<S>> for &'a Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the - operator.
fn sub(self, other: Vector2<S>) -> Vector2<S>[src]
Performs the - operation.
impl<'a, 'b, S: BaseNum> Sub<&'a Vector2<S>> for &'b Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the - operator.
fn sub(self, other: &'a Vector2<S>) -> Vector2<S>[src]
Performs the - operation.
impl<S: BaseNum + SubAssign<S>> SubAssign<Vector2<S>> for Vector2<S>[src]
fn sub_assign(&mut self, other: Vector2<S>)[src]
Performs the -= operation.
impl<S: BaseNum> Mul<S> for Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the * operator.
fn mul(self, other: S) -> Vector2<S>[src]
Performs the * operation.
impl<'a, S: BaseNum> Mul<S> for &'a Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the * operator.
fn mul(self, other: S) -> Vector2<S>[src]
Performs the * operation.
impl<S: BaseNum + MulAssign<S>> MulAssign<S> for Vector2<S>[src]
fn mul_assign(&mut self, scalar: S)[src]
Performs the *= operation.
impl<S: BaseNum> Div<S> for Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the / operator.
fn div(self, other: S) -> Vector2<S>[src]
Performs the / operation.
impl<'a, S: BaseNum> Div<S> for &'a Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the / operator.
fn div(self, other: S) -> Vector2<S>[src]
Performs the / operation.
impl<S: BaseNum + DivAssign<S>> DivAssign<S> for Vector2<S>[src]
fn div_assign(&mut self, scalar: S)[src]
Performs the /= operation.
impl<S: BaseNum> Rem<S> for Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the % operator.
fn rem(self, other: S) -> Vector2<S>[src]
Performs the % operation.
impl<'a, S: BaseNum> Rem<S> for &'a Vector2<S>[src]
type Output = Vector2<S>
The resulting type after applying the % operator.
fn rem(self, other: S) -> Vector2<S>[src]
Performs the % operation.
impl<S: BaseNum + RemAssign<S>> RemAssign<S> for Vector2<S>[src]
fn rem_assign(&mut self, scalar: S)[src]
Performs the %= operation.
impl<S: BaseNum> ElementWise for Vector2<S>[src]
fn add_element_wise(self, rhs: Vector2<S>) -> Vector2<S>[src]
fn sub_element_wise(self, rhs: Vector2<S>) -> Vector2<S>[src]
fn mul_element_wise(self, rhs: Vector2<S>) -> Vector2<S>[src]
fn div_element_wise(self, rhs: Vector2<S>) -> Vector2<S>[src]
fn rem_element_wise(self, rhs: Vector2<S>) -> Vector2<S>[src]
fn add_assign_element_wise(&mut self, rhs: Vector2<S>)[src]
fn sub_assign_element_wise(&mut self, rhs: Vector2<S>)[src]
fn mul_assign_element_wise(&mut self, rhs: Vector2<S>)[src]
fn div_assign_element_wise(&mut self, rhs: Vector2<S>)[src]
fn rem_assign_element_wise(&mut self, rhs: Vector2<S>)[src]
impl<S: BaseNum> ElementWise<S> for Vector2<S>[src]
fn add_element_wise(self, rhs: S) -> Vector2<S>[src]
fn sub_element_wise(self, rhs: S) -> Vector2<S>[src]
fn mul_element_wise(self, rhs: S) -> Vector2<S>[src]
fn div_element_wise(self, rhs: S) -> Vector2<S>[src]
fn rem_element_wise(self, rhs: S) -> Vector2<S>[src]
fn add_assign_element_wise(&mut self, rhs: S)[src]
fn sub_assign_element_wise(&mut self, rhs: S)[src]
fn mul_assign_element_wise(&mut self, rhs: S)[src]
fn div_assign_element_wise(&mut self, rhs: S)[src]
fn rem_assign_element_wise(&mut self, rhs: S)[src]
impl<S> Index<usize> for Vector2<S>[src]
type Output = S
The returned type after indexing.
fn index<'a>(&'a self, i: usize) -> &'a S[src]
Performs the indexing (container[index]) operation.
impl<S> IndexMut<usize> for Vector2<S>[src]
fn index_mut<'a>(&'a mut self, i: usize) -> &'a mut S[src]
Performs the mutable indexing (container[index]) operation.
impl<S> Index<Range<usize>> for Vector2<S>[src]
type Output = [S]
The returned type after indexing.
fn index<'a>(&'a self, i: Range<usize>) -> &'a [S][src]
Performs the indexing (container[index]) operation.
impl<S> IndexMut<Range<usize>> for Vector2<S>[src]
fn index_mut<'a>(&'a mut self, i: Range<usize>) -> &'a mut [S][src]
Performs the mutable indexing (container[index]) operation.
impl<S> Index<RangeTo<usize>> for Vector2<S>[src]
type Output = [S]
The returned type after indexing.
fn index<'a>(&'a self, i: RangeTo<usize>) -> &'a [S][src]
Performs the indexing (container[index]) operation.
impl<S> IndexMut<RangeTo<usize>> for Vector2<S>[src]
fn index_mut<'a>(&'a mut self, i: RangeTo<usize>) -> &'a mut [S][src]
Performs the mutable indexing (container[index]) operation.
impl<S> Index<RangeFrom<usize>> for Vector2<S>[src]
type Output = [S]
The returned type after indexing.
fn index<'a>(&'a self, i: RangeFrom<usize>) -> &'a [S][src]
Performs the indexing (container[index]) operation.
impl<S> IndexMut<RangeFrom<usize>> for Vector2<S>[src]
fn index_mut<'a>(&'a mut self, i: RangeFrom<usize>) -> &'a mut [S][src]
Performs the mutable indexing (container[index]) operation.
impl<S> Index<RangeFull> for Vector2<S>[src]
type Output = [S]
The returned type after indexing.
fn index<'a>(&'a self, i: RangeFull) -> &'a [S][src]
Performs the indexing (container[index]) operation.
impl<S> IndexMut<RangeFull> for Vector2<S>[src]
fn index_mut<'a>(&'a mut self, i: RangeFull) -> &'a mut [S][src]
Performs the mutable indexing (container[index]) operation.
impl<S> Into<[S; 2]> for Vector2<S>[src]
impl<S> AsRef<[S; 2]> for Vector2<S>[src]
impl<S> AsMut<[S; 2]> for Vector2<S>[src]
impl<S: Clone> From<[S; 2]> for Vector2<S>[src]
impl<'a, S> From<&'a [S; 2]> for &'a Vector2<S>[src]
impl<'a, S> From<&'a mut [S; 2]> for &'a mut Vector2<S>[src]
impl<S> Into<(S, S)> for Vector2<S>[src]
impl<S> AsRef<(S, S)> for Vector2<S>[src]
impl<S> AsMut<(S, S)> for Vector2<S>[src]
impl<S> From<(S, S)> for Vector2<S>[src]
impl<'a, S> From<&'a (S, S)> for &'a Vector2<S>[src]
impl<'a, S> From<&'a mut (S, S)> for &'a mut Vector2<S>[src]
impl<S: BaseFloat> InnerSpace for Vector2<S>[src]
fn dot(self, other: Vector2<S>) -> S[src]
Vector dot (or inner) product.
fn angle(self, other: Vector2<S>) -> Rad<S>[src]
Returns the angle between two vectors in radians.
fn is_perpendicular(self, other: Self) -> bool[src]
Returns true if the vector is perpendicular (at right angles) to the other vector. Read more
fn magnitude2(self) -> Self::Scalar[src]
Returns the squared magnitude. Read more
fn magnitude(self) -> Self::Scalar[src]
The distance from the tail to the tip of the vector.
fn normalize(self) -> Self[src]
Returns a vector with the same direction, but with a magnitude of 1.
fn normalize_to(self, magnitude: Self::Scalar) -> Self[src]
Returns a vector with the same direction and a given magnitude.
fn lerp(self, other: Self, amount: Self::Scalar) -> Self[src]
Returns the result of linearly interpolating the magnitude of the vector towards the magnitude of other by the specified amount. Read more
fn project_on(self, other: Self) -> Self[src]
Returns the vector projection of the current inner space projected onto the supplied argument. Read more