Claus Wilkeさんのプロフィール画像

Claus Wilkeさんのイラストまとめ


Computational biologist, data scientist, digital artist | he, him | clauswilke.com/art/links | Opinions are my own and do not represent UT Austin.
clauswilke.com/art

フォロー数:973 フォロワー数:19435

I call it "Incomplete Convergence."

0 2

I'm working on a new generative series derived from the Sneronoi concept. Would love to hear your thoughts.

3 21

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

0 2

Some close-ups. Images are generated as SVGs and can be saved at infinite resolution.

0 3

Experiments with Voronoi tessellations.

4 19

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()

0 2