canvas_splits {aRtsy} | R Documentation |
This function draws split lines.
canvas_splits(
colors,
background = "#fafafa",
iterations = 6,
sd = 0.2,
lwd = 0.05,
alpha = 0.5
)
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). |
iterations |
a positive integer specifying the number of iterations of the algorithm. |
sd |
a numeric value specifying the standard deviation of the angle noise. |
lwd |
a numeric value specifying the width of the lines. |
alpha |
a numeric value specifying the transparency of the lines. |
A ggplot
object containing the artwork.
Koen Derks, koen-derks@hotmail.com
colorPalette
set.seed(2)
# Simple example
canvas_splits(colors = "black", sd = 0)
# Simple example
canvas_splits(colors = colorPalette("dark2"), background = "black", sd = 1)