This function draws one or more rotating circular morphing meshes on the canvas.
canvas_mesh(
colors,
background = "#fafafa",
transform = c("perlin", "fbm", "simplex", "cubic",
"worley", "knn", "rf", "svm"),
lines = 500,
iterations = 500,
mixprob = 0
)
a string or character vector specifying the color(s) used for the artwork.
a character specifying the color used for the background (and the hole).
a character specifying the type of transformation to use for the radius.
an integer specifying the number of lines to darw.
a positive integer specifying the number of iterations of the algorithm.
a value between 0 and 1 specifying the probability of a line segment getting another color.
A ggplot
object containing the artwork.
colorPalette
# \donttest{
set.seed(2)
# Simple example
canvas_mesh(colors = colorPalette("origami"))
# }