spatstat (version 1.42-2)

triangulate.owin: Decompose Window into Triangles

Description

Given a spatial window, this function decomposes the window into disjoint triangles. The result is a tessellation of the window in which each tile is a triangle.

Usage

triangulate.owin(W)

Arguments

W
Window (object of class "owin").

Value

  • Tessellation (object of class "tess").

Details

The window W will be decomposed into disjoint triangles. The result is a tessellation of W in which each tile is a triangle. The window is first converted to a polygonal window using as.polygonal. The vertices of the polygonal window are extracted, and the Delaunay triangulation of these vertices is computed using delaunay. The algorithm then efficiently determines which triangles lie inside the window, and assembles these triangles into a tessellation.

The vertices of the triangles are vertices of the original polygon.

See Also

tess, delaunay, as.polygonal

Examples

Run this code
plot(triangulate.owin(letterR))

Run the code above in your browser using DataCamp Workspace