bevy_orbits 0.2.0

A bevy plugin for creating stable orbits, and calculating transfers between them
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod math;
mod orbit;
mod plugin;
mod transfer;

pub mod prelude {
    pub use crate::orbit::{Mass, Orbit};
    pub use crate::plugin::OrbitPlugin;
    pub use crate::transfer::{calculate_hohmann_transfer, Maneuver, Transfer, TransferSchedule};
}