Magical trail in R (re-uploaded)
#rstats #rtistry #creativecoding
GitHub - paulvanderlaken/generative-art

Contribute to paulvanderlaken/generative-art development by creating an account on GitHub.

GitHub

Uploaded a short animation inspired by the "Magical trail shader" created by Jason Labbe using p5.js. Three animated scenes were generated in R and combined using a video editor.

My Mastodon instance has been a bit unstable lately, so the thumbnail might not show up properly. Please check it out on YouTube!
https://youtube.com/shorts/64mzzZbXgdc
#rtistry #creativecoding

Before you continue to YouTube

Wrapped up the video I worked on over the weekend ๐ŸŽฅ๐Ÿ’œ
Looks like a swarm of something dancing in violet fluid โ€” what does it look like to you?
Used SkSL shaders for a custom VHS-style effect, plus noise-driven motion and bouncing logic in R. #rstats #rtistry #creativecoding

https://www.youtube.com/watch?v=CSHlUZxwuQk

A swarm of something dancing in violet fluid

YouTube
yeah, i know the series is officially over and i already told the whole story in the blog post, but there are so many lovely pieces i never really talked about. i kind of love how this one is so minimalist compared to the others, like it's quick sketch of what the series might be #rstats #rtistry

```
library(tidyverse)
z = function(n) {
bb = function(i) {
x = y = 0
for (k in 0:(n - 1)) {
x = x + ((floor(i/2^(2 * k))) %% 2) * 2^k
y = y + ((floor(i/2^(2 * k + 1))) %% 2) * 2^k
}
c(x, y)
}
as.data.frame(t(sapply(0:(4^n - 1), bb)))
}
ggplot(z(6)) +
geom_path(aes(x=V1, y=V2, col=sin(V1/4)+cos(V2/4)), show.legend=F) +
scale_colour_gradient(low='orange', high='blue') +
theme_void()
```

https://en.wikipedia.org/wiki/Z-order_curve
#rstats #generativeart #tilingtuesday #rtistry #fractal

Z-order curve - Wikipedia

i've wrapped up the "slightly menacing hearts" generative art series. 200 pieces shared via CC-BY licence, with source code linked on the gallery page. 32 pieces were posted with meaningful titles: i might talk about those later, but the backstory is a little personal ๐Ÿงก

#rstats #rtistry #genart

https://art.djnavarro.net/gallery/menacing-hearts/

Slightly Menacing Hearts โ€“ Art by Danielle Navarro

Art by Danielle Navarro

Getting back into some generative art again with this rather spiky looking system ๐ŸŽจ

#Rtistry #GenerativeArt #RStats #GenArtClub #ggplot2

i can't help but notice that the aesthetic on this series has drifted over time. on the left is a piece generated with version 13 (seed 2261), and on the right is a piece generated from version 45 (seed 4406). shared structural components notwithstanding, the style is quite different

#rstats #rtistry #genart

the surprising intrusion of a large number of painful-looking spikes into a piece that is nominally something to do with the heart motif is... on point. thinking of calling it "grindr notifications"

#rstats #rtistry