aboutsummaryrefslogtreecommitdiff
path: root/src/util.rs
blob: cbd5813159ff2a1ca53c00949a5a69e7152111d5 (plain)
1
2
3
pub fn degrees_to_radians(degrees: f64) -> f64 {
    degrees * std::f64::consts::PI / 180.0
}