moons 0.0.3

Moon celestial simulation crate for the MilkyWay SolarSystem workspace
Documentation
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Orbiter {
    pub name: &'static str,
    pub altitude_km: f64,
    pub inclination_deg: f64,
}

pub fn lro() -> Orbiter {
    Orbiter {
        name: "LRO",
        altitude_km: 50.0,
        inclination_deg: 90.0,
    }
}

pub fn capstone() -> Orbiter {
    Orbiter {
        name: "CAPSTONE",
        altitude_km: 70_000.0,
        inclination_deg: 90.0,
    }
}