clippingPathGrob {gridpattern} | R Documentation |
Clip grob using another grob to specify the clipping path
Description
clippingPathGrob()
clips a grob using another grob to specify the clipping path
Usage
clippingPathGrob(
clippee,
clipper,
use_R4.1_clipping = getOption("ggpattern_use_R4.1_clipping",
getOption("ggpattern_use_R4.1_features")),
png_device = NULL,
res = getOption("ggpattern_res", 72),
name = NULL,
gp = gpar(),
vp = NULL
)
Arguments
clippee |
Grob to be clipped |
clipper |
Grob that defines clipping region |
use_R4.1_clipping |
If |
png_device |
“png” graphics device to save intermediate raster data with if |
res |
Resolution of desired |
name |
A character identifier. |
gp |
An object of class |
vp |
A Grid viewport object (or NULL). |
Value
A grid
grob
Examples
if (capabilities("png") && require("grid")) {
clippee <- patternGrob("circle", gp = gpar(col = "black", fill = "yellow"),
spacing = 0.1, density = 0.5)
angle <- seq(2 * pi / 4, by = 2 * pi / 6, length.out = 7)
x_hex_outer <- 0.5 + 0.5 * cos(angle)
y_hex_outer <- 0.5 + 0.5 * sin(angle)
x_hex_inner <- 0.5 + 0.25 * cos(rev(angle))
y_hex_inner <- 0.5 + 0.25 * sin(rev(angle))
clipper <- grid::pathGrob(x = c(x_hex_outer, x_hex_inner),
y = c(y_hex_outer, y_hex_inner),
id = rep(1:2, each = 7),
rule = "evenodd")
clipped <- clippingPathGrob(clippee, clipper, use_R4.1_clipping = FALSE)
grid.newpage()
grid.draw(clipped)
}