pub struct Angle<T> {
pub radians: T,
}
Expand description
An angle in radians
Fields§
§radians: T
Implementations§
Source§impl<T> Angle<T>where
T: Trig,
impl<T> Angle<T>where
T: Trig,
pub fn degrees(deg: T) -> Angle<T>
pub fn to_degrees(self) -> T
Source§impl<T> Angle<T>where
T: Sub<Output = T> + Rem<Output = T> + Add<Output = T> + Zero + FloatConst + PartialOrd + Copy,
impl<T> Angle<T>where
T: Sub<Output = T> + Rem<Output = T> + Add<Output = T> + Zero + FloatConst + PartialOrd + Copy,
Trait Implementations§
Source§impl<T> AddAssign for Angle<T>
impl<T> AddAssign for Angle<T>
Source§fn add_assign(&mut self, other: Angle<T>)
fn add_assign(&mut self, other: Angle<T>)
Performs the
+=
operation. Read moreSource§impl<T> DivAssign<T> for Angle<T>
impl<T> DivAssign<T> for Angle<T>
Source§fn div_assign(&mut self, factor: T)
fn div_assign(&mut self, factor: T)
Performs the
/=
operation. Read moreSource§impl<T> MulAssign<T> for Angle<T>
impl<T> MulAssign<T> for Angle<T>
Source§fn mul_assign(&mut self, factor: T)
fn mul_assign(&mut self, factor: T)
Performs the
*=
operation. Read moreSource§impl<T> PartialOrd for Angle<T>where
T: PartialOrd,
impl<T> PartialOrd for Angle<T>where
T: PartialOrd,
Source§impl<T> SubAssign for Angle<T>
impl<T> SubAssign for Angle<T>
Source§fn sub_assign(&mut self, other: Angle<T>)
fn sub_assign(&mut self, other: Angle<T>)
Performs the
-=
operation. Read moreimpl<T> Copy for Angle<T>where
T: Copy,
impl<T> Eq for Angle<T>where
T: Eq,
impl<T> StructuralPartialEq for Angle<T>
Auto Trait Implementations§
impl<T> Freeze for Angle<T>where
T: Freeze,
impl<T> RefUnwindSafe for Angle<T>where
T: RefUnwindSafe,
impl<T> Send for Angle<T>where
T: Send,
impl<T> Sync for Angle<T>where
T: Sync,
impl<T> Unpin for Angle<T>where
T: Unpin,
impl<T> UnwindSafe for Angle<T>where
T: UnwindSafe,
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