Welcome to Fractal Forums

Fractal Software => Fragmentarium Gallery => Topic started by: 3dickulus on December 24, 2013, 09:05:48 AM




Title: Magical Menger Mandelbulb Mashup
Post by: 3dickulus on December 24, 2013, 09:05:48 AM
Magical Menger Mandelbulb Mashup

(http://nocache-nocookies.digitalgott.com/gallery/15/9032_24_12_13_9_05_47.jpeg)

http://www.fractalforums.com/index.php?action=gallery;sa=view;id=15320

Magical Menger Mandelbulb Mashup

Menger + Mandelbulb + Roquens domain mashup

Code:
// performs the active c = T(s)
vec3 domainMap(vec3 c)
{
  float s = dot(c,c);
  return clamp(c/s + InvertC, 0.0, 1.0);
}

Result of adding the returned DE of both functions and using Roquens domain function for orbitTrap.


Title: Re: Magical Menger Mandelbulb Mashup
Post by: SCORPION on December 28, 2013, 04:03:46 AM
And, now I understand the idea topic here:
http://www.fractalforums.com/fragmentarium/fractal-plus-change-of-domain-mashup/
Good work!