#Rtistry

2025-06-07

Some generative art playing with pastel shades ๐ŸŽจ

#Rtistry #RStats #GenerativeArt

Generative art piece consisting of circles arranged in 7 rows in different pastel shades
ใ‚Šใ‚Šใฏlyrikuso@mstdn.jp
2025-05-08

Magical trail in R (re-uploaded)
#rstats #rtistry #creativecoding

safest_integersafest_integer
2025-05-04
ใ‚Šใ‚Šใฏlyrikuso@mstdn.jp
2025-05-03

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!
youtube.com/shorts/64mzzZbXgdc
#rtistry #creativecoding

ใ‚Šใ‚Šใฏlyrikuso@mstdn.jp
2025-04-21

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

youtube.com/watch?v=CSHlUZxwuQ

Danielle Navarrodjnavarro@hachyderm.io
2025-04-18

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

very thin tracery of a heart shape in grey with wrapping lines and sheets around it, against a light background
safest_integersafest_integer
2025-04-15

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

en.wikipedia.org/wiki/Z-order_

Danielle Navarrodjnavarro@hachyderm.io
2025-04-14

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

art.djnavarro.net/gallery/mena

2025-04-14

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

#Rtistry #GenerativeArt #RStats #GenArtClub #ggplot2

Generative art piece of different coloured triangles in teal, orange, and red
Danielle Navarrodjnavarro@hachyderm.io
2025-04-10

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

soft pastel colours. the heart motif in the centre is gently illuminated in orange shades with glowing cuts, surrounded by many translucent sheets evenly spaced and shaded in grainy blues and purplesa piece with a harder palette of oranges and very dark blue-green shades. the heart motif is partially hollowed out, and appears to be sliced into quadrants. the slashes running through this piece are sharper, the sheets that fold around in the background feel irregular and more twisted, and the grainy texture no longer feels gentle
Danielle Navarrodjnavarro@hachyderm.io
2025-04-08

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

yet another in the apparently never-ending series of variations on the "slightly menacing hearts" series. this one is in a palette of yellow, red, and violet. structurally it's similar to the others: heart motif in the centre, surrounding frame encompassing 2/3 of the space, very grainy texture filled with arcs and what looks like the translucent edges of sheets of paper. the unusual feature in this one is a few dozen very sharp looking points that seem to be piercing the heart or or possible extruding from it, all on the right hand side.
Danielle Navarrodjnavarro@hachyderm.io
2025-04-03

set.seed(3670); set.seed(3674) # dream girl, evil

#rstats #rtistry

delicate white heart against a black background (seed 3670)shadowed black heart faintly illuminated from behind (seed 3674)
Danielle Navarrodjnavarro@hachyderm.io
2025-03-31

the brief illusion that this time it will be different

#rstats #rtistry #generativeart

generative art in a white and blue palette. hearts and grainy texture, consistent with previous pieces. sorry, not much energy for good alt text today
2025-03-31

Here are some of my generative pieces that I made a while ago. I spent a lot of time writing the code that would produce these images, they're very intentional, and they're nothing like what any "AI" image generator would spit out.

#rtistry #generativeArt #proceduralArt

abstract image: a circle drawn with many black dots, thicker at he bottom and thin at the top, from the bottom edge, many tiny streaks of red dots point downwards, creating the look of a liquid flowing downabstract image: several tendril-like live on a black background, they split into branches and change color from green near the top to a dark orange near the bottoma shape resembling smoke in the lesbian-pride colors on a black backgroundabstract image: many purple lines on a black background, starting in random places and converging into thicker lines, like water flowing over an uneven surface
Danielle Navarrodjnavarro@hachyderm.io
2025-03-30

wants me to tell him something pretty

#rstats #rtistry

grainy, textured piece. black against red background.
2025-03-29

Life has been 'lifeing'. Everything is chaotic and I'm just patiently waiting for May for a vacation. In the meantime, I am slowly working on my artpack package. I'm creating convenience functions, group_sample() and group_slice() that will allow you to quickly sample/slice entire groups out of data frames. This is something I personally do a lot for my art. Being able to drop groups of data can lead to some cool visuals sometimes: #rtistry w/ #ggplot2 in #rstats.

A sampled group of transparent circles that have been manipulated to be reminiscent of clouds.A sampled group of black and white bullseyes of varying sizes on a black backgroundA grid of transparent circles that have been manipulated to be reminiscent of a wall of clouds.A grid of black and white bullseyes of varying sizes on a medium blue background.

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst