# https://www.flickr.com/photos/stringrbelle/49258165293
#' @rdname rosemary
#' @export
electric_princess <- function(dir = NULL, ...) {
dir <- check_dir(dir)
file <- file.path(dir, "electric_princess.png")
jasmines::use_seed(125) %>%
jasmines::entity_heart(10000) %>%
dplyr::mutate(
x = x * 35,
y = y * 35
) %>%
jasmines::unfold_tempest(
iterations = 150,
scale = .1
) %>%
dplyr::mutate(order = time) %>%
jasmines::style_ribbon(
alpha = c(.1, .02),
size = 1,
palette = jasmines::palette_manual("pink")
) %>%
jasmines::style_overlay(fill = "#000000cc") %>%
jasmines::export_image(file)
cat("image written to:", file, "\n")
return(invisible(NULL))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.