# URL "light": https://www.flickr.com/photos/stringrbelle/49258843257
# URL "dark": https://www.flickr.com/photos/stringrbelle/49258653991
#' @rdname rosemary
#' @export
art_deco_rocketry <- function(dir = NULL, version = 0, ...) {
dir <- check_dir(dir)
rocketry <- function(palette, background, file) {
jasmines::use_seed(1) %>%
jasmines::entity_circle(grain = 2000) %>%
jasmines::unfold_slice(
iterations = 50,
scale = .125,
output1 = "time",
output2 = "order") %>%
jasmines::style_ribbon(
background = background,
alpha = c(.5, .05),
palette = palette
) %>%
jasmines::export_image(file)
}
if(version %in% c(0,1)) {
file <- file.path(dir, "art_deco_rocketry_light.png")
rocketry(
palette = jasmines::palette_manual(
"grey40", "ghostwhite", "ghostwhite",
"grey20", "ghostwhite"),
background = "ghostwhite",
file = file
)
cat("image written to:", file, "\n")
}
if(version %in% c(0,2)) {
file <- file.path(dir, "art_deco_rocketry_dark.png")
rocketry(
palette = jasmines::palette_manual(
"grey", "black", "black",
"grey80", "black"),
background = "black",
file = 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.