greweb.me / Plots / 108 "Perlin mountains"

hicetnunc NFTs
OBJKT#36604
Plotterfiles
link
Sourcecode
108/main.rs
Tags
perlin
mountains

It took me 107 previous days of plotting to come up with an elegant idea: searching the best plot among many different variants can easily be done by working instead on a video of that plot! Then you can chose a frame to plot, it is both practical as well as you get a nice animation for free!

Some code snippet for video generation.

# generate all .svg in results, then:
cd results
mkdir pngs
for f in *.svg; do convert $f pngs/${f%.*}.png; done
ffmpeg -r 24 -i pngs/%d.png -pix_fmt yuv420p -vf "pad=ceil(iw/2)*2:ceil(ih/2)*2" out.mp4
As a generative plotter artist, I use code to generate art (creative coding) and physically create it with pen plotters, which is itself a generative process – each physical plot is a unique variant. I love dualities, like digital vs analog physical, abstract vs figurative, orthogonal vs polar, photo vs noise,...