Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 409 Bytes

readme.md

File metadata and controls

13 lines (9 loc) · 409 Bytes

Delaunay-Triangulation-Cpp

The project consists in implementing the randomized incremental algorithm for obtaining the Delaunay Triangulation of a given set of points, in O(nlogn) time.

Components

The project is composed of three main parts:

  • The DAG search structure (a Directed Acyclic Graph);
  • A data structure to represent a triangulation;
  • The incremental algorithm to get the triangulation.