Trait palette::num::Trigonometry
source · pub trait Trigonometry: Sized {
// Required methods
fn sin(self) -> Self;
fn cos(self) -> Self;
fn sin_cos(self) -> (Self, Self);
fn tan(self) -> Self;
fn asin(self) -> Self;
fn acos(self) -> Self;
fn atan(self) -> Self;
fn atan2(self, other: Self) -> Self;
}
Expand description
Trigonometry methods and their inverses.
Required Methods§
Object Safety§
This trait is not object safe.