Struct nannou::geom::DVec2

source ·
pub struct DVec2(/* private fields */);
Expand description

A 2-dimensional vector.

Implementations§

source§

impl DVec2

source

pub const ZERO: DVec2 = _

All zeroes.

source

pub const ONE: DVec2 = _

All ones.

source

pub const X: DVec2 = _

[1, 0]: a unit-length vector pointing along the positive X axis.

source

pub const Y: DVec2 = _

[0, 1]: a unit-length vector pointing along the positive Y axis.

source

pub const AXES: [DVec2; 2] = _

The unit axes.

source

pub fn new(x: f64, y: f64) -> DVec2

Creates a new vector.

source

pub fn extend(self, z: f64) -> DVec3

Creates a 3D vector from self and the given z value.

source

pub fn to_array(&self) -> [f64; 2]

[x, y]

source

pub fn splat(v: f64) -> DVec2

Creates a vector with all elements set to v.

source

pub fn select(mask: BVec2, if_true: DVec2, if_false: DVec2) -> DVec2

Creates a vector from the elements in if_true and if_false, selecting which to use for each element of self.

A true element in the mask uses the corresponding element from if_true, and false uses the element from if_false.

source

pub fn dot(self, other: DVec2) -> f64

Computes the dot product of self and other.

source

pub fn min(self, other: DVec2) -> DVec2

Returns a vector containing the mininum values for each element of self and other.

In other words this computes [self.x.max(other.x), self.y.max(other.y), ..].

source

pub fn max(self, other: DVec2) -> DVec2

Returns a vector containing the maximum values for each element of self and other.

In other words this computes [self.x.max(other.x), self.y.max(other.y), ..].

source

pub fn clamp(self, min: DVec2, max: DVec2) -> DVec2

Component-wise clamping of values, similar to f32::clamp.

Each element in min must be less-or-equal to the corresponing element in max.

Panics

Will panic if min is greater than max when glam_assert is enabled.

source

pub fn min_element(self) -> f64

Returns the horizontal minimum of self.

In other words this computes min(x, y, ..).

source

pub fn max_element(self) -> f64

Returns the horizontal maximum of self.

In other words this computes max(x, y, ..).

source

pub fn cmpeq(self, other: DVec2) -> BVec2

Returns a vector mask containing the result of a == comparison for each element of self and other.

In other words, this computes [self.x == other.x, self.y == other.y, ..] for all elements.

source

pub fn cmpne(self, other: DVec2) -> BVec2

Returns a vector mask containing the result of a != comparison for each element of self and other.

In other words this computes [self.x != other.x, self.y != other.y, ..] for all elements.

source

pub fn cmpge(self, other: DVec2) -> BVec2

Returns a vector mask containing the result of a >= comparison for each element of self and other.

In other words this computes [self.x >= other.x, self.y >= other.y, ..] for all elements.

source

pub fn cmpgt(self, other: DVec2) -> BVec2

Returns a vector mask containing the result of a > comparison for each element of self and other.

In other words this computes [self.x > other.x, self.y > other.y, ..] for all elements.

source

pub fn cmple(self, other: DVec2) -> BVec2

Returns a vector mask containing the result of a <= comparison for each element of self and other.

In other words this computes [self.x <= other.x, self.y <= other.y, ..] for all elements.

source

pub fn cmplt(self, other: DVec2) -> BVec2

Returns a vector mask containing the result of a < comparison for each element of self and other.

In other words this computes [self.x < other.x, self.y < other.y, ..] for all elements.

source

pub fn from_slice(slice: &[f64]) -> DVec2

Creates a vector from the first N values in slice.

Panics

Panics if slice is less than N elements long.

source

pub fn write_to_slice(self, slice: &mut [f64])

Writes the elements of self to the first N elements in slice.

Panics

Panics if slice is less than N elements long.

source

pub fn abs(self) -> DVec2

Returns a vector containing the absolute value of each element of self.

source

pub fn signum(self) -> DVec2

Returns a vector with elements representing the sign of self.

  • 1.0 if the number is positive, +0.0 or INFINITY
  • -1.0 if the number is negative, -0.0 or NEG_INFINITY
  • NAN if the number is NAN
source

pub fn perp(self) -> DVec2

Returns a vector that is equal to self rotated by 90 degrees.

source

pub fn perp_dot(self, other: DVec2) -> f64

The perpendicular dot product of self and other. Also known as the wedge product, 2d cross product, and determinant.

source

pub fn is_finite(self) -> bool

Returns true if, and only if, all elements are finite. If any element is either NaN, positive or negative infinity, this will return false.

source

pub fn is_nan(self) -> bool

Returns true if any elements are NaN.

source

pub fn is_nan_mask(self) -> BVec2

Performs is_nan on each element of self, returning a vector mask of the results.

In other words, this computes [x.is_nan(), y.is_nan(), z.is_nan(), w.is_nan()].

source

pub fn length(self) -> f64

Computes the length of self.

source

pub fn length_squared(self) -> f64

Computes the squared length of self.

This is faster than length() as it avoids a square root operation.

source

pub fn length_recip(self) -> f64

Computes 1.0 / length().

For valid results, self must not be of length zero.

source

pub fn distance(self, other: DVec2) -> f64

Computes the Euclidean distance between two points in space.

source

pub fn distance_squared(self, other: DVec2) -> f64

Compute the squared euclidean distance between two points in space.

source

pub fn normalize(self) -> DVec2

Returns self normalized to length 1.0.

For valid results, self must not be of length zero, nor very close to zero.

See also Self::try_normalize and Self::normalize_or_zero.

Panics

Will panic if self is zero length when glam_assert is enabled.

source

pub fn try_normalize(self) -> Option<DVec2>

Returns self normalized to length 1.0 if possible, else returns None.

In particular, if the input is zero (or very close to zero), or non-finite, the result of this operation will be None.

See also Self::normalize_or_zero.

source

pub fn normalize_or_zero(self) -> DVec2

Returns self normalized to length 1.0 if possible, else returns zero.

In particular, if the input is zero (or very close to zero), or non-finite, the result of this operation will be zero.

See also Self::try_normalize.

source

pub fn is_normalized(self) -> bool

Returns whether self is length 1.0 or not.

Uses a precision threshold of 1e-6.

source

pub fn project_onto(self, other: DVec2) -> DVec2

Returns the vector projection of self onto other.

other must be of non-zero length.

Panics

Will panic if other is zero length when glam_assert is enabled.

source

pub fn reject_from(self, other: DVec2) -> DVec2

Returns the vector rejection of self from other.

The vector rejection is the vector perpendicular to the projection of self onto other, in other words the result of self - self.project_onto(other).

other must be of non-zero length.

Panics

Will panic if other has a length of zero when glam_assert is enabled.

source

pub fn project_onto_normalized(self, other: DVec2) -> DVec2

Returns the vector projection of self onto other.

other must be normalized.

Panics

Will panic if other is not normalized when glam_assert is enabled.

source

pub fn reject_from_normalized(self, other: DVec2) -> DVec2

Returns the vector rejection of self from other.

The vector rejection is the vector perpendicular to the projection of self onto other, in other words the result of self - self.project_onto(other).

other must be normalized.

Panics

Will panic if other is not normalized when glam_assert is enabled.

source

pub fn round(self) -> DVec2

Returns a vector containing the nearest integer to a number for each element of self. Round half-way cases away from 0.0.

source

pub fn floor(self) -> DVec2

Returns a vector containing the largest integer less than or equal to a number for each element of self.

source

pub fn ceil(self) -> DVec2

Returns a vector containing the smallest integer greater than or equal to a number for each element of self.

source

pub fn fract(self) -> DVec2

Returns a vector containing the fractional part of the vector, e.g. self - self.floor().

Note that this is fast but not precise for large numbers.

source

pub fn exp(self) -> DVec2

Returns a vector containing e^self (the exponential function) for each element of self.

source

pub fn powf(self, n: f64) -> DVec2

Returns a vector containing each element of self raised to the power of n.

source

pub fn recip(self) -> DVec2

Returns a vector containing the reciprocal 1.0/n of each element of self.

source

pub fn lerp(self, other: DVec2, s: f64) -> DVec2

Performs a linear interpolation between self and other based on the value s.

When s is 0.0, the result will be equal to self. When s is 1.0, the result will be equal to other.

source

pub fn abs_diff_eq(self, other: DVec2, max_abs_diff: f64) -> bool

Returns true if the absolute difference of all elements between self and other is less than or equal to max_abs_diff.

This can be used to compare if two vectors contain similar elements. It works best when comparing with a known value. The max_abs_diff that should be used used depends on the values being compared against.

For more see comparing floating point numbers.

source

pub fn clamp_length(self, min: f64, max: f64) -> DVec2

Returns a vector with a length no less than min and no more than max

Panics

Will panic if min is greater than max when glam_assert is enabled.

source

pub fn clamp_length_max(self, max: f64) -> DVec2

Returns a vector with a length no more than max

source

pub fn clamp_length_min(self, min: f64) -> DVec2

Returns a vector with a length no less than min

source

pub fn angle_between(self, other: DVec2) -> f64

Returns the angle (in radians) between self and other.

The input vectors do not need to be unit length however they must be non-zero.

source

pub fn as_f32(&self) -> Vec2

Casts all elements of self to f32.

source

pub fn as_i32(&self) -> IVec2

Casts all elements of self to i32.

source

pub fn as_u32(&self) -> UVec2

Casts all elements of self to u32.

Trait Implementations§

source§

impl Add<f64> for DVec2

§

type Output = DVec2

The resulting type after applying the + operator.
source§

fn add(self, other: f64) -> DVec2

Performs the + operation. Read more
source§

impl Add for DVec2

§

type Output = DVec2

The resulting type after applying the + operator.
source§

fn add(self, other: DVec2) -> DVec2

Performs the + operation. Read more
source§

impl AddAssign<f64> for DVec2

source§

fn add_assign(&mut self, other: f64)

Performs the += operation. Read more
source§

impl AddAssign for DVec2

source§

fn add_assign(&mut self, other: DVec2)

Performs the += operation. Read more
source§

impl AsMut<[f64; 2]> for DVec2

source§

fn as_mut(&mut self) -> &mut [f64; 2]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsRef<[f64; 2]> for DVec2

source§

fn as_ref(&self) -> &[f64; 2]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Average for DVec2

source§

fn average<I>(vertices: I) -> Option<DVec2>
where I: IntoIterator<Item = DVec2>,

Produce the average of the given sequence of vertices. Read more
source§

impl Clone for DVec2

source§

fn clone(&self) -> DVec2

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DVec2

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for DVec2

source§

fn default() -> DVec2

Returns the “default value” for a type. Read more
source§

impl Deref for DVec2

§

type Target = XY<f64>

The resulting type after dereferencing.
source§

fn deref(&self) -> &<DVec2 as Deref>::Target

Dereferences the value.
source§

impl DerefMut for DVec2

source§

fn deref_mut(&mut self) -> &mut <DVec2 as Deref>::Target

Mutably dereferences the value.
source§

impl<'de> Deserialize<'de> for DVec2

source§

fn deserialize<D>( deserializer: D ) -> Result<DVec2, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for DVec2

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Distribution<DVec2> for Standard

source§

fn sample<R>(&self, rng: &mut R) -> DVec2
where R: Rng + ?Sized,

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
where R: Rng, Self: Sized,

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

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>
where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Div<f64> for DVec2

§

type Output = DVec2

The resulting type after applying the / operator.
source§

fn div(self, other: f64) -> DVec2

Performs the / operation. Read more
source§

impl Div for DVec2

§

type Output = DVec2

The resulting type after applying the / operator.
source§

fn div(self, other: DVec2) -> DVec2

Performs the / operation. Read more
source§

impl DivAssign<f64> for DVec2

source§

fn div_assign(&mut self, other: f64)

Performs the /= operation. Read more
source§

impl DivAssign for DVec2

source§

fn div_assign(&mut self, other: DVec2)

Performs the /= operation. Read more
source§

impl From<[f64; 2]> for DVec2

source§

fn from(a: [f64; 2]) -> DVec2

Converts to this type from the input type.
source§

impl From<(f64, f64)> for DVec2

source§

fn from(t: (f64, f64)) -> DVec2

Converts to this type from the input type.
source§

impl From<DVec2> for [f64; 2]

source§

fn from(v: DVec2) -> [f64; 2]

Converts to this type from the input type.
source§

impl From<DVec2> for XY<f64>

source§

fn from(t: DVec2) -> XY<f64>

Converts to this type from the input type.
source§

impl From<DVec3> for DVec2

source§

fn from(v: DVec3) -> DVec2

Creates a Vec2 from the x and y elements of self, discarding z.

source§

impl From<DVec4> for DVec2

source§

fn from(v: DVec4) -> DVec2

Creates a 2D vector from the x and y elements of self, discarding z and w.

source§

impl From<XY<f64>> for DVec2

source§

fn from(t: XY<f64>) -> DVec2

Converts to this type from the input type.
source§

impl Index<usize> for DVec2

§

type Output = f64

The returned type after indexing.
source§

fn index(&self, index: usize) -> &<DVec2 as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for DVec2

source§

fn index_mut(&mut self, index: usize) -> &mut <DVec2 as Index<usize>>::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl Mul<DVec2> for DMat2

§

type Output = DVec2

The resulting type after applying the * operator.
source§

fn mul(self, other: DVec2) -> <DMat2 as Mul<DVec2>>::Output

Performs the * operation. Read more
source§

impl Mul<f64> for DVec2

§

type Output = DVec2

The resulting type after applying the * operator.
source§

fn mul(self, other: f64) -> DVec2

Performs the * operation. Read more
source§

impl Mul for DVec2

§

type Output = DVec2

The resulting type after applying the * operator.
source§

fn mul(self, other: DVec2) -> DVec2

Performs the * operation. Read more
source§

impl MulAssign<f64> for DVec2

source§

fn mul_assign(&mut self, other: f64)

Performs the *= operation. Read more
source§

impl MulAssign for DVec2

source§

fn mul_assign(&mut self, other: DVec2)

Performs the *= operation. Read more
source§

impl Neg for DVec2

§

type Output = DVec2

The resulting type after applying the - operator.
source§

fn neg(self) -> DVec2

Performs the unary - operation. Read more
source§

impl PartialEq for DVec2

source§

fn eq(&self, other: &DVec2) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> Product<&'a DVec2> for DVec2

source§

fn product<I>(iter: I) -> DVec2
where I: Iterator<Item = &'a DVec2>,

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl Serialize for DVec2

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Sub<f64> for DVec2

§

type Output = DVec2

The resulting type after applying the - operator.
source§

fn sub(self, other: f64) -> DVec2

Performs the - operation. Read more
source§

impl Sub for DVec2

§

type Output = DVec2

The resulting type after applying the - operator.
source§

fn sub(self, other: DVec2) -> DVec2

Performs the - operation. Read more
source§

impl SubAssign<f64> for DVec2

source§

fn sub_assign(&mut self, other: f64)

Performs the -= operation. Read more
source§

impl SubAssign for DVec2

source§

fn sub_assign(&mut self, other: DVec2)

Performs the -= operation. Read more
source§

impl<'a> Sum<&'a DVec2> for DVec2

source§

fn sum<I>(iter: I) -> DVec2
where I: Iterator<Item = &'a DVec2>,

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl Vec2Swizzles for DVec2

§

type Vec3 = DVec3

§

type Vec4 = DVec4

source§

fn xxxx(self) -> DVec4

source§

fn xxxy(self) -> DVec4

source§

fn xxyx(self) -> DVec4

source§

fn xxyy(self) -> DVec4

source§

fn xyxx(self) -> DVec4

source§

fn xyxy(self) -> DVec4

source§

fn xyyx(self) -> DVec4

source§

fn xyyy(self) -> DVec4

source§

fn yxxx(self) -> DVec4

source§

fn yxxy(self) -> DVec4

source§

fn yxyx(self) -> DVec4

source§

fn yxyy(self) -> DVec4

source§

fn yyxx(self) -> DVec4

source§

fn yyxy(self) -> DVec4

source§

fn yyyx(self) -> DVec4

source§

fn yyyy(self) -> DVec4

source§

fn xxx(self) -> DVec3

source§

fn xxy(self) -> DVec3

source§

fn xyx(self) -> DVec3

source§

fn xyy(self) -> DVec3

source§

fn yxx(self) -> DVec3

source§

fn yxy(self) -> DVec3

source§

fn yyx(self) -> DVec3

source§

fn yyy(self) -> DVec3

source§

fn xx(self) -> DVec2

source§

fn yx(self) -> DVec2

source§

fn yy(self) -> DVec2

source§

fn xy(self) -> Self

source§

impl Vertex for DVec2

§

type Scalar = f64

The values used to describe the vertex position.
source§

impl Vertex2d for DVec2

source§

fn point2(self) -> [<DVec2 as Vertex>::Scalar; 2]

The x, y location of the vertex.
source§

impl Copy for DVec2

Auto Trait Implementations§

§

impl RefUnwindSafe for DVec2

§

impl Send for DVec2

§

impl Sync for DVec2

§

impl Unpin for DVec2

§

impl UnwindSafe for DVec2

Blanket Implementations§

source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where T: Component + Float, Swp: WhitePoint, Dwp: WhitePoint, D: AdaptFrom<S, Swp, Dwp, T>,

source§

fn adapt_into_using<M>(self, method: M) -> D
where M: TransformMatrix<Swp, Dwp, T>,

Convert the source color to the destination color using the specified method
source§

fn adapt_into(self) -> D

Convert the source color to the destination color using the bradford method by default
source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T, U> ConvertInto<U> for T
where U: ConvertFrom<T>,

source§

fn convert_into(self) -> U

Convert into T with values clamped to the color defined bounds Read more
source§

fn convert_unclamped_into(self) -> U

Convert into T. The resulting color might be invalid in its color space Read more
source§

fn try_convert_into(self) -> Result<U, OutOfBounds<U>>

Convert into T, returning ok if the color is inside of its defined range, otherwise an OutOfBounds error is returned which contains the unclamped color. Read more
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

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

§

impl<T> WasmNotSend for T
where T: Send,

§

impl<T> WasmNotSync for T
where T: Sync,