name: spatial-math version: 0.2.4.0 synopsis: 3d math including quaternions/euler angles/dcms and utility functions description: This is a port of my 'mathlib' C library: `https://github.com/ghorn/mathlib` license: BSD3 license-file: LICENSE author: Greg Horn maintainer: gregmainland@gmail.com copyright: Copyright (c) 2012, Greg Horn category: Math build-type: Simple cabal-version: >=1.10 extra-source-files: README.md changelog.txt library hs-source-dirs: src exposed-modules: SpatialMath SpatialMathT other-modules: Types build-depends: base >= 4 && < 5, ghc-prim, cereal, binary, linear >= 1.17.1, lens default-language: Haskell2010 source-repository head type: git location: git://github.com/ghorn/spatial-math.git test-suite doctests type: exitcode-stdio-1.0 main-is: doctests.hs build-depends: base >= 4 && < 5, doctest >= 0.8 default-language: Haskell2010 ghc-options: -threaded hs-source-dirs: tests