package ocamlgraph

  1. Overview
  2. No Docs
A generic graph library for OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

ocamlgraph-2.0.0.tbz
sha256=20fe267797de5322088a4dfb52389b2ea051787952a8a4f6ed70fcb697482609
sha512=c4973ac03bdff52d1c8a1ed01c81e0fbe2f76486995e57ff4e4a11bcc7b1793556139d52a81ff14ee8c8de52f1b40e4bd359e60a2ae626cc630ebe8bccefb3f1

doc/ocamlgraph/Graph/Delaunay/index.html

Module Graph.DelaunaySource

Delaunay triangulation.

Sourcemodule type CCC = sig ... end

Delaunay triangulation is available for any CCC system in the sense of Knuth's ``Axioms and Hulls''

Sourcemodule type Triangulation = sig ... end

The result of triangulation is an abstract value of type triangulation. Then one can iterate over all edges of the triangulation.

Sourcemodule Make (S : CCC) : Triangulation with module S = S

Generic Delaunay triangulation

Sourcemodule IntPoints : CCC with type point = int * int

Points with integer coordinates

Sourcemodule Int : Triangulation with module S = IntPoints

Delaunay triangulation with integer coordinates

Sourcemodule FloatPoints : CCC with type point = float * float

Points with floating point coordinates

Sourcemodule Float : Triangulation with module S = FloatPoints

Delaunay triangulation with floating point coordinates