Welcome to Fractal Forums

Fractal Software => Gestaltlupe Gallery => Topic started by: trafassel on March 18, 2017, 11:28:56 AM




Title: 67P/Churyumov–Gerasimenko
Post by: trafassel on March 18, 2017, 11:28:56 AM
67P/Churyumov–Gerasimenko

(http://nocache-nocookies.digitalgott.com/gallery/20/999_18_03_17_11_28_56.jpeg)

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



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;
    }
    x+=_jx;
    y+=_jy;
    z+=_jz;
  }
  return true;
}
public override void Init()
{
  base.Init();
  if(GetString("intern.Formula.TempUpdateVal")!="8d22d26b02ced031877918ef171879cf")
  {
    SetParameterBulk("Formula.Parameters: bailout=80 Formula.Static: Cycles=330 Julia=0 jx=-0.387 jy=-0.1 jz=-0.56 Scene: CenterX=-0.376593949050938 CenterY=0.640101295353861 CenterZ=0.0501417595934597 Radius=3.14615447489692 Transformation.Camera: AngleX=34.0878696251086 AngleY=-7.68842962463252 AngleZ=-28.2176635450108 IsometricProjection=0 Position=1 intern.Formula: TempUpdateVal=8d22d26b02ced031877918ef171879cf");
  }
}