Skip to main content

ReferenceFrame

Trait ReferenceFrame 

Source
pub trait ReferenceFrame {
    // Required methods
    fn name(&self) -> String;
    fn abbreviation(&self) -> String;
}
Expand description

A reference frame with a human-readable name and abbreviation.

Required Methods§

Source

fn name(&self) -> String

Returns the full name of the frame (e.g. “International Celestial Reference Frame”).

Source

fn abbreviation(&self) -> String

Returns the abbreviated name (e.g. “ICRF”).

Implementors§