#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Orbiter {
pub name: &'static str,
pub altitude_km: f64,
pub inclination_deg: f64,
}
pub fn titan_orbiter_concept() -> Orbiter {
Orbiter {
name: "Titan Orbiter",
altitude_km: 200.0,
inclination_deg: 5.0,
}
}
pub fn titan_atmospheric_probe() -> Orbiter {
Orbiter {
name: "Dragonfly Relay",
altitude_km: 1_500.0,
inclination_deg: 28.6,
}
}