canvas_mesh {aRtsy} | R Documentation |
Draw Meshes
Description
This function draws one or more rotating circular morphing meshes on the canvas.
Usage
canvas_mesh(
colors,
background = "#fafafa",
transform = c("perlin", "fbm", "simplex", "cubic",
"worley", "knn", "rf", "svm"),
lines = 500,
iterations = 500,
mixprob = 0
)
Arguments
colors |
a string or character vector specifying the color(s) used for the artwork. |
background |
a character specifying the color used for the background (and the hole). |
transform |
a character specifying the type of transformation to use for the radius. |
lines |
an integer specifying the number of lines to darw. |
iterations |
a positive integer specifying the number of iterations of the algorithm. |
mixprob |
a value between 0 and 1 specifying the probability of a line segment getting another color. |
Value
A ggplot
object containing the artwork.
Author(s)
Koen Derks, koen-derks@hotmail.com
References
http://rectangleworld.com/blog/archives/462
See Also
colorPalette
Examples
set.seed(2)
# Simple example
canvas_mesh(colors = colorPalette("origami"))
[Package aRtsy version 0.2.4 Index]