sofars 0.6.0

Pure Rust implementation of the IAU SOFA library
Documentation
1
2
3
4
5
6
7
8
use super::cp;

/// Copy an r-matrix.
pub fn cr(r: &[[f64; 3]; 3], c: &mut [[f64; 3]; 3]) {
    cp(&r[0], &mut c[0]);
    cp(&r[1], &mut c[1]);
    cp(&r[2], &mut c[2]);
}