Shop Forum More Submit  Join Login
About Deviant Erp TrafasselGermany Group :iconmandelbrot-portraits: Mandelbrot-Portraits
 
Recent Activity
Deviant for 8 Years
Needs Core Membership
Statistics 69 Deviations 16 Comments 6,557 Pageviews
×

Newest Deviations

Fake 3D Mandelbrot Set by trafassel Fake 3D Mandelbrot Set :icontrafassel:trafassel 8 0 The Dancing Ligths of a new Universe by trafassel The Dancing Ligths of a new Universe :icontrafassel:trafassel 4 1 3D Julia by trafassel 3D Julia :icontrafassel:trafassel 3 0 The Trafasselisk by trafassel The Trafasselisk :icontrafassel:trafassel 5 0 The Sound of the End of the World by trafassel The Sound of the End of the World :icontrafassel:trafassel 5 0 Data45pic10072a5m by trafassel Data45pic10072a5m :icontrafassel:trafassel 5 1 The mummified Kali Garden by trafassel The mummified Kali Garden :icontrafassel:trafassel 4 4 3D Mandelbrot Set by trafassel 3D Mandelbrot Set :icontrafassel:trafassel 3 0 Purple Tentacle by trafassel Purple Tentacle :icontrafassel:trafassel 11 1 Kleinian Group by trafassel Kleinian Group :icontrafassel:trafassel 15 5 Spiral 102.10000 by trafassel Spiral 102.10000 :icontrafassel:trafassel 6 0 Menger 10101.950 by trafassel Menger 10101.950 :icontrafassel:trafassel 4 0 Kali Set 43.10007 by trafassel Kali Set 43.10007 :icontrafassel:trafassel 4 2 Spirals In Stone 285.10023 by trafassel Spirals In Stone 285.10023 :icontrafassel:trafassel 4 1 Spiral Spiral 285.10014 by trafassel Spiral Spiral 285.10014 :icontrafassel:trafassel 4 3 The Dusty Hills by trafassel The Dusty Hills :icontrafassel:trafassel 1 0

Favourites

the surf-net by viperv6 the surf-net :iconviperv6:viperv6 24 15 577e2f by AkuraPare 577e2f :iconakurapare:AkuraPare 64 16 On the Industrial Site by hypex2772 On the Industrial Site :iconhypex2772:hypex2772 22 15 The Big Empty by HalTenny The Big Empty :iconhaltenny:HalTenny 120 30 Plantimal 2 by alnelson Plantimal 2 :iconalnelson:alnelson 183 25 362 by Arkadius13 362 :iconarkadius13:Arkadius13 26 4 Transport Station by AureliusCat Transport Station :iconaureliuscat:AureliusCat 40 21 Spirals of Ellarien by pupukuusikko Spirals of Ellarien :iconpupukuusikko:pupukuusikko 63 11 Sand Storm by HalTenny Sand Storm :iconhaltenny:HalTenny 34 11 grey - Mandelbulb3D with Parameter by matze2001 grey - Mandelbulb3D with Parameter :iconmatze2001:matze2001 110 14 Halls of doom by FractalDesire Halls of doom :iconfractaldesire:FractalDesire 51 9 Parterre by Les-Monts Parterre :iconles-monts:Les-Monts 88 33 Alternative Galaxy by pupukuusikko Alternative Galaxy :iconpupukuusikko:pupukuusikko 20 8 According to Klein, Pt. 10 by waste-and-tragedy According to Klein, Pt. 10 :iconwaste-and-tragedy:waste-and-tragedy 6 2 Kleinbox by pupukuusikko Kleinbox :iconpupukuusikko:pupukuusikko 34 12 Tentacle by Sabine62 Tentacle :iconsabine62:Sabine62 1,097 279

Activity


Fake 3D Mandelbrot Set
public double minr;
public int maxi;
public double scale1;
public double scale2;
public double scale3;
public bool usecolors;
public double mrscale;
public double scale1m;
public double z1;
double jx,jy,jz;
public double scalez;
public double z4;
public override bool GetBool(double x,double y,double z)
{
 if(z<0)
 {
 }
 else z=Math.Pow(z,z4);
 z*=scalez;
 if (_isJulia)
 {
   jx=_jx;
   jy=_jy;
   jz=_jz;
 }
 else
 {
   jx=x;
   jy=y;
   jz=z;
   x=_jx;
   y=_jy;
   z=_jz;
 }
 Red=0;
 Green=0;
 Blue=0;
 double mr=minr;
 double s1=scale1;
 double z3=scalez;
 for (int i=1;i<_cycles;  i++)
 {
   z3*=z4;
   double xx=x*x;
   double yy=y*y;
   double zz=z*z;
   double r=xx+yy+scale3*zz;
   if(r>0)
   {
     Red+=xx/r;
     Green+=yy/r;
     Blue+=zz/r;
   }
   if (r>6)return false;
   mr*=mrscale;
   s1*=scale1m;
   if (r<mr && i>maxi)
   {
     return true;
   }
   y=2*x*y+jy;
   x=xx-yy+z1*zz+jx;
   z=s1*z*Math.Pow(r,scale2)+jz;
 }
 return true;
}

public override void Init()
{
 base.Init();
 if(GetString("intern.Formula.TempUpdateVal")!="df56cd74d98255c12094e43f12595f8c")
 {
   SetParameterBulk("Formula.Parameters: maxi=3 minr=0.0002 mrscale=1.13 scale1=1.61 scale1m=1.004 scale2=0.461 scale3=0.2 scalez=0.5 usecolors=0 z1=44 z4=0.99 Formula.Static: Cycles=555 Julia=0 jx=0.33 jy=0 jz=0 Scene: CenterX=0.340957877178389 CenterY=-0.0655349282756132 CenterZ=-0.000219581400425134 Radius=0.000361429050226264 Transformation.Camera: AngleX=-90 AngleY=0 AngleZ=0 IsometricProjection=0 Position=1 intern.Formula: TempUpdateVal=df56cd74d98255c12094e43f12595f8c");
 }
}
Loading...
The Dancing Ligths of a new Universe
public override void Init(){base.Init();if(GetString("intern.Formula.TempUpdateVal")!="647d338c36cde17b85e5e54af9041518"){SetParameterBulk("Formula.Parameters: minbailout=0.001 pow=0.56 Formula.Static: Cycles=345 Julia=1 jx=0.325 jy=-0.05 jz=0 Scene: CenterX=0.015 CenterY=0.015 CenterZ=0.24 Radius=1.8 Transformation.Camera: AngleX=90 AngleY=0 AngleZ=0 IsometricProjection=0 Position=1 intern.Formula: TempUpdateVal=647d338c36cde17b85e5e54af9041518");}}public double pow=0.5;public double minbailout=0.05;public override bool GetBool(double x,double y,double z){for (int i=1;i<_cycles;i++){double xx=x*x;double yy=y*y;double zz=z*z;double r=xx+yy+0.5*zz;if (r>6)return false;if (r<minbailout && i>3)return true;y=2*x*y+_jy;x=xx-yy+_jx;z=2*z*Math.Pow(r,pow)+_jz;}return true;}
Loading...

Journal

No journal entries yet.

deviantID

trafassel
Erp Trafassel
Germany

Comments


Add a Comment:
 
:iconwillclark218:
willclark218 Featured By Owner Feb 4, 2013  Hobbyist Digital Artist
wow... thanks for the watch ~trafassel
Reply
:iconwillclark218:
willclark218 Featured By Owner Feb 3, 2013  Hobbyist Digital Artist
admire the "purity" of some of your stuff.... shows the real beauty of these natural forms by allowing them to exist "in the wild" sort of speak... very nice...
Reply
:icond3d-design:
d3d-design Featured By Owner Sep 7, 2011  Student Digital Artist
Klasse Arbeiten!
Mit welchem Programm erstellst du deine Fraktale?
Reply
:icondark-beam:
dark-beam Featured By Owner Feb 8, 2011  Student Artist
Hi!!! :D

I am watching you! Luca :wave:
Reply
:iconmarkjaybee:
MarkJayBee Featured By Owner Dec 14, 2010  Professional General Artist
Hey Trafassel! :wave:
Nice to see you on dA,
Looking forward to seeing more images on here, so :+devwatch:ed you! :D
Reply
:iconbermarte:
bermarte Featured By Owner Nov 3, 2010   Artist
Hi Trafassel!
Reply
:icontrafassel:
trafassel Featured By Owner Nov 8, 2010
Hi Bermarte,

nice "inside" renderings.
Reply
:iconbermarte:
bermarte Featured By Owner Nov 22, 2010   Artist
thanks!
:-)
Reply
:iconmandelwerk:
MANDELWERK Featured By Owner Sep 28, 2010
And one fav, and that is mine, I am honoured Trafassel! :bow:
Your latest images are so great, I have to try out Gestaltlupe!!!
Reply
Add a Comment: