├── .clang-format ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ └── FEATURE_REQUEST.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build_tests-linux.yml │ └── build_tests-macos.yml ├── .gitignore ├── CODENAMES.txt ├── CONTRIBUTING.md ├── CREDITS.md ├── LICENSE ├── Makefile ├── Makefile.emcc ├── Makefile.mingw ├── NMakefile ├── README.md ├── docs └── static │ └── images │ ├── readme-logo.png │ ├── readme-logo.xcf │ ├── social-preview.png │ └── social-preview.xcf ├── examples ├── Makefile ├── Makefile.drm ├── Makefile.emcc ├── Makefile.mingw ├── include │ └── ferox_raylib.h ├── res │ ├── html │ │ └── shell.html │ └── images │ │ └── raylib-44.png └── src │ ├── basic.c │ ├── bricks.c │ ├── cows.c │ ├── melon.c │ ├── query.c │ ├── raycast.c │ └── raylib.c ├── include └── ferox.h ├── src ├── broad_phase.c ├── collision.c ├── external │ ├── ferox_utils.h │ ├── sokol_time.h │ └── stb_ds.h ├── geometry.c ├── rigid_body.c ├── timer.c └── world.c └── tests ├── Makefile ├── Makefile.mingw ├── include └── greatest.h └── src ├── broad_phase.c ├── collision.c ├── ferox_tests.c ├── geometry.c ├── rigid_body.c ├── utils.c └── world.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build_tests-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/.github/workflows/build_tests-linux.yml -------------------------------------------------------------------------------- /.github/workflows/build_tests-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/.github/workflows/build_tests-macos.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/.gitignore -------------------------------------------------------------------------------- /CODENAMES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/CODENAMES.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/CREDITS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.emcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/Makefile.emcc -------------------------------------------------------------------------------- /Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/Makefile.mingw -------------------------------------------------------------------------------- /NMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/NMakefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/README.md -------------------------------------------------------------------------------- /docs/static/images/readme-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/docs/static/images/readme-logo.png -------------------------------------------------------------------------------- /docs/static/images/readme-logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/docs/static/images/readme-logo.xcf -------------------------------------------------------------------------------- /docs/static/images/social-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/docs/static/images/social-preview.png -------------------------------------------------------------------------------- /docs/static/images/social-preview.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/docs/static/images/social-preview.xcf -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/Makefile.drm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/examples/Makefile.drm -------------------------------------------------------------------------------- /examples/Makefile.emcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/examples/Makefile.emcc -------------------------------------------------------------------------------- /examples/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/examples/Makefile.mingw -------------------------------------------------------------------------------- /examples/include/ferox_raylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/examples/include/ferox_raylib.h -------------------------------------------------------------------------------- /examples/res/html/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/examples/res/html/shell.html -------------------------------------------------------------------------------- /examples/res/images/raylib-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/examples/res/images/raylib-44.png -------------------------------------------------------------------------------- /examples/src/basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/examples/src/basic.c -------------------------------------------------------------------------------- /examples/src/bricks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/examples/src/bricks.c -------------------------------------------------------------------------------- /examples/src/cows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/examples/src/cows.c -------------------------------------------------------------------------------- /examples/src/melon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/examples/src/melon.c -------------------------------------------------------------------------------- /examples/src/query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/examples/src/query.c -------------------------------------------------------------------------------- /examples/src/raycast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/examples/src/raycast.c -------------------------------------------------------------------------------- /examples/src/raylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/examples/src/raylib.c -------------------------------------------------------------------------------- /include/ferox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/include/ferox.h -------------------------------------------------------------------------------- /src/broad_phase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/src/broad_phase.c -------------------------------------------------------------------------------- /src/collision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/src/collision.c -------------------------------------------------------------------------------- /src/external/ferox_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/src/external/ferox_utils.h -------------------------------------------------------------------------------- /src/external/sokol_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/src/external/sokol_time.h -------------------------------------------------------------------------------- /src/external/stb_ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/src/external/stb_ds.h -------------------------------------------------------------------------------- /src/geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/src/geometry.c -------------------------------------------------------------------------------- /src/rigid_body.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/src/rigid_body.c -------------------------------------------------------------------------------- /src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/src/timer.c -------------------------------------------------------------------------------- /src/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/src/world.c -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/tests/Makefile.mingw -------------------------------------------------------------------------------- /tests/include/greatest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/tests/include/greatest.h -------------------------------------------------------------------------------- /tests/src/broad_phase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/tests/src/broad_phase.c -------------------------------------------------------------------------------- /tests/src/collision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/tests/src/collision.c -------------------------------------------------------------------------------- /tests/src/ferox_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/tests/src/ferox_tests.c -------------------------------------------------------------------------------- /tests/src/geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/tests/src/geometry.c -------------------------------------------------------------------------------- /tests/src/rigid_body.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/tests/src/rigid_body.c -------------------------------------------------------------------------------- /tests/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/tests/src/utils.c -------------------------------------------------------------------------------- /tests/src/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdeokkim/ferox/HEAD/tests/src/world.c --------------------------------------------------------------------------------