pub trait DegreeTrigonomeric {
    fn sin_degree(self) -> Self;
    fn cos_degree(self) -> Self;
    fn atan2_degree(self, other: Self) -> Self;
}

Required Methods

Implementations on Foreign Types

Implementors