Fun with distance estimation
A 10x10 mosaic of some Mandelbrot/Burning ship -like fractals, colored using black/white distance estimation.
Fun with distance estimation
A 10x10 mosaic of some Mandelbrot/Burning ship -like fractals, colored using black/white distance estimation.
Hey mastodon, j'aimerais beaucoup retrouver les listings #QBASIC qui avaient été publiés dans les #ScienceEtVieJunior de mon adolescence (encore mieux si c'est avec les articles associés).
Je me souviens plus particulièrement d'un visualiseur #Mandelbrot / #Julia, d'un #Tetris et d'un générateur d'#autostéréogramme
Je ne les trouve ni sur #archiveorg ni sur d'autres sites moins recommandables. Est-ce que quelqu'un aurait ça ?
Boosts appréciés.
The Second Edition of
Make Your Own Mandelbrot
has a new chapter explaining the Distance Estimation Method which overcomes the loss of sub-pixel detail.
Check it out!
https://www.amazon.com/dp/B0CQS8JYJC
all the code is freely available:
https://github.com/makeyourownmandelbrot/Second_Edition
Look at this brot!
@vaelen I don't think this Applesoft BASIC effort from this past weekend's INIT HELLO Apple II conference outdid you, I must say. :-) #hattip
https://www.flickr.com/photos/blakespot/54689657478/in/album-72177720328016203
Updated my mandelbrot app to display in 256 colors by default and switched it to use the Classic Mac color palette. When you run xmandelbrot you can now pass it a number from 1-256 to tell it how many iterations (and thus how many colors) to use. Here it is running on my Quadra 700 under A/UX with a 68040 CPU. Code is here: https://github.com/vaelen/multi-mandlebrot/blob/main/unix/xmandelbrot.c #retrocomputing #unix #mandelbrot #mac #fractal
I added an X11 version of my mandelbrot program. This one is in color and is resizable! It runs on A/UX and will probably run on any version of UNIX that runs X11. I've attached screenshots from A/UX and modern Linux. You can find the code on github along with the console version: https://github.com/vaelen/multi-mandlebrot/tree/main/unix #retrocomputing #unix #mac #x11 #mandelbrot
#FractalFriday (It's already Saturday)
Elephant valley of the Mobius Mandelbrot set.
Formula: \(z_{n+1}=f(z_n^2+c,1)\)
where \(f(z, a)\) is defined as (C-like pseudocode):
Complex f(Complex z, Real a) {
Real dist = abs(re(z)) - a;
if (re(z) > a) {
re(z) = -a + dist;
im(z) = -im(z);
} else if (re(z) < -a) {
re(z) = a - dist;
im(z) = -im(z);
}
return z;
}
Coloring is done by using three very similar colormaps, mapped to triangle inequality average values.
The final color is produced by interpolating between these three colors using the so called "atom domains".
Generated using my GLSL Shadertoy fractal generator: https://www.shadertoy.com/view/33sSRf
I'm not lying.
It's not possible!
but...
ICYMI,. Here's me showing off some #graphics, from my 20 years in #JavaScript #development: #Mandelbrot 2 of 2 - using #WebWorkers to prove that it's not
-always- a benefit https://www.marquisdegeek.com/mandelworkers #sgx #sfx
Just making oddly delicious looking fractals. #mandelbrot #fractal
I made a Mandelbrot & Julia set explorer! https://codepen.io/Oscar_Cunningham/full/ZYGZZVW
I was watching @standupmaths's video https://www.youtube.com/watch?v=0OP9guFmWfs about Mandelbrot and Julia sets, and I could see he was clicking around in @christianp's app looking at the Julia set corresponding to each point in the Mandelbrot set. But I wanted to also be able to click around in the Julia set and see how the Mandelbrot set changed.
Really both the Mandelbrot and Julia sets are two dimensional cross sections of a four dimensional fractal. A point (x,y,a,b) is in this set if the function z ↦ z²+(x+yi) doesn't diverge when iterated starting at a+bi. My app lets you see the slices of (x,y) for fixed a and b, and also (a,b) for fixed x and y.
I don't write JavaScript, so all code is bad and/or stolen.
Let's Code MS DOS 0x2F: Mandelbrot Fractal
New video for Patrons (even free tier):
Let's Code MS DOS 0x2F: Mandelbrot Fractal
https://www.patreon.com/posts/lets-code-ms-dos-131758170?utm_medium=clipboard_copy&utm_source=copyLink&utm_campaign=postshare_creator&utm_content=join_link
#letscode #msdos #mandelbrot #retrocomputing
The terminal is so satisfying...
**fractouille** — Fractal explorer for the terminal!
Explore different Mandelbrot sets with different styles
Written in Rust & built with @ratatui_rs
Mandelbulb: The Unravelling of the Real 3D Mandelbrot Fractal
The original web page describing the development of a 3D equivalent to the Mandelbrot set.
#Fractalfriday
I updated my #Shadertoy #fractal explorer. Link: https://www.shadertoy.com/view/33sSRf
It now supports skewing the C-plane using a quad of four draggable points. The coefficients 'a' and 'b' can now also changed by the mouse. To show the points, simply hold the space bar.
Here is a video which demonstrates that.
The formula is \(z_{n+1}=z_n^2*\frac{z_n-a}{z_n-b}+c\)
where a and b are the blue points in the video.