plot.tile.list {deldir}R Documentation

Plot Dirchlet/Voronoi tiles

Description

A method for plot. Plots (sequentially) the tiles associated with each point in the set being tessellated.

Usage

plot.tile.list(x, verbose = TRUE, ...)

Arguments

x A list of the tiles in a tessellation, as produced the function tile.list().
verbose Logical scalar; if TRUE the tiles are plotted one at a time (with a ``Go?'' prompt after each) so that the process can be watched.
... Optional arguments; not used. There for consistency with the generic plot function.

Value

NULL; side effect is a plot.

Author(s)

Rolf Turner

See Also

tile.list()

Examples

        x <- runif(20)
        y <- runif(20)
        z <- deldir(x,y,rw=c(0,1,0,1))
        w <- tile.list(z)
        plot(w)

[Package deldir version 0.0-4 Index]