├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── binaries │ ├── physics_demo.exe │ ├── physics_friction.exe │ ├── physics_movement.exe │ ├── physics_restitution.exe │ └── physics_shatter.exe ├── physics_demo ├── physics_demo.c ├── physics_demo.png ├── physics_friction.c ├── physics_friction.png ├── physics_movement.c ├── physics_movement.png ├── physics_restitution.c ├── physics_restitution.png ├── physics_shatter.c └── physics_shatter.png ├── icon ├── physac.ico ├── physac.pdn ├── physac.rc ├── physac_128x128.png ├── physac_16x16.png ├── physac_24x24.png ├── physac_256x256.png ├── physac_32x32.png ├── physac_48x48.png ├── physac_64x64.png ├── physac_96x96.png └── physac_icon └── src └── physac.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/README.md -------------------------------------------------------------------------------- /examples/binaries/physics_demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/binaries/physics_demo.exe -------------------------------------------------------------------------------- /examples/binaries/physics_friction.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/binaries/physics_friction.exe -------------------------------------------------------------------------------- /examples/binaries/physics_movement.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/binaries/physics_movement.exe -------------------------------------------------------------------------------- /examples/binaries/physics_restitution.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/binaries/physics_restitution.exe -------------------------------------------------------------------------------- /examples/binaries/physics_shatter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/binaries/physics_shatter.exe -------------------------------------------------------------------------------- /examples/physics_demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/physics_demo -------------------------------------------------------------------------------- /examples/physics_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/physics_demo.c -------------------------------------------------------------------------------- /examples/physics_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/physics_demo.png -------------------------------------------------------------------------------- /examples/physics_friction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/physics_friction.c -------------------------------------------------------------------------------- /examples/physics_friction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/physics_friction.png -------------------------------------------------------------------------------- /examples/physics_movement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/physics_movement.c -------------------------------------------------------------------------------- /examples/physics_movement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/physics_movement.png -------------------------------------------------------------------------------- /examples/physics_restitution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/physics_restitution.c -------------------------------------------------------------------------------- /examples/physics_restitution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/physics_restitution.png -------------------------------------------------------------------------------- /examples/physics_shatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/physics_shatter.c -------------------------------------------------------------------------------- /examples/physics_shatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/examples/physics_shatter.png -------------------------------------------------------------------------------- /icon/physac.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/icon/physac.ico -------------------------------------------------------------------------------- /icon/physac.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/icon/physac.pdn -------------------------------------------------------------------------------- /icon/physac.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/icon/physac.rc -------------------------------------------------------------------------------- /icon/physac_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/icon/physac_128x128.png -------------------------------------------------------------------------------- /icon/physac_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/icon/physac_16x16.png -------------------------------------------------------------------------------- /icon/physac_24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/icon/physac_24x24.png -------------------------------------------------------------------------------- /icon/physac_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/icon/physac_256x256.png -------------------------------------------------------------------------------- /icon/physac_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/icon/physac_32x32.png -------------------------------------------------------------------------------- /icon/physac_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/icon/physac_48x48.png -------------------------------------------------------------------------------- /icon/physac_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/icon/physac_64x64.png -------------------------------------------------------------------------------- /icon/physac_96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/icon/physac_96x96.png -------------------------------------------------------------------------------- /icon/physac_icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/icon/physac_icon -------------------------------------------------------------------------------- /src/physac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfisac/Physac/HEAD/src/physac.h --------------------------------------------------------------------------------