https://github.com/floooh/fips-bullet
fips wrapper for bullet phyiscs
https://github.com/floooh/fips-bullet
fips
Last synced: 5 months ago
JSON representation
fips wrapper for bullet phyiscs
- Host: GitHub
- URL: https://github.com/floooh/fips-bullet
- Owner: floooh
- License: mit
- Created: 2016-04-29T21:13:15.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-03-10T13:31:54.000Z (over 8 years ago)
- Last Synced: 2025-03-22T00:45:40.469Z (over 1 year ago)
- Topics: fips
- Language: CMake
- Size: 4.88 KB
- Stars: 2
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fips-bullet
fips wrapper for Bullet physics (https://github.com/bulletphysics/bullet3.git)
fips build system: https://github.com/floooh/fips
This wrapper only exposes the Bullet2 APIs (Collision, Dynamics, SoftBody, LinearMath)!
### How to integrate into your fips project:
Add the following import to your fips.yml:
```yaml
imports:
fips-bullet:
git: https://github.com/floooh/fips-bullet.git
```
Add the dependency _Bullet_ to your app's CMakeLists.txt file:
```cmake
fips_begin_app(MyApp windowed)
...
fips_deps(Bullet)
...
fips_end_app()
```