pub struct AngleTurn(pub f32);Expand description
Angle in turns (complete rotations).
See AngleUnits for more details.
§Equality
Equality is determined using about_eq with 0.00001 granularity.
Tuple Fields§
§0: f32Implementations§
Source§impl AngleTurn
impl AngleTurn
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 AddAssign for AngleTurn
impl AddAssign for AngleTurn
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl<'de> Deserialize<'de> for AngleTurn
impl<'de> Deserialize<'de> for AngleTurn
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 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 AngleTurn
impl From<AngleGradian> for AngleTurn
Source§fn from(grad: AngleGradian) -> Self
fn from(grad: AngleGradian) -> Self
Converts to this type from the input type.
Source§impl From<AngleRadian> for AngleTurn
impl From<AngleRadian> for AngleTurn
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 From<AngleTurn> for AngleGradian
impl From<AngleTurn> for AngleGradian
Source§impl From<AngleTurn> for AngleRadian
impl From<AngleTurn> for AngleRadian
Source§impl FromStr for AngleTurn
Parses "##", "## turn", "## turns" and "##.turn()" where ## is a f32.
impl FromStr for AngleTurn
Parses "##", "## turn", "## turns" and "##.turn()" where ## is a f32.
Source§impl Ord for AngleTurn
impl Ord for AngleTurn
Source§impl PartialOrd for AngleTurn
impl PartialOrd for AngleTurn
Source§impl SubAssign for AngleTurn
impl SubAssign for AngleTurn
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-= operation. Read moreimpl Copy for AngleTurn
impl Eq for AngleTurn
Auto Trait Implementations§
impl Freeze for AngleTurn
impl RefUnwindSafe for AngleTurn
impl Send for AngleTurn
impl Sync for AngleTurn
impl Unpin for AngleTurn
impl UnwindSafe for AngleTurn
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