///|
/// Calculate one over the square root of the sum of squares of three coordinates.
pub fn rnorm3d(a : Double, b : Double, c : Double) -> Double {
  rnorm([a, b, c])
}