https://github.com/zyedidia/chipmunk.jl
A binding of the physics engine Chipmunk for Julia
https://github.com/zyedidia/chipmunk.jl
Last synced: about 1 month ago
JSON representation
A binding of the physics engine Chipmunk for Julia
- Host: GitHub
- URL: https://github.com/zyedidia/chipmunk.jl
- Owner: zyedidia
- License: other
- Created: 2015-05-23T21:21:36.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-26T17:41:27.000Z (over 10 years ago)
- Last Synced: 2025-03-05T23:26:38.974Z (10 months ago)
- Language: Julia
- Homepage:
- Size: 281 KB
- Stars: 10
- Watchers: 5
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Chipmunk.jl

[](https://travis-ci.org/zyedidia/Chipmunk.jl)
`Chipmunk.jl` is a Julia binding of the popular physics engine [Chipmunk] (https://chipmunk-physics.net/) ([Github page] (https://github.com/slembcke/Chipmunk2D)).
This is currently very much in progress.
Take a look at the `examples/` folder to see what you can do with `Chipmunk.jl`
`Chipmunk.jl` uses [SFML.jl] (https://github.com/zyedidia/SFML.jl) to render the world to the screen.
`Chipmunk.jl` also requires Julia 0.4.
# Installation
Installation is quite simple. The package will clone and install chipmunk from source to `deps/`.
Make sure that you have `cmake` installed so that it can build chipmunk.
I have not been able to get cmake to compile Chipmunk on Windows yet.
If you get an SFML build error about `follow_symlinks` you should update your version of Julia 0.4.
```
julia> Pkg.clone("https://github.com/zyedidia/Chipmunk.jl")
julia> Pkg.build("Chipmunk")
```
# [License] (LICENSE.md)