Skip to main content

Tau

Trait Tau 

Source
pub trait Tau {
    const TAU: Self;
}
Expand description

Provides $\tau=2\pi$.

Required Associated Constants§

Source

const TAU: Self

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 Tau for f32

$\tau=2\pi$.

Source§

const TAU: f32 = core::f32::consts::TAU

Source§

impl Tau for f64

$\tau=2\pi$.

Source§

const TAU: f64 = core::f64::consts::TAU

Implementors§