Skip to content

Efficient C++ implementation of a Delaunay triangulation algorithm. Implemented DAG data structures to enforce computational complexity requirements of O(n logn) for the whole algorithm.

License

Notifications You must be signed in to change notification settings

andra961/Delaunay-Triangulation-Cpp

Repository files navigation

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.

About

Efficient C++ implementation of a Delaunay triangulation algorithm. Implemented DAG data structures to enforce computational complexity requirements of O(n logn) for the whole algorithm.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages