#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Orbiter {
pub name: &'static str,
pub altitude_km: f64,
pub inclination_deg: f64,
}
pub fn phobos_orbiter_concept() -> Orbiter {
Orbiter {
name: "Phobos Orbiter",
altitude_km: 200.0,
inclination_deg: 5.0,
}
}
pub fn phobos_sample_return() -> Orbiter {
Orbiter {
name: "MMX",
altitude_km: 50.0,
inclination_deg: 0.5,
}
}