| triMat {deldir} | R Documentation |
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 x 3 matrix where n is the number of Delaunay triangles in the triangulation.
triMat(object)
object |
An object of class |
This function was suggested by Robin Hankin of the School of Mathematical and Computing Sciences at Auckland University of Technology.
An n x 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.
Rolf Turner r.turner@auckland.ac.nz https://www.stat.auckland.ac.nz/~rolf
deldir()
triang.list()
plot.triang.list()
set.seed(42) x <- runif(10) y <- runif(10) ddxy <- deldir(x,y) M <- triMat(ddxy)