next up previous contents index CD CD Algorithms
Next: Voronoi Diagrams Up: Computational Geometry Previous: Convex Hull

Triangulation

  

  figure18722

Input description: A set of points or a polyhedon.

Problem description: Partition the interior of the point set or polyhedron into triangles.

Discussion: Triangulation is a fundamental problem in computational geometry, because the first step in working with complicated geometric objects is to break them into simple geometric objects. The simplest geometric objects are triangles in two dimensions, and tetrahedra in three. Classical applications of triangulation include finite element analysis and computer graphics.    

   A particularly interesting application of triangulation is surface or function interpolation. Suppose that we have sampled the height of a mountain at a certain number of points. How can we estimate the height at any point q in the plane? If we project the points on the plane, and then triangulate them, the triangulation completely partitions the plane into regions. We can estimate the height of q by interpolating among the three points of the triangle that contains it. Further, this triangulation and the associated height values define a surface of the mountain suitable for graphics rendering.

In the plane, a triangulation is constructed by adding nonintersecting chords between the vertices until no more such chords can be added. Specific issues arising in triangulation include:

To construct a triangulation of a convex polygon in linear time, just pick an arbitrary starting vertex v and insert chords from v to each other vertex in the polygon.   Because the polygon is convex, we can be confident that none of the boundary edges of the polygon will be intersected by these chords and that all of them lie within the polygon. The simplest algorithm for constructing general polygon triangulations tries each of the tex2html_wrap_inline29928 possible chords and inserts them if they do not intersect a boundary edge or previously inserted chord. There are practical algorithms that run in tex2html_wrap_inline29930 time and theoretically interesting algorithms that run in linear time. See the implementations and notes below for details.

Implementations: Triangle, by Jonathan Shewchuk of Carnegie-Mellon University, is a C language code that generates Delaunay triangulations, constrained Delaunay triangulations (forced to have certain edges), and quality-conforming Delaunay triangulations (which avoid small angles by inserting extra points).     It has been widely used for finite element analysis and other applications and is fast and robust. Triangle is the first thing I would try if I needed a two-dimensional triangulation code. Although Triangle is available at http://www.cs.cmu.edu/ tex2html_wrap_inline29932 quake/triangle.html, it is copyrighted by the author and may not be sold or included in commercial products without a license.

GEOMPACK is a suite of Fortran 77 codes by Barry Joe of the University of Alberta, for 2- and 3-dimensional triangulation and convex decomposition problems.    In particular, it does both Delaunay triangulation and convex decompositions of polygonal and polyhedral regions, as well as arbitrary-dimensional Delaunay triangulations. They can be obtained from ftp://ftp.cs.ualberta.ca/pub/geompack.

Steve Fortune is the author of a widely used 2D code for Voronoi diagrams and Delaunay triangulations, written in C. This code is smaller and probably simpler to work with than either of the above, if all you need is the Delaunay triangulation of points in the plane. It is based on Fortune's own sweepline algorithm [For87] for Voronoi diagrams and is available from Netlib (see Section gif) at http://netlib.bell-labs.com/netlib/voronoi/index.html.  

O'Rourke [O'R94] provides asymptotically slow implementations in C of polygon triangulation (in tex2html_wrap_inline29934 ) and Delaunay triangulation (in tex2html_wrap_inline29936 ). These will be unusable for more than modest numbers of points, but see Section gif if interested. See Section gif.

Algorithm 624 [Ren84] of the Collected Algorithms of the ACM is a Fortran implementation of triangulation for surface interpolation. See Section gif. A linear-time implementation for triangulating a planar map is included with LEDA (see Section gif).   

Higher-dimensional Delaunay triangulations are a special case of higher-dimensional convex hulls, and Qhull [BDH97] appears to be the convex hull code of choice for general dimensions (i.e. three dimensions and beyond). It is written in C, and it can also construct Voronoi vertices, furthest-site Voronoi vertices, and half-space intersections. Qhull has been widely used in scientific applications and has a well-maintained home page at http://www.geom.umn.edu/software/qhull/.   

Notes: After a long search, Chazelle [Cha91] discovered a linear-time algorithm for triangulating a simple polygon. This algorithm is sufficiently hopeless to implement that it qualifies more as an existence proof. The first tex2html_wrap_inline29938 algorithm for polygon triangulation was given by [GJPT78]. An tex2html_wrap_inline29940 algorithm by Tarjan and Van Wyk [TW88] followed before Chazelle's result. Expositions on polygon and point set triangulation include [O'R94, PS85].

Linear-time algorithms for triangulating monotone polygons have been long known [GJPT78] and are the basis of algorithms for triangulating simple polygons. A polygon is monotone when there exists a direction d such that any line with slope d intersects the polygon in at most two points.  

A heavily studied class of optimal triangulations seeks to minimize the total length of the chords used. The computational complexity of constructing this minimum weight triangulation is a long-standing open problem in computational geometry, so the interest has shifted to provably good approximation algorithms. The minimum weight triangulation of a convex polygon can be found in tex2html_wrap_inline29942 time using dynamic programming, as discused in Section gif.   

Related Problems: Voronoi diagrams (see page gif), polygon partitioning (see page gif).    


next up previous contents index CD CD Algorithms
Next: Voronoi Diagrams Up: Computational Geometry Previous: Convex Hull

Algorithms
Mon Jun 2 23:33:50 EDT 1997