Trait sphrs::coords::SHCoordinates[][src]

pub trait SHCoordinates<T> {
    fn theta(&self) -> T;
fn phi(&self) -> T;
fn r(&self) -> T;
fn x(&self) -> T;
fn y(&self) -> T;
fn z(&self) -> T;
fn theta_cos(&self) -> T; }
Expand description

SHCoordinates trait

Required methods

Return theta

Return phi

Return r

Return x

Return y

Return z

Return cos(theta)

Implementors