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