| plot.tile.list {deldir} | R Documentation |
A method for plot. Plots (sequentially)
the tiles associated with each point in the set being tessellated.
plot.tile.list(x, verbose = TRUE, ...)
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. |
NULL; side effect is a plot.
Rolf Turner
x <- runif(20)
y <- runif(20)
z <- deldir(x,y,rw=c(0,1,0,1))
w <- tile.list(z)
plot(w)