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