package ocamlgraph

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

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

OCaml

Innovation. Community. Security.