convexHullNd-0.1.0.0: convexHullNd.cabal
cabal-version: 2.2
name: convexHullNd
version: 0.1.0.0
synopsis: Convex hull
description:
Computes the convex hull of a set of points in arbitrary dimension.
.
This library uses the C library 'qhull'.
.
For examples, look at the README file.
homepage: https://github.com/stla/convexHullNd#readme
license: GPL-3.0-only
license-file: LICENSE
author: Stéphane Laurent
maintainer: laurent_step@outlook.fr
copyright: 2023 Stéphane Laurent
category: Math, Geometry
build-type: Simple
extra-source-files: README.md
CHANGELOG.md
library
hs-source-dirs: src
exposed-modules: Geometry.ConvexHull
other-modules: Geometry.ConvexHull.ConvexHull
, Geometry.ConvexHull.CConvexHull
, Geometry.ConvexHull.Types
, Geometry.Qhull.Types
, Geometry.Qhull.Shared
build-depends: base >= 4.9 && < 5
, containers >= 0.6.4.1 && < 0.7
, extra >= 1.7.7 && < 1.8
, ilist >= 0.4.0.1 && < 0.5
, hashable >= 1.3.5.0 && < 1.5
, insert-ordered-containers >= 0.2.5.3 && < 0.3
, Unique >= 0.4.7.9 && < 0.5
, regex-compat >= 0.95 && < 0.96
other-extensions: ForeignFunctionInterface
, InstanceSigs
default-language: Haskell2010
include-dirs: C
C-sources: C/libqhull_r.c
, C/geom_r.c
, C/geom2_r.c
, C/global_r.c
, C/io_r.c
, C/mem_r.c
, C/merge_r.c
, C/poly_r.c
, C/poly2_r.c
, C/qset_r.c
, C/random_r.c
, C/usermem_r.c
, C/userprintf_r.c
, C/user_r.c
, C/stat_r.c
, C/convexhull.c
, C/utils.c
install-includes: C/libqhull_r.h
, C/geom_r.h
, C/io_r.h
, C/mem_r.h
, C/merge_r.h
, C/poly_r.h
, C/qhull_ra.h
, C/qset_r.h
, C/random_r.h
, C/user_r.h
, C/stat_r.h
, C/convexhull.h
, C/utils.h
ghc-options: -Wall
source-repository head
type: git
location: https://github.com/stla/convexHullNd