This is a little something I like to call Boobies to Infinity.

It’s created with PixelBender. The completed app is still in development. But I couldn’t resist sharing some of the output. This one is the product of the following equations:
float test1 = exp( zee * cos( p.x ) * mag ) - cos( exp( p.y * mag ) ); float test2 = exp( zee * p.y * mag ) + sin( exp( p.x * mag ) );
Amazing isn’t it?
Here are a few other creations.

float test1 = mod( cos( zee * p.x * mag ), sin( p.y * mag ) ); float test2 = mod( sin( zee * p.y * mag ), cos( p.x * mag ) );


float test1 = mag * ( p.x * ( 1.0 - sin( p.x * p.y * zee ) ) ); float test2 = mag * ( p.y * ( 1.0 - cos( p.x * p.y * zee ) ) );
The image below is a closeup of the image from above.





Wow!. It's very cool. Thanks for sharing the equations.