Title: Sea Anemone (Negative Kali Set) Post by: trafassel on March 05, 2017, 08:39:30 AM Sea Anemone (Negative Kali Set) (http://nocache-nocookies.digitalgott.com/gallery/20/999_05_03_17_8_39_30.jpeg) http://www.fractalforums.com/index.php?action=gallery;sa=view;id=20117 public double bailout; public override bool GetBool(double x,double y,double z) { for (int n=1;n < _cycles; n++) { double r=x*x+y*y+z*z; if (r>bailout)return false; if (r>0) { x=-x/r; y=Math.Abs(y)/r; z=Math.Abs(z)/r; } if(x>y)Red++; if(y>z)Green++; if(z>x)Blue++; x+=_jx; y+=_jy; z+=_jz; } return true; } public override void Init() { base.Init(); if(GetString("intern.Formula.TempUpdateVal")!="60292da8f192d3d2c6a9930dad6edf6a") { SetParameterBulk("Formula.Parameters: bailout=1550 Formula.Static: Cycles=492 Julia=0 jx=-0.913 jy=-0.409 jz=-0.05 Scene: CenterX=-0.78579281581261 CenterY=-0.755522968734956 CenterZ=0.237337302838579 Radius=1.99993572580536 Transformation.Camera: AngleX=-13.3851680398102 AngleY=39.7624381810032 AngleZ=145.321971988858 IsometricProjection=0 Position=1 intern.Formula: TempUpdateVal=60292da8f192d3d2c6a9930dad6edf6a"); } } |