packages feed

SG-1.0: SG.cabal

Name:                SG
Version:             1.0
Synopsis:            Small geometry library for dealing with vectors and collision detection
License:             BSD3
License-file:        LICENSE
Author:              Neil Brown
Maintainer:          neil@twistedsquare.com
Copyright:           Copyright (c) 2009, Neil Brown
Stability:           Provisional
Description:         A small geometry library for dealing with
                     vectors, points, lines, simple shapes, and their
                     various intersection tests.  See also the SGdemo project
                     (<http://hackage.haskell.org/cgi-bin/hackage-scripts/package/SGdemo>)
		     for an example of using the module.
Tested-with:         GHC==6.8.2, GHC==6.10.1
Build-Type:          Simple
Category:            Data, Math
Cabal-Version:       >=1.2
Extra-source-files:  Data/SG/Test.hs

   
Library
  Build-Depends:     base, mtl
  Exposed-modules:   Data.SG
                     Data.SG.Geometry
                     Data.SG.Geometry.TwoDim
                     Data.SG.Geometry.ThreeDim
                     Data.SG.Matrix
                     Data.SG.Shape
                     Data.SG.Vector
                     Data.SG.Vector.Basic
  ghc-options:       -Wall
  Extensions:        MultiParamTypeClasses FlexibleInstances FunctionalDependencies
                     ScopedTypeVariables FlexibleContexts