cdshealpix

Constant FOUR_OVER_PI

Source
pub const FOUR_OVER_PI: f64 = _; // 1.2732395447351628f64
Expand description

Constant = 4 / pi.

use cdshealpix::{FOUR_OVER_PI};
use std::f64::consts::PI;
assert_eq!(4f64 / PI, FOUR_OVER_PI);