splines::interpolate

Trait Trigo

Source
pub trait Trigo {
    // Required methods
    fn pi() -> Self;
    fn cos(self) -> Self;
}
Expand description

Types with a sane definition of π and cosine.

Required Methods§

Source

fn pi() -> Self

π.

Source

fn cos(self) -> Self

Cosine of the argument.

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.

Implementations on Foreign Types§

Source§

impl Trigo for f32

Source§

fn pi() -> Self

Source§

fn cos(self) -> Self

Source§

impl Trigo for f64

Source§

fn pi() -> Self

Source§

fn cos(self) -> Self

Implementors§