astromech/lib.rs
1//! Tools and methods for celestial motion.
2
3pub mod equation_core;
4
5pub use self::equation_core::constants::GRAVITATION_CONSTANT;
6
7pub use self::equation_core::two_body::gravitational_force::calc_gravitational_force;
8pub use self::equation_core::two_body::field_potential::calc_field_potential;
9
10pub use self::equation_core::two_body::body::Body;
11pub use self::equation_core::two_body::body::BodyType;