Skip to content

Instantly share code, notes, and snippets.

@rparatodxs
Created March 12, 2018 12:21
Show Gist options
  • Save rparatodxs/0881e5479e1c8849e9d087e0b9360782 to your computer and use it in GitHub Desktop.
Save rparatodxs/0881e5479e1c8849e9d087e0b9360782 to your computer and use it in GitHub Desktop.
Madalas_en_color.R
library(ggplot2)
library(dplyr)
library(deldir)
library(colourlovers)
library(rlist)
# Parameters
iter=3 # Number of iterations (depth)
points=14 # Number of points
radius=1.14 # Factor of expansion/compression
# Angles of points from center
angles=seq(0, 2*pi*(1-1/points), length.out = points)+pi/2
# Initial center
df=data.frame(x=0, y=0)
# Iterate over centers again and again
for (k in 1:iter)
{
temp=data.frame()
for (i in 1:nrow(df))
{
data.frame(x=df[i,"x"]+radius^(k-1)*cos(angles),
y=df[i,"y"]+radius^(k-1)*sin(angles)) %>% rbind(temp) -> temp
}
df=temp
}
# Function to extract id, coordinates and area of each polygon
crea = function(tile) {tile %>% list.match("ptNum|x|y|area") %>% as.data.frame()}
# Generate tesselation, obtain polygons and create a dataframe with results
# This dataframe will be the input of ggplot
df %>%
deldir(sort = TRUE) %>%
tile.list() %>%
list.filter(sum(bp)==0) %>%
list.filter(length(intersect(which(x==0), which(y==0)))==0) %>%
lapply(crea) %>%
list.rbind() -> df_polygon
# Pick a random top palette from colourLovers
palette <- sample(clpalettes('top'), 1)[[1]] %>% swatch %>% .[[1]]
# Draw mandala with geom_polygon. Colur depends on area
ggplot(df_polygon, aes(x = x, y = y)) +
geom_polygon(aes(fill = area, color=area, group = ptNum),
show.legend = FALSE, size=0)+
scale_fill_gradientn(colors=sample(palette, length(palette))) +
scale_color_gradientn(colors="gray30") +
theme_void()
# Do you like the result? You can save it (change the filename):
ggsave("my_mandala.png", height=5, width=5, units='in', dpi=600)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment