sofars 0.6.0

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