pub struct AngleDegree(pub f32);Expand description
Angle in degrees.
See AngleUnits for more details.
§Equality
Equality is determined using about_eq with 0.001 granularity.
Tuple Fields§
§0: f32Implementations§
Source§impl AngleDegree
impl AngleDegree
Sourcepub fn slerp(self, to: Self, factor: Factor) -> Self
pub fn slerp(self, to: Self, factor: Factor) -> Self
Spherical linear interpolation.
Always uses the shortest path from self to to.
The lerp linear interpolation always covers the numeric range between angles, so a transition from 358º to 1º
iterates over almost a full counterclockwise turn to reach the final value, slerp simply goes from 358º to 361º modulo
normalized.
Trait Implementations§
Source§impl Add for AngleDegree
impl Add for AngleDegree
Source§impl AddAssign for AngleDegree
impl AddAssign for AngleDegree
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl Clone for AngleDegree
impl Clone for AngleDegree
Source§fn clone(&self) -> AngleDegree
fn clone(&self) -> AngleDegree
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AngleDegree
impl Debug for AngleDegree
Source§impl<'de> Deserialize<'de> for AngleDegree
impl<'de> Deserialize<'de> for AngleDegree
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 Display for AngleDegree
impl Display for AngleDegree
Source§impl From<AngleDegree> for AngleGradian
impl From<AngleDegree> for AngleGradian
Source§fn from(deg: AngleDegree) -> Self
fn from(deg: AngleDegree) -> Self
Converts to this type from the input type.
Source§impl From<AngleDegree> for AngleRadian
impl From<AngleDegree> for AngleRadian
Source§fn from(deg: AngleDegree) -> Self
fn from(deg: AngleDegree) -> Self
Converts to this type from the input type.
Source§impl From<AngleDegree> for AngleTurn
impl From<AngleDegree> for AngleTurn
Source§fn from(deg: AngleDegree) -> Self
fn from(deg: AngleDegree) -> Self
Converts to this type from the input type.
Source§impl From<AngleGradian> for AngleDegree
impl From<AngleGradian> for AngleDegree
Source§fn from(grad: AngleGradian) -> Self
fn from(grad: AngleGradian) -> Self
Converts to this type from the input type.
Source§impl From<AngleRadian> for AngleDegree
impl From<AngleRadian> for AngleDegree
Source§fn from(rad: AngleRadian) -> Self
fn from(rad: AngleRadian) -> Self
Converts to this type from the input type.
Source§impl From<AngleTurn> for AngleDegree
impl From<AngleTurn> for AngleDegree
Source§impl FromStr for AngleDegree
Parses "##", "##º" and "##.deg()" where ## is a f32.
impl FromStr for AngleDegree
Parses "##", "##º" and "##.deg()" where ## is a f32.
Source§impl Hash for AngleDegree
impl Hash for AngleDegree
Source§impl Neg for AngleDegree
impl Neg for AngleDegree
Source§impl Ord for AngleDegree
impl Ord for AngleDegree
Source§impl PartialEq for AngleDegree
impl PartialEq for AngleDegree
Source§impl PartialOrd for AngleDegree
impl PartialOrd for AngleDegree
Source§impl Serialize for AngleDegree
impl Serialize for AngleDegree
Source§impl Sub for AngleDegree
impl Sub for AngleDegree
Source§impl SubAssign for AngleDegree
impl SubAssign for AngleDegree
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-= operation. Read moreimpl Copy for AngleDegree
impl Eq for AngleDegree
Auto Trait Implementations§
impl Freeze for AngleDegree
impl RefUnwindSafe for AngleDegree
impl Send for AngleDegree
impl Sync for AngleDegree
impl Unpin for AngleDegree
impl UnwindSafe for AngleDegree
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more