gjk2d 0.1.0.1 → 0.1.0.2
raw patch · 2 files changed
+7/−2 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- GJK: doSimplex :: (Double -> V2 Double) -> V2 Double -> V2 Double -> Bool
- GJK: minkowskiDifference :: Convex -> Convex -> Convex
- GJK: originInside :: Convex -> Bool
- GJK: unAngle :: V2 Double -> Double
Files
- gjk2d.cabal +1/−1
- src/GJK.hs +6/−1
gjk2d.cabal view
@@ -1,5 +1,5 @@ name: gjk2d-version: 0.1.0.1+version: 0.1.0.2 -- synopsis: description: Yet another 2D GJK collision dection algorithm with Linear homepage: https://github.com/suzumiyasmith/gjk2d#readme
src/GJK.hs view
@@ -1,4 +1,9 @@-module GJK where+{-# LANGUAGE Trustworthy #-}+module GJK+ ( Convex (..)+ , convexIntersect+ )+where import Linear