Monthly Archives: January 2016

Julia Set Explorer

In the past, writing simple programs to generate fractal images is something I have found myself returning to over and over again. I’ve done it so many times that I can probably write a Mandelbrot Set generator in my sleep. … Continue reading

Posted in Uncategorized | Leave a comment

To create an mp4 video using ffmpeg: ffmpeg -framerate 10 -i half_frame%03d.png -c:v libx264 -pix_fmt yuv420p output.mp4 To create a looping gif using ImageMagick’s convert tool: convert -loop 0 half_frame*.png output.gif

Posted in Uncategorized | Leave a comment

What I’m working on right now…

I’ve been experimenting with creating fractal images using iterating functions of the form where . Without getting into all the details right now, within each frame of the animation every pixel represents a different value of the complex variable c. … Continue reading

Posted in Uncategorized | Leave a comment