Trait IntoDegrees

Source
pub trait IntoDegrees {
    // Required method
    fn into_degrees(self) -> Self;
}
Expand description

This type can convert from radians to degrees

Required Methods§

Source

fn into_degrees(self) -> Self

Consume self and return it after converting the internal elements from radians to degrees

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T: Real + Pi> IntoDegrees for T

Source§

impl<T: Real> IntoDegrees for TVec3<T>

Source§

impl<T: Real> IntoDegrees for TVec4<T>