pub type Length<T> = Length<T, UnknownUnit>;
Aliased Type§
struct Length<T>(pub T, _);
Fields§
§0: T
Implementations§
source§impl<T: Clone, U> Length<T, U>
impl<T: Clone, U> Length<T, U>
sourcepub fn lerp(self, other: Self, t: T) -> Selfwhere
T: One + Sub<Output = T> + Mul<Output = T> + Add<Output = T>,
pub fn lerp(self, other: Self, t: T) -> Selfwhere T: One + Sub<Output = T> + Mul<Output = T> + Add<Output = T>,
Linearly interpolate between this length and another length.
Example
use euclid::default::Length;
let from = Length::new(0.0);
let to = Length::new(8.0);
assert_eq!(from.lerp(to, -1.0), Length::new(-8.0));
assert_eq!(from.lerp(to, 0.0), Length::new( 0.0));
assert_eq!(from.lerp(to, 0.5), Length::new( 4.0));
assert_eq!(from.lerp(to, 1.0), Length::new( 8.0));
assert_eq!(from.lerp(to, 2.0), Length::new(16.0));
source§impl<T: PartialOrd, U> Length<T, U>
impl<T: PartialOrd, U> Length<T, U>
Trait Implementations§
source§impl<T: AddAssign, U> AddAssign<Length<T, U>> for Length<T, U>
impl<T: AddAssign, U> AddAssign<Length<T, U>> for Length<T, U>
source§fn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
Performs the
+=
operation. Read moresource§impl<U, T: ApproxEq<T>> ApproxEq<T> for Length<T, U>
impl<U, T: ApproxEq<T>> ApproxEq<T> for Length<T, U>
source§fn approx_epsilon() -> T
fn approx_epsilon() -> T
Default epsilon value
source§impl<'de, T, U> Deserialize<'de> for Length<T, U>where
T: Deserialize<'de>,
impl<'de, T, U> Deserialize<'de> for Length<T, U>where T: Deserialize<'de>,
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<T: Copy + Div<T, Output = T>, U> DivAssign<T> for Length<T, U>
impl<T: Copy + Div<T, Output = T>, U> DivAssign<T> for Length<T, U>
source§fn div_assign(&mut self, scale: T)
fn div_assign(&mut self, scale: T)
Performs the
/=
operation. Read moresource§impl<T: Copy + Mul<T, Output = T>, U> MulAssign<T> for Length<T, U>
impl<T: Copy + Mul<T, Output = T>, U> MulAssign<T> for Length<T, U>
source§fn mul_assign(&mut self, scale: T)
fn mul_assign(&mut self, scale: T)
Performs the
*=
operation. Read moresource§impl<T: Ord, U> Ord for Length<T, U>
impl<T: Ord, U> Ord for Length<T, U>
source§impl<T: PartialEq, U> PartialEq<Length<T, U>> for Length<T, U>
impl<T: PartialEq, U> PartialEq<Length<T, U>> for Length<T, U>
source§impl<T: PartialOrd, U> PartialOrd<Length<T, U>> for Length<T, U>
impl<T: PartialOrd, U> PartialOrd<Length<T, U>> for Length<T, U>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<T: Saturating, U> Saturating for Length<T, U>
impl<T: Saturating, U> Saturating for Length<T, U>
source§fn saturating_add(self, other: Self) -> Self
fn saturating_add(self, other: Self) -> Self
Saturating addition operator.
Returns a+b, saturating at the numeric bounds instead of overflowing.
source§fn saturating_sub(self, other: Self) -> Self
fn saturating_sub(self, other: Self) -> Self
Saturating subtraction operator.
Returns a-b, saturating at the numeric bounds instead of overflowing.
source§impl<T: SubAssign, U> SubAssign<Length<T, U>> for Length<T, U>
impl<T: SubAssign, U> SubAssign<Length<T, U>> for Length<T, U>
source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
Performs the
-=
operation. Read more