├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── ECterminal.c ├── SolveTrajectory.c ├── SolveTrajectory.exe ├── SolveTrajectory.h ├── md_pic ├── 1684861635255.png ├── coordinate.jpg ├── projectile.png ├── projectile_model.png └── rotations.png └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlanqian/SolveTrajectory/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlanqian/SolveTrajectory/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /ECterminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlanqian/SolveTrajectory/HEAD/ECterminal.c -------------------------------------------------------------------------------- /SolveTrajectory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlanqian/SolveTrajectory/HEAD/SolveTrajectory.c -------------------------------------------------------------------------------- /SolveTrajectory.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlanqian/SolveTrajectory/HEAD/SolveTrajectory.exe -------------------------------------------------------------------------------- /SolveTrajectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlanqian/SolveTrajectory/HEAD/SolveTrajectory.h -------------------------------------------------------------------------------- /md_pic/1684861635255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlanqian/SolveTrajectory/HEAD/md_pic/1684861635255.png -------------------------------------------------------------------------------- /md_pic/coordinate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlanqian/SolveTrajectory/HEAD/md_pic/coordinate.jpg -------------------------------------------------------------------------------- /md_pic/projectile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlanqian/SolveTrajectory/HEAD/md_pic/projectile.png -------------------------------------------------------------------------------- /md_pic/projectile_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlanqian/SolveTrajectory/HEAD/md_pic/projectile_model.png -------------------------------------------------------------------------------- /md_pic/rotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlanqian/SolveTrajectory/HEAD/md_pic/rotations.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlanqian/SolveTrajectory/HEAD/readme.md --------------------------------------------------------------------------------