pub trait ToRadians<T: CoordFloat>: Sized + MapCoords<T, T, Output = Self> + MapCoordsInPlace<T> {
    // Provided methods
    fn to_radians(&self) -> Self { ... }
    fn to_radians_in_place(&mut self) { ... }
}

Provided Methods§

source

fn to_radians(&self) -> Self

source

fn to_radians_in_place(&mut self)

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: CoordFloat, G: MapCoords<T, T, Output = Self> + MapCoordsInPlace<T>> ToRadians<T> for G