N-body simulation project in works with Celestia
- Language in use: C++14
- Libraries:
- Eigen - For Vectorized matrix and vectors
- Allegro 5 - For graphics and visualization
- Plans: Currently using Barnes Hut optimization for O(nlog(n)) algorithm. Planning on using a 4th order hermite integrator. Currently none in place
- Classes, Methods - PascalCase
- variables, parameters - camelCase
- Opening braces on same line
- Only C++ style comments ( // )
- For removing in work or debug statements, use C style block comments ( /** )