solarsystems 0.0.1

N-body solar system engine — gravitational dynamics, orbital mechanics, perturbations, event detection, and full celestial orchestration
Documentation
1
2
3
4
5
6
7
8
use dwarfplanetsfactory::types::ScatteredDisk;

pub fn create() -> ScatteredDisk {
    ScatteredDisk::new(1.163e6, 67.781, 0.4407)
        .with_density(2520.0)
        .with_albedo(0.96)
        .with_inclination(44.04_f64.to_radians())
}