pub trait ParentRotation: Send + Sync + Debug {
    // Required method
    fn dcm_to_parent(&self, datetime: Epoch) -> Option<Matrix3<f64>>;
}

Required Methods§

source

fn dcm_to_parent(&self, datetime: Epoch) -> Option<Matrix3<f64>>

Implementors§