accrete 0.2.0

Rust port of Accrete, planetary system generation algorithm. Based on 'Formation of Planetary Systems by Aggregation: A Computer Simulation' by Stephen H. Dole. Improved and extended by many talented people during past ~50 years.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(unused_imports)]
pub mod dust;
pub mod planetesimal;
pub mod primary_star;
pub mod ring;
pub mod system;

pub use dust::DustBand;
pub use planetesimal::Planetesimal;
pub use primary_star::PrimaryStar;
pub use ring::Ring;
pub use system::System;

use dust::*;
use planetesimal::*;
use primary_star::*;
use ring::*;
use system::*;