jupiters 0.0.1

Jupiter celestial simulation crate for the MilkyWay SolarSystem workspace
Documentation
pub struct Satellite {
    pub name: &'static str,
    pub mass_kg: f64,
    pub radius_m: f64,
}

impl Default for Satellite {
    fn default() -> Self {
        Self::new()
    }
}

impl Satellite {
    pub fn new() -> Self {
        Self {
            name: "callisto",
            mass_kg: 0.0,
            radius_m: 0.0,
        }
    }
}

pub fn info() -> (&'static str, f64, f64) {
    ("callisto", 0.0, 0.0)
}