///|
/// Inverse square root of a number
pub fn rsqrt(x : Double) -> Double {
  1.0 / sqrt(x)
}