home *** CD-ROM | disk | FTP | other *** search
/ Aztec Masterblend / aztecmasterblendazteknewmediaj / winfrac / fractint.frm < prev    next >
Text File  |  1991-10-13  |  16KB  |  673 lines

  1. comment {
  2.  FRACTINT.DOC has instructions for adding new formulas to this file.
  3.  There are several hard-coded restrictions in the formula interpreter:
  4.  
  5.  1) The fractal name through the open curly bracket must be on a single line.
  6.  2) There is a hard-coded limit of 200 formulas per formula file, only
  7.     because of restrictions in the prompting routines.
  8.  3) Formulas can containt at most 250 operations (references to variables and
  9.     arithmetic); this is bigger than it sounds, no formula in the default
  10.     fractint.frm uses even 100
  11.  3) Comment blocks can be set up using dummy formulas with no formula name
  12.     or with the special name "comment".
  13.  
  14.  The formulas at the beginning of this file are from Mark Peterson, who
  15.  built this fractal interpreter feature.  The rest are grouped by contributor.
  16.  (Scott Taylor sent many but they are no longer here - they've been
  17.  incorporated as hard-coded types.  Lee Skinner also sent many which have
  18.  now been hard-coded.)
  19.  
  20.  Note that the builtin "cos" function had a bug which was corrected in
  21.  version 16.  To recreate an image from a formula which used cos before
  22.  v16, change "cos" in the formula to "cosxx" which is a new function
  23.  provided for backward compatibility with that bug.
  24.  }
  25.  
  26. Mandelbrot(XAXIS) {; Mark Peterson
  27.   ; Classical fractal showing LastSqr speedup
  28.   z = Pixel, z = Sqr(z):  ; Start with z**2 to initialize LastSqr
  29.    z = z + Pixel
  30.    z = Sqr(z)
  31.     LastSqr <= 4      ; Use LastSqr instead of recalculating
  32.   }
  33.  
  34. Dragon (ORIGIN) {; Mark Peterson
  35.   z = Pixel:
  36.    z = sqr(z) + (-0.74543, 0.2),
  37.     |z| <= 4
  38.   }
  39.  
  40. Daisy (ORIGIN) {; Mark Peterson
  41.   z = pixel:
  42.    z = z*z + (0.11031, -0.67037),
  43.     |z| <= 4
  44.   }
  45.  
  46. InvMandel (XAXIS) {; Mark Peterson
  47.   c = z = 1 / pixel:
  48.    z = sqr(z) + c;
  49.     |z| <= 4
  50.   }
  51.  
  52. DeltaLog(XAXIS) {; Mark Peterson
  53.   z = pixel, c = log(pixel):
  54.    z = sqr(z) + c,
  55.     |z| <= 4
  56.   }
  57.  
  58. Newton4(XYAXIS) {; Mark Peterson
  59.   z = pixel, Root = 1:
  60.    z3 = z*z*z;
  61.    z4 = z3 * z;
  62.    z = (3 * z4 + Root) / (4 * z3);
  63.     .004 <= |z4 - Root|
  64.   }
  65.  
  66. comment {
  67.    The following are from Chris Green:
  68.    These fractals all use Newton's or Halley's formula for approximation
  69.    of a function.  In all of these fractals, p1 is the "relaxation
  70.    coefficient". A value of 1 gives the conventional newton or halley
  71.    iteration. Values <1 will generally produce less chaos than values >1.
  72.    1-1.5 is probably a good range to try.  P2 is the imaginary component
  73.    of the relaxation coefficient, and should be zero but maybe a small
  74.    non-zero value will produce something interesting. Who knows?
  75.    For more information on Halley maps, see "Computers, Pattern, Chaos,
  76.    and Beauty" by Pickover.
  77.    }
  78.  
  79. Halley (XYAXIS) {; Chris Green. Halley's formula applied to x^7-x=0.
  80.   ; P1 usually 1 to 1.5, P2 usually zero. Use floating point.
  81.   ; Setting P1 to 1 creates the picture on page 277 of Pickover's book
  82.   z=pixel:
  83.    z5=z*z*z*z*z;
  84.    z6=z*z5;
  85.    z7=z*z6;
  86.    z=z-p1*((z7-z)/ ((7.0*z6-1)-(42.0*z5)*(z7-z)/(14.0*z6-2))),
  87.     0.0001 <= |z7-z|
  88.   }
  89.  
  90. CGhalley (XYAXIS) {; Chris Green -- Halley's formula
  91.   ; P1 usually 1 to 1.5, P2 usually zero. Use floating point.
  92.   z=(1,1):
  93.    z5=z*z*z*z*z;
  94.    z6=z*z5;
  95.    z7=z*z6;
  96.    z=z-p1*((z7-z-pixel)/ ((7.0*z6-1)-(42.0*z5)*(z7-z-pixel)/(14.0*z6-2))),
  97.     0.0001 <= |z7-z-pixel|
  98.   }
  99.  
  100. halleySin (XYAXIS) {; Chris Green. Halley's formula applied to sin(x)=0.
  101.   ; Use floating point.
  102.   ; P1 = 0.1 will create the picture from page 281 of Pickover's book.
  103.   z=pixel:
  104.    s=sin(z), c=cos(z)
  105.    z=z-p1*(s/(c-(s*s)/(c+c))),
  106.     0.0001 <= |s|
  107.   }
  108.  
  109. NewtonSinExp (XAXIS) {; Chris Green
  110.   ; Newton's formula applied to sin(x)+exp(x)-1=0.
  111.   ; Use floating point.
  112.   z=pixel:
  113.    z1=exp(z)
  114.    z2=sin(z)+z1-1
  115.    z=z-p1*z2/(cos(z)+z1),
  116.     .0001 < |z2|
  117.   }
  118.  
  119. CGNewton3 {; Chris Green -- A variation on newton iteration.
  120.   ; The initial guess is fixed at (1,1), but the equation solved
  121.   ; is different at each pixel ( x^3-pixel=0 is solved).
  122.   ; Use floating point.
  123.   ; Try P1=1.8.
  124.   z=(1,1):
  125.    z2=z*z;
  126.    z3=z*z2;
  127.    z=z-p1*(z3-pixel)/(3.0*z2),
  128.     0.0001 < |z3-pixel|
  129.   }
  130.  
  131. HyperMandel {; Chris Green.
  132.   ; A four dimensional version of the mandelbrot set.
  133.   ; Use P1 to select which two-dimensional plane of the
  134.   ; four dimensional set you wish to examine.
  135.   ; Use floating point.
  136.   a=(0,0),b=(0,0):
  137.    z=z+1
  138.    anew=sqr(a)-sqr(b)+pixel
  139.    b=2.0*a*b+p1
  140.    a=anew,
  141.     |a|+|b| <= 4
  142.   }
  143.  
  144.  
  145. MTet (XAXIS) {; Mandelbrot form 1 of the Tetration formula --Lee Skinner
  146.   z = pixel:
  147.    z = (pixel ^ z) + pixel,
  148.     |z| <= (P1 + 3)
  149.   }
  150.  
  151. AltMTet(XAXIS) {; Mandelbrot form 2 of the Tetration formula --Lee Skinner
  152.   z = 0:
  153.    z = (pixel ^ z) + pixel,
  154.     |z| <= (P1 + 3)
  155.   }
  156.  
  157. JTet (XAXIS) {; Julia form 1 of the Tetration formula --Lee Skinner
  158.   z = pixel:
  159.    z = (pixel ^ z) + P1,
  160.     |z| <= (P2 + 3)
  161.   }
  162.  
  163. AltJTet (XAXIS) {; Julia form 2 of the Tetration formula --Lee Skinner
  164.   z = P1:
  165.    z = (pixel ^ z) + P1,
  166.     |z| <= (P2 + 3)
  167.   }
  168.  
  169. Cubic (XYAXIS) {; Lee Skinner
  170.   p = pixel, test = p1 + 3,
  171.   t3 = 3*p, t2 = p*p,
  172.   a = (t2 + 1)/t3, b = 2*a*a*a + (t2 - 2)/t3,
  173.   aa3 = a*a*3, z = 0 - a :
  174.    z = z*z*z - aa3*z + b,
  175.     |z| < test
  176.  }
  177.  
  178. { The following are from Lee Skinner, have been partially generalized. }
  179.  
  180. Fzppfnre  {; Lee Skinner
  181.   z = pixel, f = 1./(pixel):
  182.    z = fn1(z) + f,
  183.     |z| <= 50
  184.   }
  185.  
  186. Fzppfnpo  {; Lee Skinner
  187.   z = pixel, f = (pixel)^(pixel):
  188.    z = fn1(z) + f,
  189.     |z| <= 50
  190.   }
  191.  
  192. Fzppfnsr  {; Lee Skinner
  193.   z = pixel, f = (pixel)^.5:
  194.    z = fn1(z) + f,
  195.     |z| <= 50
  196.   }
  197.  
  198. Fzppfnta  {; Lee Skinner
  199.   z = pixel, f = tan(pixel):
  200.    z = fn1(z) + f,
  201.     |z|<= 50
  202.   }
  203.  
  204. Fzppfnct  {; Lee Skinner
  205.   z = pixel, f = cos(pixel)/sin(pixel):
  206.    z = fn1(z) + f,
  207.     |z|<= 50
  208.   }
  209.  
  210. Fzppfnse  {; Lee Skinner
  211.   z = pixel, f = 1./sin(pixel):
  212.    z = fn1(z) + f,
  213.     |z| <= 50
  214.   }
  215.  
  216. Fzppfncs  {; Lee Skinner
  217.   z = pixel, f = 1./cos(pixel):
  218.    z = fn1(z) + f,
  219.     |z| <= 50
  220.   }
  221.  
  222. Fzppfnth  {; Lee Skinner
  223.   z = pixel, f = tanh(pixel):
  224.    z = fn1(z)+f,
  225.     |z|<= 50
  226.   }
  227.  
  228. Fzppfnht  {; Lee Skinner
  229.   z = pixel, f = cosh(pixel)/sinh(pixel):
  230.    z = fn1(z)+f,
  231.     |z|<= 50
  232.   }
  233.  
  234. Fzpfnseh  {; Lee Skinner
  235.   z = pixel, f = 1./sinh(pixel):
  236.    z = fn1(z) + f,
  237.     |z| <= 50
  238.   }
  239.  
  240. Fzpfncoh  {; Lee Skinner
  241.   z = pixel, f = 1./cosh(pixel):
  242.    z = fn1(z) + f,
  243.     |z| <= 50
  244.   }
  245.  
  246.  
  247. { The following resulted from a FRACTINT bug. Version 13 incorrectly
  248.   calculated Spider (see above). We fixed the bug, and reverse-engineered
  249.   what it was doing to Spider - so here is the old "spider" }
  250.  
  251. Wineglass(XAXIS) {; Pieter Branderhorst
  252.   c = z = pixel:
  253.    z = z * z + c
  254.    c = (1+flip(imag(c))) * real(c) / 2 + z,
  255.     |z| <= 4 }
  256.  
  257.  
  258. { The following is from Scott Taylor.
  259.   Scott says they're "Dog" because the first one he looked at reminded him
  260.   of a hot dog. This was originally several fractals, we have generalized it. }
  261.  
  262. FnDog(XYAXIS)  {; Scott Taylor
  263.   z = Pixel, b = p1+2:
  264.    z = fn1( z ) * pixel,
  265.     |z| <= b
  266.   }
  267.  
  268. Ent {; Scott Taylor
  269.   ; Try params=.5/.75 and the first function as exp.
  270.   ; Zoom in on the swirls around the middle.  There's a
  271.   ; symmetrical area surrounded by an asymmetric area.
  272.   z = Pixel, y = fn1(z), base = log(p1):
  273.    z = y * log(z)/base,
  274.     |z| <= 4
  275.   }
  276.  
  277. Ent2 {; Scott Taylor
  278.   ; try params=2/1, functions=cos/cosh, potential=255/355
  279.   z = Pixel, y = fn1(z), base = log(p1):
  280.    z = fn2( y * log(z) / base ),
  281.     |z| <= 4
  282.   }
  283.  
  284. { From Kevin Lee: }
  285.  
  286. LeeMandel1(XYAXIS) {; Kevin Lee
  287.   z=Pixel:
  288. ;; c=sqr(pixel)/z, c=z+c, z=sqr(z),  this line was an error in v16
  289.    c=sqr(pixel)/z, c=z+c, z=sqr(c),
  290.     |z|<4
  291.   }
  292.  
  293. LeeMandel2(XYAXIS) {; Kevin Lee
  294.   z=Pixel:
  295.    c=sqr(pixel)/z, c=z+c, z=sqr(c*pixel),
  296.     |z|<4
  297.    }
  298.  
  299. LeeMandel3(XAXIS) {; Kevin Lee
  300.   z=Pixel, c=Pixel-sqr(z):
  301.    c=Pixel+c/z, z=c-z*pixel,
  302.     |z|<4
  303.   }
  304.  
  305. { These are a few of the examples from the book,
  306.   Fractal Creations, by Tim Wegner and Mark Peterson. }
  307.  
  308. MyFractal {; Fractal Creations example
  309.   c = z = 1/pixel:
  310.    z = sqr(z) + c;
  311.     |z| <= 4
  312.