Make polygon_list circles

polygon_circles(xcenter, ycenter, setnames = NULL, radius = 1, n = 60, ...)

Arguments

xcenter, ycenter

numeric vector that defines the x and y coordinate position of the center of each circle.

setnames

vector that contains names for each circle, stored as names() for each polygon. When setnames is NULL then index numbers are used.

radius

numeric vector that defines the radius of each circle. This vector is recycled to length(xcenter).

n

integer value indicating the number of subdivisions to use in the circle.

...

additional arguments are ignored.

Value

JamPolygon object

Details

This function creates one or more circles as polygon_list list objects.

Examples

circle_jp <- polygon_circles(c(3, 2), c(2, 3))
plot(circle_jp, fill=c("red", "gold"))