home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / fractint / archive / v01.n548 < prev    next >
Internet Message Format  |  2001-04-04  |  42KB

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #548
  4. Reply-To: fractint-digest
  5. Sender: owner-fractint-digest@lists.xmission.com
  6. Errors-To: owner-fractint-digest@lists.xmission.com
  7. Precedence: bulk
  8.  
  9.  
  10. fractint-digest        Thursday, April 5 2001        Volume 01 : Number 548
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Sun, 01 Apr 2001 00:44:41 +0200
  18. From: Guy Marson <guy.marson@mnhn.lu>
  19. Subject: Re: (fractint) Twenty & One
  20.  
  21. At 19:13 29.03.2001 +0100, you wrote:
  22. >Andrew,
  23. >
  24. >> Thanks for the info. Now how about the Newton-Mandeloid and the General
  25. >> Quartic?
  26. >
  27. >Is this what you wanted for the Newton-Mandeloid?
  28. >
  29. >KRup2000-41{
  30. >;By Rupert Millard
  31. >l=pixel
  32. >a=l*p1
  33. >b=l*p2
  34. >c=l*p3
  35. >;Solve the cubic equation z^3+bz^2+cz+d=0 - I must be mad
  36. >q=(3*b-a^2)/9
  37. >r=(9*a*b-27*c-2*a)/54
  38. >s=(r+sqrt(q^3+r^2))^(1/3)
  39. >t=(r-sqrt(q^3+r^2))^(1/2)
  40. >r1=s+t-a/3
  41. >r2=-(s+t)/2-a/3+(0,0.5)*sqrt(3)*(s-t)
  42. >r3=conj(r2)
  43. >;Then the centroid is the point to iterate
  44. >z=(r1+r2+r3)/3:
  45. >oldz=z
  46. >z=z-(z^3+a*z^2+b*z+c)/(3*z^2+2*a*z+b)
  47. >|oldz-z|>0.0001}
  48. >
  49. >It iterates Newton's method cubic equation with coefficients proportional to
  50. >the coordinates of the pixel (starting at the centroid of the roots of said
  51. >equation.) This formula contains minibrots. For proof try:
  52. >
  53. >temp               {
  54. >  ; By Rupert Millard (rupertam@hotmail.com) on Mar 29, 2001
  55. >  reset=2001 type=formula formulafile=krup2000.frm
  56. >  formulaname=KRup2000-41 center-mag=-2.02977/-1.38778e-015/7.704635
  57. >  params=0/0/1/0/1/0 float=y maxiter=500 inside=0 symmetry=none
  58. >  cyclerange=0/255 colors=@blues.map
  59. >  }
  60.  
  61.  
  62. wouuuuw.. I can't belive it: somebody sending an .frm and a .par!
  63.  
  64. Thanks a lot.. something to play around, super! 
  65.  
  66. cheers,
  67.  
  68.  
  69. Guy
  70.  
  71.  
  72.  
  73.  
  74. >
  75. >I could make an extended version, for UF as Fractint doesn't have enough
  76. >parameters. This would have a constant amount added on to the multiple of
  77. >the pixel coordinate (it could be stop a coefficient from being varied.)
  78. >Like all my UF formulae you could vary the bailout. It could also be
  79. >quartic. Would that produce cubic minibrots? I'll try and find out. Of
  80. >course, you're all welcome to try to beat me to it. Its a shame that
  81. >Fractint doesn't have the capabilities to handle more than five complex
  82. >parameters.
  83. >
  84. >For the general quartic (nb. Requires patch Fractint 20.0.13 or more
  85. >recent):
  86. >
  87. >QuarticMandelbrot{
  88. >;p1 is multiplier of z^4
  89. >;p2 is multiplier of z^3
  90. >;p3 is multiplier of z^2
  91. >;p4 is multiplier of z
  92. >z=c=pixel:
  93. >z=p1*z*z*z*z+p2*z*z*z+p3*z*z+p4*z+c
  94. >|z|<=128
  95. >}
  96. >
  97. >From,
  98. >
  99. >Rupert
  100. >
  101. >--------------------------------------------------------------
  102. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  103. >Post Message:   fractint@lists.xmission.com
  104. >Get Commands:   majordomo@lists.xmission.com "help"
  105. >Administrator:  twegner@fractint.org
  106. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  107. >
  108.  
  109. - --------------------------------------------------------------
  110. Thanks for using Fractint, The Fractals and Fractint Discussion List
  111. Post Message:   fractint@lists.xmission.com
  112. Get Commands:   majordomo@lists.xmission.com "help"
  113. Administrator:  twegner@fractint.org
  114. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  115.  
  116. ------------------------------
  117.  
  118. Date: Mon, 2 Apr 2001 00:11:27 +0200
  119. From: "Gerald K. Dobiasovsky" <gerald.dob@aon.at>
  120. Subject: Re: (fractint) Fractint Development: The Ljapunow Type
  121.  
  122. Guy Marson wrote:
  123.  
  124. > Hi fractinters,
  125. >
  126. > Does somebody know the Lyapunow-formula written for the Parser similar to
  127. > the build-in type, or a place (url or so) to find this formula?
  128. >
  129. > Cheers,
  130. >
  131. > Guy
  132.  
  133. Hi,
  134.  
  135. Since I have never seen such a beast (although the parser can
  136. be coaxed to do astounding things, as all the formulas by
  137. Sylvie Gallet, Damien Jones, Paul Carlson etc. are proof of),
  138. I feel obliged to post my construct.
  139.  
  140. A word of caution is in order here.
  141. This thing is not exactly user friendly for a couple of reasons
  142. (some are: the original was written when there existed no if-
  143. statements, the parser supported only much smaller formulas, and *I* know what all those variables
  144. are supposed to achieve - or at least I think I do ;-)).
  145.  
  146. Some explanations: (Parameter names in the formula comments
  147.                     are written in the form:
  148.                     p# ... real part / imaginary part)
  149.  
  150. The ab-String is input the same way as in Fractint's Lyapunov
  151. type, converting a's to 1's and b's to 0's, but *without*
  152. dropping the leading a and the trailing b!!!
  153. In fact there's no need to rotate the string at all, it may
  154. have leading b's; the length of the string is input in a
  155. separate variable (abMax).
  156.  
  157. Scaling Exponent and Scaling Factor are used to bring the
  158. output into the appropriate color range (a bit of fiddling
  159. around is necessary here).
  160.  
  161. Filter Cycles does the same as Fractint's Lyapunov parameter.
  162.  
  163. Bailout is used to catch possible overflows of the iteration
  164. function. Fractint is very good at catching those itself (at
  165. first my formula ended in the statement "n == n", letting all pixels iterate maxiter times and
  166. leaving it to Fractint what
  167. happened to those values that grew too big), only it insisted
  168. on painting those pixels with a different color than those with
  169. non-overflowing, but still positive Lyapunov exponents.
  170.  
  171. Zero Level: Normally all pixels with a positive result are
  172. painted as one color value, those with negative values are
  173. mapped onto the whole color map. Due to small calculation
  174. errors, pixels with results near zero end up "on the wrong
  175. side of the dividing line" (using lyapunov.map and assigning
  176. black as background one sometimes gets black spots in otherwise
  177. yellow areas or yellow "junk" in areas that should be
  178. background). This parameter moves the "dividing line", by
  179. setting it to e.g. -10 all values (-10 < value < 0) will be
  180. painted as background. (Note: This test is done *before* the
  181. value is divided by the number of iterations!)
  182.  
  183. Divergence Result: This is the value (*not* the color number!)
  184. of background pixels returned to Fractint to map it onto the
  185. loaded color map. Quite a  bit of fiddling is needed here, too,
  186. because every change of the number of iterations needs a
  187. recalibration of this parametrer for getting the same color
  188. output as before (did I point out this formulas not being user
  189. friendly? ;-))
  190.  
  191. Further notes: One doesn't need to set logmap=1 (as is done
  192. in the accompanying pars), but if one does, maxiter has to
  193. be set to at least 256 or not all colors of the color map can
  194. be reached (=displayed).
  195. Fractint iterates its Lyapunov type differently from these
  196. formula implementations (if one has a string of "aab" then
  197. Fractint iterates its Lyapunov three times for each iteration
  198. set as maxiter - two time because of the two a's, one time for
  199. the lone b; in the formula parser each iteration is *one* loop
  200. using *one* string token, of course).
  201.  
  202. Well, I hope you will have fun with formulas nevertheless
  203. and I better stop now before this posting grows bigger still.
  204.  
  205. Regards,
  206.  
  207. Gerald
  208.  
  209. - ---------------- cut here, save as .par file ------------------
  210.  
  211. Lyapunov {;Parser version of Fractint's Lyapunov formula
  212.           ;
  213.   reset=2001 type=formula formulaname=Lyapunov
  214.   corners=0/6/0/4.5
  215.   params=0.66/3/1/0.5/0.35/100/10/1.4/1000000 float=y
  216.   maxiter=1000 inside=zmag outside=255 logmap=yes periodicity=0
  217.   colors=@lyapunov.map
  218.   }
  219.  
  220. LyapSqrSinR {;Lyapunov-Fractal of "Do-It-Yourself"-Formula
  221.              ;
  222.   reset=2001 type=formula formulaname=LyapSqrSinR
  223.   corners=0.006343064/3.837554/-0.09798406/3.733226
  224.   params=2.5/1.5/3/1/0.5/0.55/10/100/1000000/1.4 float=y
  225.   maxiter=1000 inside=zmag outside=255 logmap=yes periodicity=0
  226.   colors=@lyapunov.map
  227.   }
  228.  
  229. frm:Lyapunov {;"standard" Lambda-Formula
  230.               ;
  231.    ;abMax = Length of ab-string in the form of: 2^LENGTH - 1
  232.    ;periodicity=no, inside=zmag, outside=ColorNumber
  233.    ;
  234.    ;p1 ... Starting Value / abMax
  235.    ;p2 ... ab-String / Scaling Exponent
  236.    ;p3 ... Scaling Faktor / Filter Cycles
  237.    ;p4 ... Zero Level / Divergence Result
  238.    ;p5 ... Bailout
  239.    ;
  240.    x = real(p1), max = imag(p1), ab = real(p2)
  241.    se = imag(p2), sk = real(p3)
  242.    n = imag(p3), z = imag(p4)
  243.    mxi = n + 1 - maxit
  244.    sum = 0:
  245.      n = n - 1
  246.      ab = 2*ab
  247.      IF (ab > max)
  248.        ab = ab - max
  249.        c = imag(pixel)
  250.      ELSE
  251.        c = real(pixel)
  252.      ENDIF
  253.      IF (n < 0)
  254.        sum = sum + log(abs(c*(1-2*x)))
  255.        IF (n <= mxi && sum < p4)
  256.          z = (sum/n)^se*sk
  257.        ENDIF
  258.      ENDIF
  259.      x = c*x*(1-x)
  260.    p5 >= abs(x)
  261.    }
  262.  
  263. frm:LyapSqrSinR {;Function a*(sin(x+r))^2
  264.                  ;
  265.    ;ab-String: Swapping of r between two values
  266.    ;abMax = Length of ab-string in the form of: 2^LENGTH - 1
  267.    ;periodicity=no, inside=zmag, outside=ColorNumber
  268.    ;
  269.    ;p1 ... Factor a / Starting Value
  270.    ;p2 ... abMax / ab-String
  271.    ;p3 ... Scaling Exponent / Scaling Faktor
  272.    ;p4 ... Zero Level / Filter Cycles
  273.    ;p5 ... Bailout / Divergence Result
  274.    ;
  275.    a = real(p1), x = imag(p1)
  276.    max = real(p2), ab = imag(p2)
  277.    se = real(p3), sk = imag(p3)
  278.    n = imag(p4), z = imag(p5)
  279.    mxi = n + 1 - maxit
  280.    a2 = 2*a, sum = 0:
  281.      n = n - 1
  282.      ab = 2*ab
  283.      IF (ab > max)
  284.        ab = ab - max
  285.        r = imag(pixel)
  286.      ELSE
  287.        r = real(pixel)
  288.      ENDIF
  289.      xpr = x + r, sxpr = sin(xpr)
  290.      IF (n < 0)
  291.        sum = sum + log(abs(a2*sxpr*cos(xpr)))
  292.        IF (n <= mxi && sum < p4)
  293.          z = (sum/n)^se*sk
  294.        ENDIF
  295.      ENDIF
  296.      x = a*sqr(sxpr)
  297.    p5 >= abs(x)
  298.    }
  299.  
  300. - ----------------------- end of .par ---------------------------
  301.  
  302.  
  303.  
  304. - --------------------------------------------------------------
  305. Thanks for using Fractint, The Fractals and Fractint Discussion List
  306. Post Message:   fractint@lists.xmission.com
  307. Get Commands:   majordomo@lists.xmission.com "help"
  308. Administrator:  twegner@fractint.org
  309. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  310.  
  311. ------------------------------
  312.  
  313. Date: Mon, 02 Apr 2001 15:02:06 -0000
  314. From: "Andrew Coppin" <orphi69@hotmail.com>
  315. Subject: Re: (fractint) Fractint Development
  316.  
  317. >From: "Jonathan Osuch" <osuchj@qwest.net>
  318. >Reply-To: fractint@lists.xmission.com
  319. >To: <fractint@lists.xmission.com>
  320. >Subject: Re: (fractint) Fractint Development
  321. >Date: Thu, 29 Mar 2001 19:33:11 -0600
  322. >
  323. >I am currently working on the true color support for the DOS version.  
  324. >There
  325. >seems to be a problem with the routines that Bert Tyler added.  At any 
  326. >rate,
  327. >I'm having difficulty getting the images to appear correctly colored on the
  328. >screen.  I'll let you know when it is fixed.
  329.  
  330. Hmm... I know those routines were there (there's some debug option that 
  331. makes type=test do some truecolour stuff). I always wondered what the deal 
  332. was with that...
  333.  
  334. >The memory limitations stem from two sources.  One is that Fractint is
  335. >compiled in the medium memory model.  This means that memory usable for 
  336. >near
  337. >data is limited to 64KB unless some form of swapping is done.  This memory
  338. >includes the stack space, and we are banging up against this limit
  339. >constantly.  And, no it isn't a simple matter to just change the memory
  340. >model.
  341.  
  342. So, you mean that FractInt can as such only use 64KB of memory?
  343.  
  344. Are you saying that if you *did* change the memory model this would 
  345. magically make everything better? (I must confess to not knowing what a 
  346. "memory model" is. I presume it's something to do with the size of the 
  347. memory address references or something...)
  348.  
  349. What's involved in such a change? Is it just a case of going through the 
  350. program and changing half a million lines of code on a find-and-replace 
  351. basis, or does it require an actaul redesign of the code?
  352.  
  353. I'd really prefer FractInt to remain a DOS program, or perhaps to have a DOS 
  354. *and* a Windows version. (...and a Linux/UNIX version, like they do with 
  355. POV-Ray. Hey... isn't that a Stone Soup project too?)
  356.  
  357. >The other problem is that we do indeed use extended and/or expanded
  358. >memory for options other than just disk video.  Saving the on screen image
  359. >when switching to a menu comes to mind.
  360.  
  361. If you had more memory to play with, could this be avoided? (I understand 
  362. that disk video can use insane quantities of RAM, but keeping a copy of the 
  363. video buffer for a normal screen shouldn't be too bad...)
  364.  
  365. >I'll let all the other developer's respond to your question themselves.
  366.  
  367. Hmm... they seem rather quiet so far... An the basis that quiet implies 
  368. busy, this may well be a good sign 8-)
  369.  
  370. >Jonathan
  371.  
  372. Thanks for the information!
  373. Andrew.
  374.  
  375. _________________________________________________________________________
  376. Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
  377.  
  378.  
  379. - --------------------------------------------------------------
  380. Thanks for using Fractint, The Fractals and Fractint Discussion List
  381. Post Message:   fractint@lists.xmission.com
  382. Get Commands:   majordomo@lists.xmission.com "help"
  383. Administrator:  twegner@fractint.org
  384. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  385.  
  386. ------------------------------
  387.  
  388. Date: Mon, 2 Apr 2001 21:47:12 EDT
  389. From: JimMuth@aol.com
  390. Subject: (fractint) FOTD  03-04-01  (Many Happy Returns [5])
  391.  
  392. Classic FOTD -- April 03, 2001 (Rating 5)
  393.  
  394. Fractal visionaries and enthusiasts:
  395.  
  396. Today, the FOTD returns after its 1-1/2 week hiatus, with the 
  397. first fractal I've calculated in that time.  Of course, this is 
  398. the reason I have named it "Many Happy Returns.  The average 
  399. rating of 5 reflects my opinion of my first fractal effort in 
  400. 11 days.
  401.  
  402. The conditions here at the new Fractal Central auxiliary are 
  403. still a bit hectic, but they are becoming more organized every 
  404. day.  In fact, the organization is such that I almost know where 
  405. everything is located.
  406.  
  407. Unfortunately, I still lack the time for the long philosophical 
  408. discussions that have made the FOTD what it is  :-/  but as 
  409. things gradually return to normal in the near future, the FOTD 
  410. discussions will become longer and more complex, until hopefully 
  411. we finally solve the mystery of the universe.  :-\
  412.  
  413. Today's image however is no mystery.  It was created by 
  414. combining small negative portions of Z^(-1.2) and Z^(-12).  It's 
  415. one of those moth-eaten images so full of holes that the holes 
  416. are more interesting than the midget at the center.
  417.  
  418. Since my DSL internet connection is not yet established, the GIF 
  419. images are not yet being posted to Usenet, but hopefully Paul 
  420. and Scott have posted today's image to their web sites at:
  421.  
  422.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  423.  
  424. and at:
  425.  
  426.           <http://home.swbell.net/sdboyd56/fotd/>
  427.  
  428. The fractal weather today was mostly cloudy and a chilly 50F 
  429. (10C) -- conditions that combined with a brisk wind to keep the 
  430. fractal cats indoors sulking most of the afternoon.  I eased 
  431. their distress with a treat of tuna.
  432.  
  433. I see it's time to do a little more organizing, but I'll return 
  434. in another 24 hours with another fractal.  Until then, take 
  435. care, and the fractals will keep getting better.
  436.  
  437.  
  438. Jim Muth
  439. jamth@mindspring.com
  440.  
  441.  
  442. START 20.0 PAR-FORMULA FILE================================
  443.  
  444. Many_Happy_Returns { ; time=0:29:18.22--SF5 on a p200
  445.   reset=2001 type=formula formulafile=critical.frm
  446.   formulaname=MandelbrotMix4 function=ident passes=1
  447.   center-mag=+0.02268278481078340/-0.001079531652657\
  448.   37/1.821185e+009/1/-127.5
  449.   params=12/-1.2/1/-12/-1.15/800 float=y maxiter=2500
  450.   inside=0 logmap=380 periodicity=10
  451.   colors=000bmiblhbkgajgaifaieahdagc`fc`eb`da`d``c__\
  452.   b__aZ_`Y__X__XYZWWZVVZUTYTRYSQYROXQMXPLXPKZQJ_QI`Q\
  453.   HaRGbRFcREeSDfSCgSChSBiTAjT9kT8mU7nU6oU5pV4qV3rV3s\
  454.   V5nR7iO8dLA_IBVFDQCEM9DOADQADRACTBCUBCWBBXCBZCB_CB\
  455.   aCAcDAdDAfD9gE9iE9jE8lF8mF8oF8pF9oGAnGBnHCmHDlHElI\
  456.   FkIGkJHjJIiJJiKKhKLgKMgLNfLOfMPeMQdMRdNScNScNRdMQe\
  457.   MPeMOfMOfMNgMMhMLhLKiLKiLJjLIkLHkLGlLGlLHkKHkKkr9h\
  458.   oCflFdiIafL_cOY`RVYUTVXRR_OObMLeKIhHFkFCnD9qA6t83w\
  459.   60yDGqKVjQicTafVViYOl_Hoa8taAqaCoaEmaGjaIhaKfaMcaO\
  460.   aaP_aRXaTVaVTaXQaZOa`MabJadHSt_aeFfhLjjRnmXpt`qqar\
  461.   obsmbskcticugduedvbew`fxZfxXgyVgzThzRhxRewRbvR`uRY\
  462.   tRWsRTqRRpROoRMnRJmRHlREjO8kQAkRClSElUGmVImWKnXMnZ\
  463.   On_Qo`SoaUpcWpdYqe_qfaqhcrierjgskismktnmtootpqpoom\
  464.   nnjmlglkdljakhZjgVieShdPhcMgaJf`GeaDdbAdcBcdBceBcf\
  465.   BcgCchCciCcjCckDclDcmDcnDcoEcpEcqEcrEcsCctEcuGcvIc\
  466.   wKcxMcyOczQczSczUczWczYcz
  467.   }
  468.  
  469. frm:MandelbrotMix4 {; Jim Muth
  470. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  471. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  472. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  473. z=k*((a*(z^b))+(d*(z^f)))+c,
  474. |z| < l
  475. }
  476.  
  477. END 20.0 PAR-FORMULA FILE==================================
  478.  
  479. - --------------------------------------------------------------
  480. Thanks for using Fractint, The Fractals and Fractint Discussion List
  481. Post Message:   fractint@lists.xmission.com
  482. Get Commands:   majordomo@lists.xmission.com "help"
  483. Administrator:  twegner@fractint.org
  484. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  485.  
  486. ------------------------------
  487.  
  488. Date: Sun, 1 Apr 2001 13:27:19 +0200
  489. From: Michael Weitzel <weitzel@ldknet.org>
  490. Subject: Re: (fractint) Fractint Development: The Ljapunow Type
  491.  
  492. Am Sonntag, den 01. April 2001, um 00:44h schrieb Guy Marson:
  493.  
  494. > Does somebody know the Lyapunow-formula written for the Parser similar to
  495. > the build-in type, or a place (url or so) to find this formula?
  496.  
  497. I'm not an expert ... but ...
  498.  
  499. Ljapunow diagrams are based on simple population models (for yeast for
  500. example) or other oscillating systems. In the beginning (time t=0) of the
  501. experiment you start with x[t] = x[0] individuals.
  502.  
  503. The number x[t+1] of individuals in generation t+1 is proportional to
  504. the number x[t] in generation t (the generation before) and the food
  505. which is given by the environment (and/or was left over by former
  506. generations) and other environmental parameters - all together expressed
  507. through r:
  508.  
  509.     x[t+1] ~ x[t]
  510.         x[t+1] ~ r
  511.  
  512. Fractint uses the "logistic equation" to determine this number:
  513.  
  514.     x[t+1] = r * x[t] * (1 - x[t])
  515.  
  516. For the calculation of Ljapunow diagrams the parameter r ist changed
  517. periodically in a predefined way - to A or to B. The sequence of A's
  518. and B's defines the rules of the game: For example ABB results in
  519. ...BABBABBABBABBABBA... .
  520.  
  521. The screen shows an A-B-plane. If the sequence says, that r=B - you have
  522. to set r to the B-coordinate of your current pixel... if it says r=A the
  523. A-coordinate is used.
  524.  
  525. The formula is iterated a few hundred times ... so that the influence
  526. of the starting value x[0] decreases more and more. Then the calculation
  527. continues another few hundred/thousand times and while iterating the
  528. Ljapunow exponent lambda is calculated (see literature, characterizes
  529. the averange error-growth in the neighborhood of x[0]) using the
  530. simplification that ln(a*b*c) = ln(a)+ln(b)+ln(c) (which protects the
  531. floating point numbers from overflow):
  532.  
  533.                  1    | En |
  534.  lambda(x[0]) = --- ln|----|
  535.                  n    | E0 |
  536.  
  537.                                   | En |   | En   | | En-1 |     | E1 |
  538.  with total error amplification : |----| = |------|*|------|*...*|----|
  539.                                   | E0 |   | En-1 | | En-2 |     | E0 |
  540.  
  541.  | Ea   |                     d f(x[a-1])
  542.  |------| can be expressed as -----------
  543.  | Ea-1 |                       d x[a-1]
  544.  
  545.                      n                                 n
  546.                  1  ---   |d (r*x[i]*(1-x[i]))|    1  ---
  547.  lambda(x[0]) = --- \   ln|-------------------| = --- \   ln|r*(1-2*x[i])|
  548.                  n  /     |       d x[i]      |    n  /
  549.                     ---                               ---
  550.                     i=0                               i=0
  551.  
  552. If you use your "natural" screen coordinates (for ex.: x=0...1023, y=0..767)
  553. you probably won't see anything on your screen. You can see Fractint's corner
  554. parameters if you press [Tab].
  555. - -- 
  556.    Michael                  LDKnet / LDK/LUG / Unix-AG
  557.      *Weitzel* /LinuX --- email: michael(at)ldknet.org
  558.  
  559. - --------------------------------------------------------------
  560. Thanks for using Fractint, The Fractals and Fractint Discussion List
  561. Post Message:   fractint@lists.xmission.com
  562. Get Commands:   majordomo@lists.xmission.com "help"
  563. Administrator:  twegner@fractint.org
  564. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  565.  
  566. ------------------------------
  567.  
  568. Date: Tue, 3 Apr 2001 12:47:55 +0200
  569. From: Michael Weitzel <weitzel@ldknet.org>
  570. Subject: Re: (fractint) Fractint Development: The Ljapunow Type
  571.  
  572. Am Montag, den 02. April 2001, um 00:11h schrieb Gerald K. Dobiasovsky:
  573.  
  574. > > Does somebody know the Lyapunow-formula written for the Parser similar to
  575. > > the build-in type, or a place (url or so) to find this formula?
  576. [your frm + par files]
  577.  
  578. sorry ... probably a misunderstanding on my side. I thought he was
  579. asking for the algorithm of Fractint's Ljapunows. ;-)
  580.  
  581. ...but together with the description one probably better understands, what's
  582. going on in the formula-file ... sorry again ;*)
  583. - -- 
  584.    Michael                  LDKnet / LDK/LUG / Unix-AG
  585.      *Weitzel* /LinuX --- email: michael(at)ldknet.org
  586.  
  587. - --------------------------------------------------------------
  588. Thanks for using Fractint, The Fractals and Fractint Discussion List
  589. Post Message:   fractint@lists.xmission.com
  590. Get Commands:   majordomo@lists.xmission.com "help"
  591. Administrator:  twegner@fractint.org
  592. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  593.  
  594. ------------------------------
  595.  
  596. Date: Tue, 3 Apr 2001 22:29:41 +0200
  597. From: "Gerald K. Dobiasovsky" <gerald.dob@aon.at>
  598. Subject: Re: (fractint) Fractint Development: The Ljapunow Type
  599.  
  600. Michael Weitzel wrote:
  601.  
  602.  
  603. > sorry ... probably a misunderstanding on my side. I thought he was
  604. > asking for the algorithm of Fractint's Ljapunows. ;-)
  605. > ...but together with the description one probably better understands, what's
  606. > going on in the formula-file ... sorry again ;*)
  607.  
  608. No reasons to apologize...
  609.  
  610. 1) Your explanation is a detailed and illuminating one.
  611. 2) Maybe I am wrong and he *was* asking for the algorithm?!
  612.  
  613. Greetings,
  614. Gerald
  615.  
  616.  
  617.  
  618. - --------------------------------------------------------------
  619. Thanks for using Fractint, The Fractals and Fractint Discussion List
  620. Post Message:   fractint@lists.xmission.com
  621. Get Commands:   majordomo@lists.xmission.com "help"
  622. Administrator:  twegner@fractint.org
  623. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  624.  
  625. ------------------------------
  626.  
  627. Date: Tue, 03 Apr 2001 16:28:25 -0500
  628. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  629. Subject: Re: (fractint) Fractint Development: The Ljapunow Type
  630.  
  631. Michael Weitzel wrote:
  632. >
  633. > sorry ... probably a misunderstanding on my side. 
  634. > I thought he was asking for the algorithm of 
  635. > Fractint's Ljapunows.   ;-)
  636. >
  637.  
  638. I personally found your postings on the topic quite interesting, whether
  639. or not the original questions was for FRMs/PARs.  It is always nice to
  640. have an understanding of the details.  Thanks for sharing with all of us
  641. on the List.
  642.  
  643. Sincerely,
  644. P.N.L.
  645. - --------------------------------------------------------------
  646. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  647.  
  648. - --------------------------------------------------------------
  649. Thanks for using Fractint, The Fractals and Fractint Discussion List
  650. Post Message:   fractint@lists.xmission.com
  651. Get Commands:   majordomo@lists.xmission.com "help"
  652. Administrator:  twegner@fractint.org
  653. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  654.  
  655. ------------------------------
  656.  
  657. Date: Tue, 03 Apr 2001 16:55:14 -0500
  658. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  659. Subject: (fractint) A Fractal Project Completed !!
  660.  
  661. Greetings,
  662.  
  663. Philip Northover, the fractal artist known for his "Fractal Alhambra"
  664. website at:
  665.  
  666.     http://pnorthov.future.easyspace.com/
  667.  
  668. has recently completed a very lengthy project.  Though Philip has five
  669. online galleries containing over a hundred images, he has also been
  670. working on his private project for approximately two years:
  671.  
  672.     "A Fractal Interpretation of the King James Version of the Bible"
  673.  
  674. He kept to a classical fractal style throughout, employing the primary
  675. colours, which he fealt conveyed the biblical simplicity which often
  676. hints at great depths.  Philip wanted an overall feeling of consistency,
  677. unity, order, and purpose to the work, while still reflecting the
  678. essence of each book within the Bible.
  679.  
  680. I hope everyone has an opportunity to visit his web site to view what
  681. definitely has been a considerable personal project for Philip.
  682.  
  683.  
  684. Sincerely,
  685. P.N.L.
  686. - --------------------------------------------------------------
  687. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  688.  
  689. - --------------------------------------------------------------
  690. Thanks for using Fractint, The Fractals and Fractint Discussion List
  691. Post Message:   fractint@lists.xmission.com
  692. Get Commands:   majordomo@lists.xmission.com "help"
  693. Administrator:  twegner@fractint.org
  694. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  695.  
  696. ------------------------------
  697.  
  698. Date: Wed, 04 Apr 2001 01:21:44 +0200
  699. From: Guy Marson <guy.marson@mnhn.lu>
  700. Subject: Re: (fractint) Fractint Development: The Ljapunow Type
  701.  
  702. Hi,
  703.  
  704.  
  705. At 12:47 03/04/01 +0200, you wrote:
  706. >Am Montag, den 02. April 2001, um 00:11h schrieb Gerald K. Dobiasovsky:
  707. >
  708. >> > Does somebody know the Lyapunow-formula written for the Parser similar to
  709. >> > the build-in type, or a place (url or so) to find this formula?
  710. >[your frm + par files]
  711. >
  712. >sorry ... probably a misunderstanding on my side. I thought he was
  713. >asking for the algorithm of Fractint's Ljapunows. ;-)
  714. >
  715.  
  716. It's ok, not being a math, now I understand the Lyapunow-type mutch better!
  717. Having both, the formula and more explanations 
  718.  
  719.  
  720. Thanks to both of you!
  721.  
  722. >...but together with the description one probably better understands, what's
  723. >going on in the formula-file ... sorry again ;*)
  724.  
  725.  
  726. nix zu entschuldigen, das ist voll in Ordnung so! 
  727.  
  728.  
  729. >-- 
  730. >   Michael                  LDKnet / LDK/LUG / Unix-AG
  731. >     *Weitzel* /LinuX --- email: michael(at)ldknet.org
  732. >
  733.  
  734.  
  735. cheers,
  736.  
  737. Guy
  738.  
  739. - --------------------------------------------------------------
  740. Thanks for using Fractint, The Fractals and Fractint Discussion List
  741. Post Message:   fractint@lists.xmission.com
  742. Get Commands:   majordomo@lists.xmission.com "help"
  743. Administrator:  twegner@fractint.org
  744. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  745.  
  746. ------------------------------
  747.  
  748. Date: Tue, 3 Apr 2001 22:49:09 EDT
  749. From: JimMuth@aol.com
  750. Subject: (fractint) C-FOTD  04-04-01  (A New Midget [6])
  751.  
  752. Classic FOTD -- April 04, 2001 (Rating 6)
  753.  
  754. Fractal visionaries and enthusiasts:
  755.  
  756. I named today's not quite overwhelming fractal "A New Midget".  
  757. And it's true -- this particular midget has never before been 
  758. seen by the eyes of man, nor by the eyes of woman, who sometimes 
  759. can see more than man.
  760.  
  761. Of course, we always suspected that the midget existed.  We know 
  762. that an infinity of midgets exist, of which exactly zero 
  763. percent, or more precisely an infinitesimal percent, will ever 
  764. be seen.
  765.  
  766. That's one of the curious things about midgets -- an infinity of 
  767. them exist -- and regardless of how many we discover, the number 
  768. of undiscovered midgets is never reduced.  Take for example the 
  769. parent fractal of today's midget.  The default appearance is a 
  770. drab set of concentric circles, with a twisted midget near the 
  771. right edge of the screen.  A couple out-zooms will reveal that 
  772. the entire fractal appears as a roughly diamond-shaped island in 
  773. the middle of an infinite ocean.  The default midget is seen to 
  774. be a lake on an island.  This midget has some unusual things 
  775. happening in its East Valley area, and today's scene lies deep 
  776. in this East Valley area.
  777.  
  778. Undecided how to rate today's effort, I finally decided on a 
  779. slightly above average 6, making the image worth the effort of 
  780. downloading it from paul's web site at:
  781.  
  782.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  783.  
  784. Unfortunately, Scott's FOTD site will be down for a few days.
  785.  
  786. The fractal weather today was unexpectedly sunny and warm.  
  787. Until the middle of the afternoon, the weather experts were 
  788. forecasting that chilly clouds and rain would prevail all day.  
  789. This caused them to appear a little less than expert, though the 
  790. fractal cats had no complaints as they enjoyed the temperature 
  791. of 61F (16C).
  792.  
  793. And after another busy and confusing day, I will now enjoy an 
  794. hour or so of relaxation.  I'll return tomorrow around this same 
  795. time with another moderately glorious fractal and a few words 
  796. about the image.  Until then, take care, and wait with bated, 
  797. but not abated, breath.
  798.  
  799.  
  800. Jim Muth
  801. jamth@mindspring.com
  802.  
  803.  
  804. START 20.0 PAR-FORMULA FILE================================
  805.  
  806. A_New_Midget       { ; time=0:25:51.10--SF5 on a P200
  807.   reset=2001 type=formula formulafile=critical.frm
  808.   formulaname=MandelbrotMix4 function=recip passes=1
  809.   center-mag=+1.57276058003352300/+0.186020729751933\
  810.   60/9.061857e+012/1.0002/-154.909/-0.094
  811.   params=-1/-1.5/100/5/-0.93/0 float=y
  812.   maxiter=3000 inside=0 periodicity=10
  813.   colors=000td_sfbrheqjhplkonnnpqmrtjprhopenocmmallZ\
  814.   kjXjiUigShfQgdNfcLeaId`GcZEbYFcUGcRHcNHcKIdHJdDKdA\
  815.   Kd7LcAMbDNaGN`IO_LPZOQYRQYT_cbihlsmupipnfllchj`dgX\
  816.   _eUWcRSaOOZKJXHFVEBTB7R83TA5VC7XE8ZGA`ICbKDdMFfNGh\
  817.   PIjRKlTLnVNpXPrZQt`SuaTt_TtYTtWTtUTtSTsRTsPTsNTsLT\
  818.   sJTsIToDWk8Zh3akHdmLfpOirOkqQjqVjpVipVioUhoUhnUgnU\
  819.   gmTfmTflTelTeeXg__hUciOfjIjkCml6qm0tn3uk5uh8ufAucC\
  820.   uaFrZHoXJlUMiSOfQQcSS`UUYWWVYXS_VPaTMcRJeTJ`VKWXKR\
  821.   YKM_ONaSNcWOd_OfcPhgPikPZnUOqZEtcJjdOaeTSeYJfaAf`B\
  822.   g`Bg`Bg`Ch`Ch`Ch`Di_Di_Di_Ej_Ej_Ej_Fk_Fk_FkZJgYMcX\
  823.   P`XSXWVUVYQUaMUdJTgFSjCRm8Rp5Xf7aY9fOBkFDlEGmDInCL\
  824.   oBNpBQqASr9Vr8Xs7_t7au6dv5fw4ix3kx3ms8nnCnjHneLoaP\
  825.   oXUoTYpObpKfpFjqBoq6sq2wqAniIebQXWYOPeFIcLKbQMaVO`\
  826.   _QZeSYjUXoWWtYI`I5H35E37H68J99MCAOFBQICTLDVOEXRG_U\
  827.   HaXId_JfbKheLkhMmkNonPloQjpSgqTeqVcrW`sYZsZWt`UuaS\
  828.   ucPvdNweLwaMvrZPwYQv`UubX
  829.   }
  830.  
  831. frm:MandelbrotMix4 {; Jim Muth
  832. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  833. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  834. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  835. z=k*((a*(z^b))+(d*(z^f)))+c,
  836. |z| < l
  837. }
  838.  
  839. END 20.0 PAR-FORMULA FILE==================================
  840.  
  841. - --------------------------------------------------------------
  842. Thanks for using Fractint, The Fractals and Fractint Discussion List
  843. Post Message:   fractint@lists.xmission.com
  844. Get Commands:   majordomo@lists.xmission.com "help"
  845. Administrator:  twegner@fractint.org
  846. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  847.  
  848. ------------------------------
  849.  
  850. Date: Tue, 3 Apr 2001 23:42:13 EDT
  851. From: Spatzy2325@aol.com
  852. Subject: Re: (fractint) A Fractal Project Completed !!
  853.  
  854. Good Evening,
  855.  
  856. I am quite confused about the project... are these fractals represent the 
  857. books of the Bible, or are the words themselves used in some way or form to 
  858. create the fractals? Please respond as soon as possible, thanks, God Bless
  859. Ryan
  860.  
  861. - --------------------------------------------------------------
  862. Thanks for using Fractint, The Fractals and Fractint Discussion List
  863. Post Message:   fractint@lists.xmission.com
  864. Get Commands:   majordomo@lists.xmission.com "help"
  865. Administrator:  twegner@fractint.org
  866. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  867.  
  868. ------------------------------
  869.  
  870. Date: Tue, 3 Apr 2001 18:07:08 -1000
  871. From: "David Jones" <gnome@hawaii.rr.com>
  872. Subject: (fractint) [fractal-art] Some links to fractal sites
  873.  
  874. Found these at Netscape's Open Directory Project:
  875.  
  876. http://dmoz.org/Science/Math/Chaos_and_Fractals/
  877.  
  878. http://www.3dfractals.com/tetrapics/imageframe.htm
  879.  
  880. David
  881. gnome@hawaii.rr.com
  882.  
  883.  
  884. _______ ______ _____ ____ ___ __ _
  885. post:  send message to fractal-art@lists.fractalus.com
  886. unsub: send message to fractal-art-unsubscribe@lists.fractalus.com
  887. help:  send message to fractal-art-help@lists.fractalus.com
  888. admin: send message to fractal-art-owner@lists.fractalus.com
  889.  
  890.  
  891. - --------------------------------------------------------------
  892. Thanks for using Fractint, The Fractals and Fractint Discussion List
  893. Post Message:   fractint@lists.xmission.com
  894. Get Commands:   majordomo@lists.xmission.com "help"
  895. Administrator:  twegner@fractint.org
  896. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  897.  
  898. ------------------------------
  899.  
  900. Date: Tue, 3 Apr 2001 18:07:08 -1000
  901. From: "David Jones" <gnome@hawaii.rr.com>
  902. Subject: (fractint) Some links to fractal sites
  903.  
  904. Found these at Netscape's Open Directory Project:
  905.  
  906. http://dmoz.org/Science/Math/Chaos_and_Fractals/
  907.  
  908. http://www.3dfractals.com/tetrapics/imageframe.htm
  909.  
  910. David
  911. gnome@hawaii.rr.com
  912.  
  913.  
  914. - --------------------------------------------------------------
  915. Thanks for using Fractint, The Fractals and Fractint Discussion List
  916. Post Message:   fractint@lists.xmission.com
  917. Get Commands:   majordomo@lists.xmission.com "help"
  918. Administrator:  twegner@fractint.org
  919. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  920.  
  921. ------------------------------
  922.  
  923. Date: Wed, 04 Apr 2001 10:58:32 -0500
  924. From: Programmer Dude <cjsonnack@mmm.com>
  925. Subject: Re: (fractint) Fractint Development
  926.  
  927. No one has responded to this in a couple days, so I thought I'd take a
  928. shot at it...
  929.  
  930. Andrew Coppin wrote:
  931.  
  932. >> The memory limitations stem from two sources.  One is that Fractint is
  933. >> compiled in the medium memory model.  This means that memory usable for
  934. >> near data is limited to 64KB unless some form of swapping is done.
  935. >
  936. > So, you mean that FractInt can as such only use 64KB of memory?
  937.  
  938. Sort of.
  939.  
  940. FractInt was born as an MS-DOS program, and MS-DOS ran on Intel chips.
  941. Intel chips see memory as "segmented" rather than "flat" (as the Motorola
  942. chips (used in Apple machines) do).  Flat memory looks like one huge
  943. "address space".  For any memory location from 0000000 to umpteenzillion,
  944. the memory location just refers to the appropriate point, like milage
  945. along a road.
  946.  
  947. In segmented memory, a memory location consists of two numbers: a
  948. segment and an offset.  The segment is like a rolling window that jumps
  949. in, IIRC, 256-byte jumps: segment 0 starts at 0, segment 1 starts at 256,
  950. and so on.  And a segment is a 64-k "window".  The offset refers to any
  951. location within that 64-k window.
  952.  
  953. The Intel chips ran programs in an architecture that had four segments:
  954. a "Code" segment, a "Data" segment, a "Stack" segment and an "Extra"
  955. segment sometimes used as a second, extended Data segment).  Due to the
  956. nature of the C language (a primary development language of the day),
  957. the Stack and Data segments usually had to be identical.  You ended up
  958. with a 64-K window with your data growing from the bottom upwards and
  959. your stack growing from the top downwards.  The space in the middle was
  960. the "heap" and is where you got dynamically allocated memory from.
  961.  
  962. The "Memory Model" is what various configurations of the segments is
  963. called.  Remember the old .COM programs?  By definition, they always
  964. use the "Tiny" memory model.  All segments are identical, and your
  965. entire program--data and code--must fit in a single 64-K window.
  966.  
  967. The "Medium" memory model, IIRC, has the stack and data sharing one
  968. 64-K segment, while the code lives in its own 64-K segment.
  969.  
  970. This doesn't mean the program can't access data outside these segments.
  971. It can, but outside memory is "far" in the language of Intel memory
  972. models (opposed to the "near" memory in the data/stack segment).  Because
  973. the data/stack segment is "framed" by the segment pointers of the Intel
  974. architecture, you only need 16 bits (64-K) to address it.  But since "far"
  975. memory is 'somewhere in address space' you need a full address which was,
  976. at the time, 24 bits usually expressed as two 16-bit values with 8 bits of
  977. overlap.  Added together, they form a 24-bit address.
  978.  
  979. The bottom line is that, in your program, you have a mix of "near" data
  980. and "far" data, and they require different variable types to refer to.
  981.  
  982. > What's involved in such a change? Is it just a case of going through the
  983. > program and changing half a million lines of code on a find-and-replace
  984. > basis, or does it require an actaul redesign of the code?
  985.  
  986. I can't speak for the FractInt developers, and I'm not familiar with the
  987. code.  I can guess it lies between those two ideas.  It's not a simple
  988. matter of S&R; I'd guess you want to examine every place you need to change
  989. to see if the change breaks anything.  But it probably does NOT require a
  990. complete redesign.
  991.  
  992. Ideally you'd like a compiler that let you treat memory as flat and make
  993. all your pointers be the same type.  I have no idea if such exists for
  994. the Intel platforms.
  995.  
  996. But then *I* think what you *really* want is to get away from MS-DOS.
  997.  
  998. > I'd really prefer FractInt to remain a DOS program, or perhaps to have
  999. > a DOS *and* a Windows version. (...and a Linux/UNIX version, like they
  1000. > do with POV-Ray. Hey... isn't that a Stone Soup project too?)
  1001.  
  1002. Don't *think* POV-Ray (great program, BTW) is Stone Soup.  There's actually
  1003. a great concept there.  POV-Ray renders to a disk file normally.  The
  1004. Windows version just happens to have the extra treat of showing you the
  1005. image as it's rendered.  But the heart of POV-Ray is a command line tool
  1006. for rendering 3D scenes into an image file of some type.
  1007.  
  1008. >> The other problem is that we do indeed use extended and/or expanded
  1009. >> memory for options other than just disk video.  Saving the on screen
  1010. >> image when switching to a menu comes to mind.
  1011. > If you had more memory to play with, could this be avoided? (I understand
  1012. > that disk video can use insane quantities of RAM, but keeping a copy of
  1013. > the video buffer for a normal screen shouldn't be too bad...)
  1014.  
  1015. But what I imagine they have to save is the fractal image while the menu
  1016. screens are displayed.  That could be considerable.
  1017.  
  1018. Anyway, hope this little data dump helped rather than confused...
  1019.  
  1020. - -- 
  1021. |_ CJSonnack <Chris@Sonnack.com> _____________| How's my programming? |
  1022. |_ http://www.Sonnack.com/ ___________________| Call: 1-800-DEV-NULL  |
  1023. |_____________________________________________|_______________________|
  1024.  
  1025. - --------------------------------------------------------------
  1026. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1027. Post Message:   fractint@lists.xmission.com
  1028. Get Commands:   majordomo@lists.xmission.com "help"
  1029. Administrator:  twegner@fractint.org
  1030. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1031.  
  1032. ------------------------------
  1033.  
  1034. Date: Wed, 4 Apr 2001 17:41:53 -0400
  1035. From: "Zorba the Hutt" <zorbathut@uswest.net>
  1036. Subject: Re: (fractint) Fractint Development
  1037.  
  1038. >
  1039. > Ideally you'd like a compiler that let you treat memory as flat and make
  1040. > all your pointers be the same type.  I have no idea if such exists for
  1041. > the Intel platforms.
  1042. >
  1043. > But then *I* think what you *really* want is to get away from MS-DOS.
  1044. >
  1045.  
  1046. Any 32-bit compiler does this - basically, anything that compiles native
  1047. Win95 programs or higher. There *is* a way to use flat memory on MS-DOS, as
  1048. I remember - the DOS4GW extension, that everyone who's played games in the
  1049. late DOS era will recognize. It was basically a protected-mode flat memory
  1050. manager, and you needed a 32-bit compiler to use it, and by golly, it was
  1051. worth it.
  1052.  
  1053. At least, I think that's what it did. Correct me if I'm wrong ^^;;
  1054.  
  1055. - -Zorba
  1056.  
  1057.  
  1058. - --------------------------------------------------------------
  1059. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1060. Post Message:   fractint@lists.xmission.com
  1061. Get Commands:   majordomo@lists.xmission.com "help"
  1062. Administrator:  twegner@fractint.org
  1063. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1064.  
  1065. ------------------------------
  1066.  
  1067. Date: Thu, 5 Apr 2001 01:24:33 -0400
  1068. From: "Multiple Bogeys" <neo_1061@hotmail.com>
  1069. Subject: Re: (fractint) FOTD 03-04-01 (Many Happy Returns [5])
  1070.  
  1071. - ------=_NextPart_001_0000_01C0BD6F.2B90BFE0
  1072. Content-Type: text/plain; charset="iso-8859-1"
  1073. Content-Transfer-Encoding: quoted-printable
  1074.  
  1075. > Today, the FOTD returns after its 1-1/2 week hiatus, with the
  1076. > first fractal I've calculated in that time.  Of course, this is
  1077. > the reason I have named it "Many Happy Returns.  The average
  1078. > rating of 5 reflects my opinion of my first fractal effort in
  1079. > 11 days.
  1080.               ^
  1081. Error: Unterminated string constant. :-)
  1082.  
  1083. > Unfortunately, I still lack the time for the long philosophical
  1084. > discussions that have made the FOTD what it is  :-/  but as
  1085. > things gradually return to normal in the near future, the FOTD
  1086. > discussions will become longer and more complex, until hopefully
  1087. > we finally solve the mystery of the universe.  :-\
  1088.  
  1089. Hate to tell you this, but it's already been done.
  1090. http://www.hep.upenn.edu/~max/toe.html<br clear=3Dall><hr>Get Your Privat=
  1091. e, Free E-mail from MSN Hotmail at <a href=3D"http://www.hotmail.com">htt=
  1092. p://www.hotmail.com</a>.<br></p>
  1093.  
  1094. - ------=_NextPart_001_0000_01C0BD6F.2B90BFE0
  1095. Content-Type: text/html; charset="iso-8859-1"
  1096. Content-Transfer-Encoding: quoted-printable
  1097.  
  1098. <HTML><BODY STYLE=3D"font:10pt verdana; border:none;"><DIV>> Today, th=
  1099. e FOTD returns after its 1-1/2 week hiatus, with the<BR>> first fracta=
  1100. l I've calculated in that time.  Of course, this is<BR>> the reas=
  1101. on I have named it "Many Happy Returns.  The average<BR>> rating =
  1102. of 5 reflects my opinion of my first fractal effort in<BR>> 11 days.<B=
  1103. R>            =
  1104. ;  ^</DIV> <DIV>Error: Unterminated string constant. :-)</DIV> <DIV>=
  1105. <BR>> Unfortunately, I still lack the time for the long philosophical<=
  1106. BR>> discussions that have made the FOTD what it is  :-/  bu=
  1107. t as<BR>> things gradually return to normal in the near future, the FO=
  1108. TD<BR>> discussions will become longer and more complex, until hopeful=
  1109. ly<BR>> we finally solve the mystery of the universe.  :-\<BR></D=
  1110. IV> <DIV>Hate to tell you this, but it's already been done.</DIV> <DIV><A=
  1111.  href=3D"http://www.hep.upenn.edu/~max/toe.html">http://www.hep.upenn.edu=
  1112. /~max/toe.html</A></DIV> <DIV><BR> </DIV></BODY></HTML><DIV><BR><br =
  1113. clear=3Dall><hr>Get Your Private, Free E-mail from MSN Hotmail at <a href=
  1114. =3D"http://www.hotmail.com">http://www.hotmail.com</a>.<br></p></DIV>
  1115.  
  1116. - ------=_NextPart_001_0000_01C0BD6F.2B90BFE0--
  1117.  
  1118. - --------------------------------------------------------------
  1119. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1120. Post Message:   fractint@lists.xmission.com
  1121. Get Commands:   majordomo@lists.xmission.com "help"
  1122. Administrator:  twegner@fractint.org
  1123. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1124.  
  1125. ------------------------------
  1126.  
  1127. End of fractint-digest V1 #548
  1128. ******************************
  1129.  
  1130.