Do You Know the Mandelbox Fractal?







A Mandelbox is a box shaped 3d object with a fractal surface and like the Mandelbrot set, a Mandelbox set is calculated by applying a formula repeatedly to every point in space.

The Mandelbrot equation is: z = z2 + c

The Mandelbox equation is: v = s * ballFold(r, f*boxFold(v)) + c
where:
- v: 3d point
- boxFold(v) means for each axis a:

if v[a] > 1
    v[a] =  2 - v[a]
else if v[a] < -1
    v[a] = -2 - v[a]

- ballFold(r, v) means for v's magnitude m:

if m < r
    m = m/r^2
else if m < 1
    m = 1/m^2

The standard Mandelbox uses this formula with s=2, r=0.5 and f=1.



[source] | [via]








[ Subscribe to Geeks3D latest news by email ]


Related posts:

  1. Exploration of the Real 3D Mandelbrot Fractal
  2. PS3 Realtime Mandelbrot Fractal Explorer
  3. ASCII Art: Mandelbrot Fractal
  4. Benoît Mandelbrot Died Last Thursday at 85
  5. Mandelbulber 0.60: Multi-core CPU Fractal Generator

Geeks3D.com

↑ Grab this Headline Animator