cdshealpix

Constant TWICE_PI

Source
pub const TWICE_PI: f64 = _; // 6.2831853071795862f64
Expand description

Constant = 2 * pi.

use cdshealpix::{TWICE_PI};
use std::f64::consts::PI;
assert_eq!(2f64 * PI, TWICE_PI);