2D physics simulations using Chipmunk2D. (#16)

* Basic 2D physics support.

* PolyShape: Code for decomposing arbitrary shapes into convex polygons.

Former-commit-id: 6cdce508f8bb7b6a20833d1e5204b93e7b19707f
This commit is contained in:
David Himmelstrup 2019-09-24 10:12:01 +08:00 committed by GitHub
commit 14c6f7bca8
15 changed files with 636 additions and 15 deletions

View file

@ -34,6 +34,7 @@ jobs:
curl -skL https://get.haskellstack.org/stable/osx-x86_64.tar.gz | tar xz --strip-components=1 --include '*/stack' -C ~/.local/bin;
export PATH=$HOME/.local/bin:$PATH
stack --install-ghc $ARGS test --only-dependencies
stack ./examples/counter.hs check
stack $ARGS test --pedantic
env:
OS_NAME: ${{ parameters.os }}