- Makefile: for simplifying the run process
- Header File:
projFuncs.h
specifies the functions in the code along with descriptions - Code:
projFuncs.cpp
houses all of the code- Structure Definitions
- Helper Functions
- Projecion Functions
- Main Functions (Do most of the calculations)
runSim()
functionmain()
function
- Install make and g++ (or equivalent C++ compiler)
- Edit the
runSim()
function in theprojFuncs.cpp
file according to your specfications. - Utilize the Makefile in the repo folder using the
make clean
andmake
commands- (or compile with the same flags specified in the Makefile using your own compiler)