sofars 0.6.0

Pure Rust implementation of the IAU SOFA library
Documentation
1
2
3
4
5
6
/// Copy a p-vector.
pub fn cp(p: &[f64; 3], c: &mut [f64; 3]) {
    c[0] = p[0];
    c[1] = p[1];
    c[2] = p[2];
}