Skip to content

Commit

Permalink
fix: mosaic sketch
Browse files Browse the repository at this point in the history
  • Loading branch information
nrennie committed Jan 5, 2023
1 parent 2f1dd2e commit 320c4b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/mosaic_sketch.R
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ rough_tiles <- function(n = 10,
ggvoronoi::geom_voronoi() +
ggvoronoi::stat_voronoi(geom = "path",
colour = line_col,
size = line_size) +
linewidth = line_size) +
ggplot2::scale_fill_manual(values = fill_cols)
return(p)

Expand Down Expand Up @@ -99,7 +99,7 @@ mosaic_sketch <- function(n = 10,
ggplot2::aes(x = .data$x,
y = .data$y,
group = .data$group,
size = I(.data$size),
linewidth = I(.data$linewidth),
colour = I(.data$colour))) +
ggplot2::theme_void() +
ggplot2::theme(legend.position = "none",
Expand Down

0 comments on commit 320c4b9

Please sign in to comment.