oberons 0.0.3

Oberon 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 oberon_orbiter_concept() -> Orbiter {
    Orbiter {
        name: "Oberon Orbiter",
        altitude_km: 200.0,
        inclination_deg: 5.0,
    }
}

pub fn oberon_polar_surveyor() -> Orbiter {
    Orbiter {
        name: "Oberon Polar Surveyor",
        altitude_km: 100.0,
        inclination_deg: 89.5,
    }
}