Learn R Programming

deldir (version 0.1-9)

triMat: Produce matrix of triangle vertex indices.

Description

Lists the indices of the vertices of each Delaunay triangle in the triangulation of a planar point set. The indices are listed (in increasing numeric order) as the rows of an $n \times 3$ matrix where $n$ is the number of Delaunay triangles in the triangulation.

Usage

triMat(object)

Arguments

object
An object of class deldir (as produced by the funtion deldir()) specifying the Delaunay triangulation and Dirichlet (Voronoi) tesselation of a planar point set.

Value

  • An $n \times 3$ matrix where $n$ is the number of Delaunay triangles in the triangulation specified by object. The $i^{th}$ row consists of the indices (in the original list of points being triangulated) of vertices of the $i^{th}$ Delaunay triangle. The indices are listed in increasing numeric order in each row.

Details

This function was suggested by Robin Hankin of the School of Mathematical and Computing Sciences at Auckland University of Technology.

See Also

deldir() triang.list() plot.triang.list()

Examples

Run this code
set.seed(42)
x    <- runif(10)
y    <- runif(10)
ddxy <- deldir(x,y)
M    <- triMat(ddxy)

Run the code above in your browser using DataLab