//=time() ?>
I'm working on a new generative series derived from the Sneronoi concept. Would love to hear your thoughts.
#generative #creativecoding #digitalart
A few variations I got this morning. You can try for yourself on the token page. Just click on "Variations" underneath the image.
https://t.co/4ynCOhZqWA
Some close-ups. Images are generated as SVGs and can be saved at infinite resolution.
@rtbyts @1Abstract_1 @KennyVaden library(tidyverse)
set.seed(19)
map_dfr(letters[2:6],~tibble(x=sample(2:6,3),y=sample(2:6,3),z=.x))|>ggplot(aes(x,y,fill=z))+ggforce::geom_mark_hull()+geom_point(size=5)+coord_fixed()+xlim(0,8)+ylim(0,8)+scale_fill_viridis_d(option="B")+cowplot::theme_nothing()
#rstats280