packages feed

hsnoise-0.0.2: hsnoise.cabal

name:               hsnoise
version:            0.0.2

cabal-version:      >= 1.2.3
build-type:         Simple

license:            BSD3
license-file:       LICENSE
copyright:          Copyright (c) 2011, Colin Hill
author:             Colin Hill <colin.james.hill@gmail.com>
maintainer:         Colin Hill <colin.james.hill@gmail.com>

stability:          Experimental

homepage:           https://github.com/colinhect/hsnoise

synopsis:           A coherent 3d noise library.

description:        A coherent 3d noise library loosely based on libnoise.  Currently has an
                    implementation of Perlin noise and ridged multi-fractal noise.  Will 
                    eventually support other noise types as well as noise function combinations.
                    .
                    Code examples included in package.
                    .
                    Example of Perlin noise output image: <http://i.imgur.com/cPOZ2.png>
                    .

category:           Noise

extra-source-files: examples/Perlin.hs, examples/Ridged.hs

library
    exposed-modules:    Numeric.Noise, Numeric.Noise.Perlin, Numeric.Noise.Random,
                        Numeric.Noise.Ridged 
    build-depends:      base >= 4 && < 5, vector -any
    hs-source-dirs:     src
    ghc-options:        -Wall