///|
/// Inverse of the hypotenuse of a right triangle
pub fn rhypot(x : Double, y : Double) -> Double {
  1.0 / hypot(x, y)
}