R/utils-mat-grobs.R

Defines functions rectMatPathGrobFn rectMatPolygonGrob rectMatRectGrobFn rectMatGrobFn diffMatGrobFn convexMatGrobFn halmaMatGrobFn

# "mat" grob functions
halmaMatGrobFn <- function(width = 0.2) {
	width <- rep(width, length.out = 2)
	xy_out <- halma_xy()
	xy_in <- npc_to_in(as_coord2d(xy_out), h = 1 - width[1], w = 1 - 2.5 * width[2])
	x <- c(xy_in$x, xy_out$x)
	y <- c(xy_in$y, xy_out$y)
	id <- rep(1:2, each = length(xy_out$x))
	function(name = NULL, gp = gpar(), vp = NULL) {
		pathGrob(x, y, id = id, rule = "evenodd", name = name, gp = gp, vp = vp)
	}
}

convexMatGrobFn <- function(n_vertices, t = 90, width = 0.2) {
	t <- seq(0, 360, length.out = n_vertices + 1) + t
	r <- 0.5 - width[1]
	x_in <- 0.5 + to_x(t, r)
	y_in <- 0.5 + to_y(t, r)
	x_out <- 0.5 + to_x(t, 0.5)
	y_out <- 0.5 + to_y(t, 0.5)
	x <- c(x_in, x_out)
	y <- c(y_in, y_out)
	id <- rep(1:2, each = n_vertices + 1)
	function(name = NULL, gp = gpar(), vp = NULL) {
		pathGrob(x, y, id = id, rule = "evenodd", name = name, gp = gp, vp = vp)
	}
}

diffMatGrobFn <- function(width = 0.2, shape = pp_shape()) {
	width <- rep(width, length.out = 4)
	x_in <- c(width[4], 1 - width[2], 1 - width[2], width[4])
	y_in <- c(1 - width[1], 1 - width[1], width[3], width[3])
	vpi_x <- mean(x_in[1:2])
	vpi_y <- mean(y_in[2:3])
	vpi_w <- x_in[2] - x_in[1]
	vpi_h <- y_in[2] - y_in[3]
	function(name = NULL, gp = gpar(), vp = NULL) {
		vpi <- viewport(x = vpi_x, y = vpi_y, width = vpi_w, height = vpi_h)
		inner <- shape$shape(vp = vpi)
		shape$polyclip(inner, op = "minus", name = name, gp = gp, vp = vp)
	}
}

rectMatGrobFn <- function(width = 0.2) {
	width <- rep(width, length.out = 4)
	is_zero <- vapply(width, nigh, logical(1), y = 0, USE.NAMES = FALSE)
	if (all(is_zero)) {
		function(name = NULL, gp = gpar(), vp = NULL) nullGrob(name = name, vp = vp)
	} else if (
		sum(is_zero) == 3 ||
			all(is_zero == c(TRUE, FALSE, TRUE, FALSE)) ||
			all(is_zero == c(FALSE, TRUE, FALSE, TRUE))
	) {
		rectMatRectGrobFn(width)
	} else if (sum(is_zero) == 0) {
		rectMatPathGrobFn(width)
	} else {
		rectMatPolygonGrob(width)
	}
}

rectMatRectGrobFn <- function(width) {
	if (nigh(width[1], 0)) {
		rt <- nullGrob()
	} else {
		y <- 1 - width[1]
		rt <- polygonGrob(x = c(0, 0, 1, 1), y = c(1, y, y, 1))
	}
	if (nigh(width[2], 0)) {
		rr <- nullGrob()
	} else {
		x <- 1 - width[2]
		rr <- polygonGrob(x = c(x, x, 1, 1), y = c(1, 0, 0, 1))
	}
	if (nigh(width[3], 0)) {
		rb <- nullGrob()
	} else {
		y <- width[3]
		rb <- polygonGrob(x = c(0, 0, 1, 1), y = c(y, 0, 0, y))
	}
	if (nigh(width[4], 0)) {
		rl <- nullGrob()
	} else {
		x <- width[4]
		rl <- rectGrob(x = c(0, 0, x, x), y = c(1, 0, 0, 1))
	}
	function(name = NULL, gp = gpar(), vp = NULL) {
		grobTree(rt, rr, rb, rl, name = name, gp = gp, vp = vp)
	}
}

#### Could figure out actual polygons instead of path hack
rectMatPolygonGrob <- function(width) {
	x_out <- c(0, 1, 1, 0)
	y_out <- c(1, 1, 0, 0)
	x_in <- c(width[4], 1 - width[2], 1 - width[2], width[4])
	y_in <- c(1 - width[1], 1 - width[1], width[3], width[3])
	x <- c(x_in, x_out)
	y <- c(y_in, y_out)
	id <- rep(1:2, each = 4)
	function(name = NULL, gp = gpar(), vp = NULL) {
		pathGrob(x, y, id = id, rule = "evenodd", name = name, gp = gp, vp = vp)
	}
}

rectMatPathGrobFn <- function(width) {
	x_out <- c(0, 1, 1, 0)
	y_out <- c(1, 1, 0, 0)
	x_in <- c(width[4], 1 - width[2], 1 - width[2], width[4])
	y_in <- c(1 - width[1], 1 - width[1], width[3], width[3])
	x <- c(x_in, x_out)
	y <- c(y_in, y_out)
	id <- rep(1:2, each = 4)
	function(name = NULL, gp = gpar(), vp = NULL) {
		pathGrob(x, y, id = id, rule = "evenodd", name = name, gp = gp, vp = vp)
	}
}

Try the piecepackr package in your browser

Any scripts or data that you put into this service are public.

piecepackr documentation built on May 12, 2026, 9:07 a.m.