[][src]Struct nannou::geom::vector::Vector2

#[repr(C)]
pub struct Vector2<S = Default> { pub x: S, pub y: S, }

A 2-dimensional vector.

Fields

x: Sy: S

Methods

impl<S> Vector2<S>[src]

pub fn new(x: S, y: S) -> Vector2<S>[src]

Construct a new vector, using the provided values.

pub fn from_value(scalar: S) -> Vector2<S> where
    S: Clone
[src]

Construct a vector using the given value for each field.

pub fn len(&self) -> usize[src]

The number of dimensions in the vector.

pub fn map<U, F>(self, f: F) -> Vector2<U> where
    F: FnMut(S) -> U, 
[src]

Perform the given operation on each field in the vector, returning a new vector constructed from the operations.

pub fn zip_map<T, U, F>(self, other: Vector2<T>, f: F) -> Vector2<U> where
    F: FnMut(S, T) -> U, 
[src]

Perform the given operation on each each field on both vectors, returning a new vector constructed from the operations.

pub fn is_finite(&self) -> bool where
    S: BaseFloat
[src]

Test whether or not the vector is infinite.

pub fn cast<T>(&self) -> Option<Vector2<T>> where
    S: NumCast + Clone,
    T: NumCast
[src]

Component-wise casting to another type.

pub fn zero() -> Vector2<S> where
    S: Zero
[src]

A zeroed vector.

pub fn is_zero(&self) -> bool where
    S: PartialEq + Zero
[src]

Whether or not the vector is zeroed.

pub fn one() -> Vector2<S> where
    S: One
[src]

A vector with 1 for each element.

pub fn is_one(&self) -> bool where
    S: PartialEq + One
[src]

Whether or not each element in the vector is equal to 1.

pub fn is_nan(&self) -> bool where
    S: BaseFloat
[src]

Tests whether or not any of the vector's elements is NaN.

pub fn sum(self) -> S where
    S: Add<Output = S> + Copy
[src]

Sum the fields of the vector.

pub fn product(self) -> S where
    S: Mul<Output = S> + Copy
[src]

The product of the fields of the vector.

pub fn limit_magnitude(self, limit: S) -> Self where
    S: BaseFloat
[src]

Return a vector whose magnitude is limited to the given value.

pub fn with_magnitude(self, magnitude: S) -> Self where
    S: BaseFloat
[src]

Return a vector with the given magnitude.

pub fn normalize(self) -> Self where
    S: BaseFloat
[src]

Return a normalized vector.

If self is_zero, this returns self.

pub fn dot(self, other: Vector2<S>) -> S where
    S: BaseFloat
[src]

The dot product of self and the given vector.

impl<S> Vector2<S>[src]

pub fn unit_x() -> Vector2<S> where
    S: Zero + One
[src]

A unit vector in the x direction.

pub fn unit_y() -> Vector2<S> where
    S: Zero + One
[src]

A unit vector in the y direction.

pub fn perp_dot(self, other: Vector2<S>) -> S where
    S: Sub<Output = S> + Mul<Output = S>, 
[src]

The perpendicular dot product of the vector and other.

pub fn extend(self, z: S) -> Vector3<S>[src]

Create a Vector3, using the x and y values from this vector, and the provided z.

pub fn angle(self) -> S where
    S: BaseFloat
[src]

Returns the angle of the vector in radians.

Examples

let vector = Vector2::new(-0.5, 0.5);
let theta = vector.angle() * -1.0;
draw.quad()
.rotate(theta);
assert_eq!(theta, -2.356194490192345);

Trait Implementations

impl<S: PartialEq> PartialEq<Vector2<S>> for Vector2<S>[src]

impl<S> AsRef<[S; 2]> for Vector2<S>[src]

impl<S> From<Vector2<S>> for Vector2<S>[src]

impl<S> From<Point2<S>> for Vector2<S>[src]

impl<S> From<[S; 2]> for Vector2<S> where
    S: Copy
[src]

impl<S> From<(S, S)> for Vector2<S>[src]

impl<S> From<Vector2<S>> for Vector3<S> where
    S: Zero
[src]

impl<S> From<Vector2<S>> for Vector4<S> where
    S: Zero
[src]

impl<S: Clone> Clone for Vector2<S>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<S: Default> Default for Vector2<S>[src]

impl<S: Eq> Eq for Vector2<S>[src]

impl<S> Into<Vector2<S>> for Vector2<S>[src]

impl<S> Into<Point2<S>> for Vector2<S>[src]

impl<S> Into<[S; 2]> for Vector2<S>[src]

impl<S> Into<(S, S)> for Vector2<S>[src]

impl<S: Copy> Copy for Vector2<S>[src]

impl<S> AsMut<[S; 2]> for Vector2<S>[src]

impl<S> DerefMut for Vector2<S>[src]

impl<S: Debug> Debug for Vector2<S>[src]

impl<S> Add<Vector2<S>> for Vector2<S> where
    S: Add<Output = S>, 
[src]

type Output = Vector2<S>

The resulting type after applying the + operator.

impl<S> Sub<Vector2<S>> for Vector2<S> where
    S: Sub<Output = S>, 
[src]

type Output = Vector2<S>

The resulting type after applying the - operator.

impl<S> Mul<Vector2<S>> for Vector2<S> where
    S: Mul<Output = S>, 
[src]

type Output = Vector2<S>

The resulting type after applying the * operator.

impl<S> Mul<S> for Vector2<S> where
    S: Copy + Mul<Output = S>, 
[src]

type Output = Vector2<S>

The resulting type after applying the * operator.

impl<S> Div<Vector2<S>> for Vector2<S> where
    S: Div<Output = S>, 
[src]

type Output = Vector2<S>

The resulting type after applying the / operator.

impl<S> Div<S> for Vector2<S> where
    S: Copy + Div<Output = S>, 
[src]

type Output = Vector2<S>

The resulting type after applying the / operator.

impl<S> Rem<Vector2<S>> for Vector2<S> where
    S: Rem<Output = S>, 
[src]

type Output = Vector2<S>

The resulting type after applying the % operator.

impl<S> Rem<S> for Vector2<S> where
    S: Copy + Rem<Output = S>, 
[src]

type Output = Vector2<S>

The resulting type after applying the % operator.

impl<S> Neg for Vector2<S> where
    S: Neg<Output = S>, 
[src]

type Output = Vector2<S>

The resulting type after applying the - operator.

impl<S> AddAssign<Vector2<S>> for Vector2<S> where
    S: AddAssign
[src]

impl<S> SubAssign<Vector2<S>> for Vector2<S> where
    S: SubAssign
[src]

impl<S> MulAssign<Vector2<S>> for Vector2<S> where
    S: Copy + MulAssign
[src]

impl<S> MulAssign<S> for Vector2<S> where
    S: Copy + MulAssign
[src]

impl<S> DivAssign<Vector2<S>> for Vector2<S> where
    S: Copy + DivAssign
[src]

impl<S> DivAssign<S> for Vector2<S> where
    S: Copy + DivAssign
[src]

impl<S> RemAssign<Vector2<S>> for Vector2<S> where
    S: Copy + RemAssign
[src]

impl<S> RemAssign<S> for Vector2<S> where
    S: Copy + RemAssign
[src]

impl<S> Deref for Vector2<S>[src]

type Target = [S; 2]

The resulting type after dereferencing.

impl<S> Index<usize> for Vector2<S>[src]

type Output = S

The returned type after indexing.

impl<S> Index<Range<usize>> for Vector2<S>[src]

type Output = [S]

The returned type after indexing.

impl<S> Index<RangeTo<usize>> for Vector2<S>[src]

type Output = [S]

The returned type after indexing.

impl<S> Index<RangeFrom<usize>> for Vector2<S>[src]

type Output = [S]

The returned type after indexing.

impl<S> Index<RangeFull> for Vector2<S>[src]

type Output = [S]

The returned type after indexing.

impl<S> IndexMut<usize> for Vector2<S>[src]

impl<S> IndexMut<Range<usize>> for Vector2<S>[src]

impl<S> IndexMut<RangeTo<usize>> for Vector2<S>[src]

impl<S> IndexMut<RangeFrom<usize>> for Vector2<S>[src]

impl<S> IndexMut<RangeFull> for Vector2<S>[src]

impl<S: Hash> Hash for Vector2<S>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<S> Sum<Vector2<S>> for Vector2<S> where
    S: Zero + Add<Output = S>, 
[src]

impl<'a, S: 'a> Sum<&'a Vector2<S>> for Vector2<S> where
    S: 'a + Clone + Zero + Add<Output = S>, 
[src]

impl<S> Bounded for Vector2<S> where
    S: Bounded
[src]

impl<S> Zero for Vector2<S> where
    S: PartialEq + Zero
[src]

fn set_zero(&mut self)[src]

Sets self to the additive identity element of Self, 0.

impl<S> Serialize for Vector2<S> where
    S: Serialize
[src]

impl<'de, S> Deserialize<'de> for Vector2<S> where
    S: Deserialize<'de>, 
[src]

impl<S> Distribution<Vector2<S>> for Standard where
    Standard: Distribution<S>, 
[src]

Important traits for DistIter<'a, D, R, T>
fn sample_iter<R>(&'a self, rng: &'a mut R) -> DistIter<'a, Self, R, T> where
    R: Rng
[src]

Create an iterator that generates random values of T, using rng as the source of randomness. Read more

impl<S> ApproxEq for Vector2<S> where
    S: ApproxEq,
    S::Epsilon: Copy
[src]

type Epsilon = S::Epsilon

Used for specifying relative comparisons.

fn relative_ne(
    &self,
    other: &Self,
    epsilon: Self::Epsilon,
    max_relative: Self::Epsilon
) -> bool
[src]

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> VectorSpace for Vector2<S> where
    S: BaseNum
[src]

type Scalar = S

The associated scalar.

impl<S> MetricSpace for Vector2<S> where
    S: BaseFloat
[src]

type Metric = S

The metric to be returned by the distance function.

fn distance(self, other: Self) -> Self::Metric[src]

The distance between two values.

impl<S> InnerSpace for Vector2<S> where
    S: BaseFloat
[src]

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

impl<S> ElementWise<S> for Vector2<S> where
    S: BaseNum
[src]

impl<S> ElementWise<Vector2<S>> for Vector2<S> where
    S: BaseFloat
[src]

impl<S> EuclideanSpace for Vector2<S> where
    S: BaseNum
[src]

type Scalar = S

The associated scalar over which the space is defined. Read more

type Diff = Vector2<S>

The associated space of displacement vectors.

fn midpoint(self, other: Self) -> Self[src]

Returns the middle point between two other points. Read more

fn centroid(points: &[Self]) -> Self[src]

Returns the average position of all points in the slice. Read more

impl<S> Array for Vector2<S> where
    S: Copy
[src]

type Element = S

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.

Auto Trait Implementations

impl<S> Send for Vector2<S> where
    S: Send

impl<S> Sync for Vector2<S> where
    S: Sync

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> NodeId for T where
    T: 'static + Copy + Clone + PartialEq<T> + Eq + Hash + Send
[src]

impl<T, Rhs> NumAssignOps<Rhs> for T where
    T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>, 
[src]

impl<T, Rhs, Output> NumOps<Rhs, Output> for T where
    T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>, 
[src]

impl<T> Style for T where
    T: Any + Debug + PartialEq<T>, 
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Content for T[src]

impl<T> SafeBorrow<T> for T[src]

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.