Learn R Programming

tessellation (version 2.3.0)

plotBoundedCell2D: Plot a bounded Voronoï 2D cell

Description

Plot a bounded Voronoï 2D cell.

Usage

plotBoundedCell2D(
  cell,
  border = "black",
  color = NA,
  check.bounded = TRUE,
  ...
)

Value

No value, this function just plots the cell (more precisely, it adds the plot of the cell to the current plot).

Arguments

cell

a bounded Voronoï 2D cell

border

color of the borders of the cell; NA for no color

color

color of the cell; NA for no color

check.bounded

Boolean, whether to check that the cell is bounded; set to FALSE for a small speed gain if you know that the cell is bounded

...

graphical parameters for the borders

Examples

Run this code
library(tessellation)
centricSquare <- rbind(
  c(-1, 1), c(1, 1), c(1, -1), c(-1, -1), c(0, 0)
)
d <- delaunay(centricSquare)
v <- voronoi(d)
cell5 <- v[[5]]
isBoundedCell(cell5) # TRUE
plot(centricSquare, type = "n", asp = 1, xlab = "x", ylab = "y")
plotBoundedCell2D(cell5, color = "pink")

Run the code above in your browser using DataLab