1 2 3 4 5 6 7
/// Zero a p-vector. #[inline] pub fn zp(p: &mut [f64; 3]) { p[0] = 0.0; p[1] = 0.0; p[2] = 0.0; }