module Delaunay: sig end
Delaunay triangulation
module type CCC = sig end
Delaunay triangulation is available for any CCC system in the sense
of Knuth's ``Axioms and Hulls''
module type Triangulation = sig end
The result of triangulation is an abstract value of type triangulation
.
module Make: functor (S : CCC) -> sig end
Generic Delaunay triangulation
module IntPoints: sig end
Points with integer coordinates
module Int: sig end
Delaunay triangulation with integer coordinates
module FloatPoints: sig end
Points with floating point coordinates
module Float: sig end
Delaunay triangulation with floating point coordinates