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

  1. From: "Gerald K. Dobiasovsky" <gerald.dob@aon.at>
  2. Subject: Re: (fractint) Fractint Development: The Ljapunow Type
  3. Date: 02 Apr 2001 00:11:27 +0200
  4.  
  5. Guy Marson wrote:
  6.  
  7. > Hi fractinters,
  8. >
  9. > Does somebody know the Lyapunow-formula written for the Parser similar to
  10. > the build-in type, or a place (url or so) to find this formula?
  11. >
  12. > Cheers,
  13. >
  14. > Guy
  15.  
  16. Hi,
  17.  
  18. Since I have never seen such a beast (although the parser can
  19. be coaxed to do astounding things, as all the formulas by
  20. Sylvie Gallet, Damien Jones, Paul Carlson etc. are proof of),
  21. I feel obliged to post my construct.
  22.  
  23. A word of caution is in order here.
  24. This thing is not exactly user friendly for a couple of reasons
  25. (some are: the original was written when there existed no if-
  26. statements, the parser supported only much smaller formulas, and *I* know what all those variables
  27. are supposed to achieve - or at least I think I do ;-)).
  28.  
  29. Some explanations: (Parameter names in the formula comments
  30.                     are written in the form:
  31.                     p# ... real part / imaginary part)
  32.  
  33. The ab-String is input the same way as in Fractint's Lyapunov
  34. type, converting a's to 1's and b's to 0's, but *without*
  35. dropping the leading a and the trailing b!!!
  36. In fact there's no need to rotate the string at all, it may
  37. have leading b's; the length of the string is input in a
  38. separate variable (abMax).
  39.  
  40. Scaling Exponent and Scaling Factor are used to bring the
  41. output into the appropriate color range (a bit of fiddling
  42. around is necessary here).
  43.  
  44. Filter Cycles does the same as Fractint's Lyapunov parameter.
  45.  
  46. Bailout is used to catch possible overflows of the iteration
  47. function. Fractint is very good at catching those itself (at
  48. first my formula ended in the statement "n == n", letting all pixels iterate maxiter times and
  49. leaving it to Fractint what
  50. happened to those values that grew too big), only it insisted
  51. on painting those pixels with a different color than those with
  52. non-overflowing, but still positive Lyapunov exponents.
  53.  
  54. Zero Level: Normally all pixels with a positive result are
  55. painted as one color value, those with negative values are
  56. mapped onto the whole color map. Due to small calculation
  57. errors, pixels with results near zero end up "on the wrong
  58. side of the dividing line" (using lyapunov.map and assigning
  59. black as background one sometimes gets black spots in otherwise
  60. yellow areas or yellow "junk" in areas that should be
  61. background). This parameter moves the "dividing line", by
  62. setting it to e.g. -10 all values (-10 < value < 0) will be
  63. painted as background. (Note: This test is done *before* the
  64. value is divided by the number of iterations!)
  65.  
  66. Divergence Result: This is the value (*not* the color number!)
  67. of background pixels returned to Fractint to map it onto the
  68. loaded color map. Quite a  bit of fiddling is needed here, too,
  69. because every change of the number of iterations needs a
  70. recalibration of this parametrer for getting the same color
  71. output as before (did I point out this formulas not being user
  72. friendly? ;-))
  73.  
  74. Further notes: One doesn't need to set logmap=1 (as is done
  75. in the accompanying pars), but if one does, maxiter has to
  76. be set to at least 256 or not all colors of the color map can
  77. be reached (=displayed).
  78. Fractint iterates its Lyapunov type differently from these
  79. formula implementations (if one has a string of "aab" then
  80. Fractint iterates its Lyapunov three times for each iteration
  81. set as maxiter - two time because of the two a's, one time for
  82. the lone b; in the formula parser each iteration is *one* loop
  83. using *one* string token, of course).
  84.  
  85. Well, I hope you will have fun with formulas nevertheless
  86. and I better stop now before this posting grows bigger still.
  87.  
  88. Regards,
  89.  
  90. Gerald
  91.  
  92. ---------------- cut here, save as .par file ------------------
  93.  
  94. Lyapunov {;Parser version of Fractint's Lyapunov formula
  95.           ;
  96.   reset=2001 type=formula formulaname=Lyapunov
  97.   corners=0/6/0/4.5
  98.   params=0.66/3/1/0.5/0.35/100/10/1.4/1000000 float=y
  99.   maxiter=1000 inside=zmag outside=255 logmap=yes periodicity=0
  100.   colors=@lyapunov.map
  101.   }
  102.  
  103. LyapSqrSinR {;Lyapunov-Fractal of "Do-It-Yourself"-Formula
  104.              ;
  105.   reset=2001 type=formula formulaname=LyapSqrSinR
  106.   corners=0.006343064/3.837554/-0.09798406/3.733226
  107.   params=2.5/1.5/3/1/0.5/0.55/10/100/1000000/1.4 float=y
  108.   maxiter=1000 inside=zmag outside=255 logmap=yes periodicity=0
  109.   colors=@lyapunov.map
  110.   }
  111.  
  112. frm:Lyapunov {;"standard" Lambda-Formula
  113.               ;
  114.    ;abMax = Length of ab-string in the form of: 2^LENGTH - 1
  115.    ;periodicity=no, inside=zmag, outside=ColorNumber
  116.    ;
  117.    ;p1 ... Starting Value / abMax
  118.    ;p2 ... ab-String / Scaling Exponent
  119.    ;p3 ... Scaling Faktor / Filter Cycles
  120.    ;p4 ... Zero Level / Divergence Result
  121.    ;p5 ... Bailout
  122.    ;
  123.    x = real(p1), max = imag(p1), ab = real(p2)
  124.    se = imag(p2), sk = real(p3)
  125.    n = imag(p3), z = imag(p4)
  126.    mxi = n + 1 - maxit
  127.    sum = 0:
  128.      n = n - 1
  129.      ab = 2*ab
  130.      IF (ab > max)
  131.        ab = ab - max
  132.        c = imag(pixel)
  133.      ELSE
  134.        c = real(pixel)
  135.      ENDIF
  136.      IF (n < 0)
  137.        sum = sum + log(abs(c*(1-2*x)))
  138.        IF (n <= mxi && sum < p4)
  139.          z = (sum/n)^se*sk
  140.        ENDIF
  141.      ENDIF
  142.      x = c*x*(1-x)
  143.    p5 >= abs(x)
  144.    }
  145.  
  146. frm:LyapSqrSinR {;Function a*(sin(x+r))^2
  147.                  ;
  148.    ;ab-String: Swapping of r between two values
  149.    ;abMax = Length of ab-string in the form of: 2^LENGTH - 1
  150.    ;periodicity=no, inside=zmag, outside=ColorNumber
  151.    ;
  152.    ;p1 ... Factor a / Starting Value
  153.    ;p2 ... abMax / ab-String
  154.    ;p3 ... Scaling Exponent / Scaling Faktor
  155.    ;p4 ... Zero Level / Filter Cycles
  156.    ;p5 ... Bailout / Divergence Result
  157.    ;
  158.    a = real(p1), x = imag(p1)
  159.    max = real(p2), ab = imag(p2)
  160.    se = real(p3), sk = imag(p3)
  161.    n = imag(p4), z = imag(p5)
  162.    mxi = n + 1 - maxit
  163.    a2 = 2*a, sum = 0:
  164.      n = n - 1
  165.      ab = 2*ab
  166.      IF (ab > max)
  167.        ab = ab - max
  168.        r = imag(pixel)
  169.      ELSE
  170.        r = real(pixel)
  171.      ENDIF
  172.      xpr = x + r, sxpr = sin(xpr)
  173.      IF (n < 0)
  174.        sum = sum + log(abs(a2*sxpr*cos(xpr)))
  175.        IF (n <= mxi && sum < p4)
  176.          z = (sum/n)^se*sk
  177.        ENDIF
  178.      ENDIF
  179.      x = a*sqr(sxpr)
  180.    p5 >= abs(x)
  181.    }
  182.  
  183. ----------------------- end of .par ---------------------------
  184.  
  185.  
  186.  
  187. Thanks for using Fractint, The Fractals and Fractint Discussion List
  188. Post Message:   fractint@lists.xmission.com
  189. Get Commands:   majordomo@lists.xmission.com "help"
  190. Administrator:  twegner@fractint.org
  191. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  192.  
  193.  
  194. -------------------------------------------------------------------------------
  195.  
  196. From: "Andrew Coppin" <orphi69@hotmail.com>
  197. Subject: Re: (fractint) Fractint Development
  198. Date: 02 Apr 2001 15:02:06 -0000
  199.  
  200. >From: "Jonathan Osuch" <osuchj@qwest.net>
  201. >Reply-To: fractint@lists.xmission.com
  202. >To: <fractint@lists.xmission.com>
  203. >Subject: Re: (fractint) Fractint Development
  204. >Date: Thu, 29 Mar 2001 19:33:11 -0600
  205. >
  206. >I am currently working on the true color support for the DOS version.  
  207. >There
  208. >seems to be a problem with the routines that Bert Tyler added.  At any 
  209. >rate,
  210. >I'm having difficulty getting the images to appear correctly colored on the
  211. >screen.  I'll let you know when it is fixed.
  212.  
  213. Hmm... I know those routines were there (there's some debug option that 
  214. makes type=test do some truecolour stuff). I always wondered what the deal 
  215. was with that...
  216.  
  217. >The memory limitations stem from two sources.  One is that Fractint is
  218. >compiled in the medium memory model.  This means that memory usable for 
  219. >near
  220. >data is limited to 64KB unless some form of swapping is done.  This memory
  221. >includes the stack space, and we are banging up against this limit
  222. >constantly.  And, no it isn't a simple matter to just change the memory
  223. >model.
  224.  
  225. So, you mean that FractInt can as such only use 64KB of memory?
  226.  
  227. Are you saying that if you *did* change the memory model this would 
  228. magically make everything better? (I must confess to not knowing what a 
  229. "memory model" is. I presume it's something to do with the size of the 
  230. memory address references or something...)
  231.  
  232. What's involved in such a change? Is it just a case of going through the 
  233. program and changing half a million lines of code on a find-and-replace 
  234. basis, or does it require an actaul redesign of the code?
  235.  
  236. I'd really prefer FractInt to remain a DOS program, or perhaps to have a DOS 
  237. *and* a Windows version. (...and a Linux/UNIX version, like they do with 
  238. POV-Ray. Hey... isn't that a Stone Soup project too?)
  239.  
  240. >The other problem is that we do indeed use extended and/or expanded
  241. >memory for options other than just disk video.  Saving the on screen image
  242. >when switching to a menu comes to mind.
  243.  
  244. If you had more memory to play with, could this be avoided? (I understand 
  245. that disk video can use insane quantities of RAM, but keeping a copy of the 
  246. video buffer for a normal screen shouldn't be too bad...)
  247.  
  248. >I'll let all the other developer's respond to your question themselves.
  249.  
  250. Hmm... they seem rather quiet so far... An the basis that quiet implies 
  251. busy, this may well be a good sign 8-)
  252.  
  253. >Jonathan
  254.  
  255. Thanks for the information!
  256. Andrew.
  257.  
  258. _________________________________________________________________________
  259. Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
  260.  
  261.  
  262. Thanks for using Fractint, The Fractals and Fractint Discussion List
  263. Post Message:   fractint@lists.xmission.com
  264. Get Commands:   majordomo@lists.xmission.com "help"
  265. Administrator:  twegner@fractint.org
  266. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  267.  
  268.  
  269. -------------------------------------------------------------------------------
  270.  
  271. From: JimMuth@aol.com
  272. Subject: (fractint) FOTD  03-04-01  (Many Happy Returns [5])
  273. Date: 02 Apr 2001 21:47:12 EDT
  274.  
  275.  
  276. Classic FOTD -- April 03, 2001 (Rating 5)
  277.  
  278. Fractal visionaries and enthusiasts:
  279.  
  280. Today, the FOTD returns after its 1-1/2 week hiatus, with the 
  281. first fractal I've calculated in that time.  Of course, this is 
  282. the reason I have named it "Many Happy Returns.  The average 
  283. rating of 5 reflects my opinion of my first fractal effort in 
  284. 11 days.
  285.  
  286. The conditions here at the new Fractal Central auxiliary are 
  287. still a bit hectic, but they are becoming more organized every 
  288. day.  In fact, the organization is such that I almost know where 
  289. everything is located.
  290.  
  291. Unfortunately, I still lack the time for the long philosophical 
  292. discussions that have made the FOTD what it is  :-/  but as 
  293. things gradually return to normal in the near future, the FOTD 
  294. discussions will become longer and more complex, until hopefully 
  295. we finally solve the mystery of the universe.  :-\
  296.  
  297. Today's image however is no mystery.  It was created by 
  298. combining small negative portions of Z^(-1.2) and Z^(-12).  It's 
  299. one of those moth-eaten images so full of holes that the holes 
  300. are more interesting than the midget at the center.
  301.  
  302. Since my DSL internet connection is not yet established, the GIF 
  303. images are not yet being posted to Usenet, but hopefully Paul 
  304. and Scott have posted today's image to their web sites at:
  305.  
  306.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  307.  
  308. and at:
  309.  
  310.           <http://home.swbell.net/sdboyd56/fotd/>
  311.  
  312. The fractal weather today was mostly cloudy and a chilly 50F 
  313. (10C) -- conditions that combined with a brisk wind to keep the 
  314. fractal cats indoors sulking most of the afternoon.  I eased 
  315. their distress with a treat of tuna.
  316.  
  317. I see it's time to do a little more organizing, but I'll return 
  318. in another 24 hours with another fractal.  Until then, take 
  319. care, and the fractals will keep getting better.
  320.  
  321.  
  322. Jim Muth
  323. jamth@mindspring.com
  324.  
  325.  
  326. START 20.0 PAR-FORMULA FILE================================
  327.  
  328. Many_Happy_Returns { ; time=0:29:18.22--SF5 on a p200
  329.   reset=2001 type=formula formulafile=critical.frm
  330.   formulaname=MandelbrotMix4 function=ident passes=1
  331.   center-mag=+0.02268278481078340/-0.001079531652657\
  332.   37/1.821185e+009/1/-127.5
  333.   params=12/-1.2/1/-12/-1.15/800 float=y maxiter=2500
  334.   inside=0 logmap=380 periodicity=10
  335.   colors=000bmiblhbkgajgaifaieahdagc`fc`eb`da`d``c__\
  336.   b__aZ_`Y__X__XYZWWZVVZUTYTRYSQYROXQMXPLXPKZQJ_QI`Q\
  337.   HaRGbRFcREeSDfSCgSChSBiTAjT9kT8mU7nU6oU5pV4qV3rV3s\
  338.   V5nR7iO8dLA_IBVFDQCEM9DOADQADRACTBCUBCWBBXCBZCB_CB\
  339.   aCAcDAdDAfD9gE9iE9jE8lF8mF8oF8pF9oGAnGBnHCmHDlHElI\
  340.   FkIGkJHjJIiJJiKKhKLgKMgLNfLOfMPeMQdMRdNScNScNRdMQe\
  341.   MPeMOfMOfMNgMMhMLhLKiLKiLJjLIkLHkLGlLGlLHkKHkKkr9h\
  342.   oCflFdiIafL_cOY`RVYUTVXRR_OObMLeKIhHFkFCnD9qA6t83w\
  343.   60yDGqKVjQicTafVViYOl_Hoa8taAqaCoaEmaGjaIhaKfaMcaO\
  344.   aaP_aRXaTVaVTaXQaZOa`MabJadHSt_aeFfhLjjRnmXpt`qqar\
  345.   obsmbskcticugduedvbew`fxZfxXgyVgzThzRhxRewRbvR`uRY\
  346.   tRWsRTqRRpROoRMnRJmRHlREjO8kQAkRClSElUGmVImWKnXMnZ\
  347.   On_Qo`SoaUpcWpdYqe_qfaqhcrierjgskismktnmtootpqpoom\
  348.   nnjmlglkdljakhZjgVieShdPhcMgaJf`GeaDdbAdcBcdBceBcf\
  349.   BcgCchCciCcjCckDclDcmDcnDcoEcpEcqEcrEcsCctEcuGcvIc\
  350.   wKcxMcyOczQczSczUczWczYcz
  351.   }
  352.  
  353. frm:MandelbrotMix4 {; Jim Muth
  354. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  355. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  356. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  357. z=k*((a*(z^b))+(d*(z^f)))+c,
  358. |z| < l
  359. }
  360.  
  361. END 20.0 PAR-FORMULA FILE==================================
  362.  
  363. Thanks for using Fractint, The Fractals and Fractint Discussion List
  364. Post Message:   fractint@lists.xmission.com
  365. Get Commands:   majordomo@lists.xmission.com "help"
  366. Administrator:  twegner@fractint.org
  367. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  368.  
  369.  
  370. -------------------------------------------------------------------------------
  371.  
  372. From: Michael Weitzel <weitzel@ldknet.org>
  373. Subject: Re: (fractint) Fractint Development: The Ljapunow Type
  374. Date: 01 Apr 2001 13:27:19 +0200
  375.  
  376. Am Sonntag, den 01. April 2001, um 00:44h schrieb Guy Marson:
  377.  
  378. > Does somebody know the Lyapunow-formula written for the Parser similar to
  379. > the build-in type, or a place (url or so) to find this formula?
  380.  
  381. I'm not an expert ... but ...
  382.  
  383. Ljapunow diagrams are based on simple population models (for yeast for
  384. example) or other oscillating systems. In the beginning (time t=0) of the
  385. experiment you start with x[t] = x[0] individuals.
  386.  
  387. The number x[t+1] of individuals in generation t+1 is proportional to
  388. the number x[t] in generation t (the generation before) and the food
  389. which is given by the environment (and/or was left over by former
  390. generations) and other environmental parameters - all together expressed
  391. through r:
  392.  
  393.     x[t+1] ~ x[t]
  394.         x[t+1] ~ r
  395.  
  396. Fractint uses the "logistic equation" to determine this number:
  397.  
  398.     x[t+1] = r * x[t] * (1 - x[t])
  399.  
  400. For the calculation of Ljapunow diagrams the parameter r ist changed
  401. periodically in a predefined way - to A or to B. The sequence of A's
  402. and B's defines the rules of the game: For example ABB results in
  403. ...BABBABBABBABBABBA... .
  404.  
  405. The screen shows an A-B-plane. If the sequence says, that r=B - you have
  406. to set r to the B-coordinate of your current pixel... if it says r=A the
  407. A-coordinate is used.
  408.  
  409. The formula is iterated a few hundred times ... so that the influence
  410. of the starting value x[0] decreases more and more. Then the calculation
  411. continues another few hundred/thousand times and while iterating the
  412. Ljapunow exponent lambda is calculated (see literature, characterizes
  413. the averange error-growth in the neighborhood of x[0]) using the
  414. simplification that ln(a*b*c) = ln(a)+ln(b)+ln(c) (which protects the
  415. floating point numbers from overflow):
  416.  
  417.                  1    | En |
  418.  lambda(x[0]) = --- ln|----|
  419.                  n    | E0 |
  420.  
  421.                                   | En |   | En   | | En-1 |     | E1 |
  422.  with total error amplification : |----| = |------|*|------|*...*|----|
  423.                                   | E0 |   | En-1 | | En-2 |     | E0 |
  424.  
  425.  | Ea   |                     d f(x[a-1])
  426.  |------| can be expressed as -----------
  427.  | Ea-1 |                       d x[a-1]
  428.  
  429.                      n                                 n
  430.                  1  ---   |d (r*x[i]*(1-x[i]))|    1  ---
  431.  lambda(x[0]) = --- \   ln|-------------------| = --- \   ln|r*(1-2*x[i])|
  432.                  n  /     |       d x[i]      |    n  /
  433.                     ---                               ---
  434.                     i=0                               i=0
  435.  
  436. If you use your "natural" screen coordinates (for ex.: x=0...1023, y=0..767)
  437. you probably won't see anything on your screen. You can see Fractint's corner
  438. parameters if you press [Tab].
  439. -- 
  440.    Michael                  LDKnet / LDK/LUG / Unix-AG
  441.      *Weitzel* /LinuX --- email: michael(at)ldknet.org
  442.  
  443. Thanks for using Fractint, The Fractals and Fractint Discussion List
  444. Post Message:   fractint@lists.xmission.com
  445. Get Commands:   majordomo@lists.xmission.com "help"
  446. Administrator:  twegner@fractint.org
  447. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  448.  
  449.  
  450. -------------------------------------------------------------------------------
  451.  
  452. From: Michael Weitzel <weitzel@ldknet.org>
  453. Subject: Re: (fractint) Fractint Development: The Ljapunow Type
  454. Date: 03 Apr 2001 12:47:55 +0200
  455.  
  456. Am Montag, den 02. April 2001, um 00:11h schrieb Gerald K. Dobiasovsky:
  457.  
  458. > > Does somebody know the Lyapunow-formula written for the Parser similar to
  459. > > the build-in type, or a place (url or so) to find this formula?
  460. [your frm + par files]
  461.  
  462. sorry ... probably a misunderstanding on my side. I thought he was
  463. asking for the algorithm of Fractint's Ljapunows. ;-)
  464.  
  465. ...but together with the description one probably better understands, what's
  466. going on in the formula-file ... sorry again ;*)
  467. -- 
  468.    Michael                  LDKnet / LDK/LUG / Unix-AG
  469.      *Weitzel* /LinuX --- email: michael(at)ldknet.org
  470.  
  471. Thanks for using Fractint, The Fractals and Fractint Discussion List
  472. Post Message:   fractint@lists.xmission.com
  473. Get Commands:   majordomo@lists.xmission.com "help"
  474. Administrator:  twegner@fractint.org
  475. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  476.  
  477.  
  478. -------------------------------------------------------------------------------
  479.  
  480. From: "Gerald K. Dobiasovsky" <gerald.dob@aon.at>
  481. Subject: Re: (fractint) Fractint Development: The Ljapunow Type
  482. Date: 03 Apr 2001 22:29:41 +0200
  483.  
  484.  
  485. Michael Weitzel wrote:
  486.  
  487.  
  488. > sorry ... probably a misunderstanding on my side. I thought he was
  489. > asking for the algorithm of Fractint's Ljapunows. ;-)
  490. > ...but together with the description one probably better understands, what's
  491. > going on in the formula-file ... sorry again ;*)
  492.  
  493. No reasons to apologize...
  494.  
  495. 1) Your explanation is a detailed and illuminating one.
  496. 2) Maybe I am wrong and he *was* asking for the algorithm?!
  497.  
  498. Greetings,
  499. Gerald
  500.  
  501.  
  502.  
  503. Thanks for using Fractint, The Fractals and Fractint Discussion List
  504. Post Message:   fractint@lists.xmission.com
  505. Get Commands:   majordomo@lists.xmission.com "help"
  506. Administrator:  twegner@fractint.org
  507. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  508.  
  509.  
  510. -------------------------------------------------------------------------------
  511.  
  512. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  513. Subject: Re: (fractint) Fractint Development: The Ljapunow Type
  514. Date: 03 Apr 2001 16:28:25 -0500
  515.  
  516. Michael Weitzel wrote:
  517. >
  518. > sorry ... probably a misunderstanding on my side. 
  519. > I thought he was asking for the algorithm of 
  520. > Fractint's Ljapunows.   ;-)
  521. >
  522.  
  523. I personally found your postings on the topic quite interesting, whether
  524. or not the original questions was for FRMs/PARs.  It is always nice to
  525. have an understanding of the details.  Thanks for sharing with all of us
  526. on the List.
  527.  
  528. Sincerely,
  529. P.N.L.
  530. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  531.  
  532. Thanks for using Fractint, The Fractals and Fractint Discussion List
  533. Post Message:   fractint@lists.xmission.com
  534. Get Commands:   majordomo@lists.xmission.com "help"
  535. Administrator:  twegner@fractint.org
  536. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  537.  
  538.  
  539. -------------------------------------------------------------------------------
  540.  
  541. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  542. Subject: (fractint) A Fractal Project Completed !!
  543. Date: 03 Apr 2001 16:55:14 -0500
  544.  
  545. Greetings,
  546.  
  547. Philip Northover, the fractal artist known for his "Fractal Alhambra"
  548. website at:
  549.  
  550.     http://pnorthov.future.easyspace.com/
  551.  
  552. has recently completed a very lengthy project.  Though Philip has five
  553. online galleries containing over a hundred images, he has also been
  554. working on his private project for approximately two years:
  555.  
  556.     "A Fractal Interpretation of the King James Version of the Bible"
  557.  
  558. He kept to a classical fractal style throughout, employing the primary
  559. colours, which he fealt conveyed the biblical simplicity which often
  560. hints at great depths.  Philip wanted an overall feeling of consistency,
  561. unity, order, and purpose to the work, while still reflecting the
  562. essence of each book within the Bible.
  563.  
  564. I hope everyone has an opportunity to visit his web site to view what
  565. definitely has been a considerable personal project for Philip.
  566.  
  567.  
  568. Sincerely,
  569. P.N.L.
  570. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  571.  
  572. Thanks for using Fractint, The Fractals and Fractint Discussion List
  573. Post Message:   fractint@lists.xmission.com
  574. Get Commands:   majordomo@lists.xmission.com "help"
  575. Administrator:  twegner@fractint.org
  576. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  577.  
  578.  
  579. -------------------------------------------------------------------------------
  580.  
  581. From: Guy Marson <guy.marson@mnhn.lu>
  582. Subject: Re: (fractint) Fractint Development: The Ljapunow Type
  583. Date: 04 Apr 2001 01:21:44 +0200
  584.  
  585. Hi,
  586.  
  587.  
  588. At 12:47 03/04/01 +0200, you wrote:
  589. >Am Montag, den 02. April 2001, um 00:11h schrieb Gerald K. Dobiasovsky:
  590. >
  591. >> > Does somebody know the Lyapunow-formula written for the Parser similar to
  592. >> > the build-in type, or a place (url or so) to find this formula?
  593. >[your frm + par files]
  594. >
  595. >sorry ... probably a misunderstanding on my side. I thought he was
  596. >asking for the algorithm of Fractint's Ljapunows. ;-)
  597. >
  598.  
  599. It's ok, not being a math, now I understand the Lyapunow-type mutch better!
  600. Having both, the formula and more explanations 
  601.  
  602.  
  603. Thanks to both of you!
  604.  
  605. >...but together with the description one probably better understands, what's
  606. >going on in the formula-file ... sorry again ;*)
  607.  
  608.  
  609. nix zu entschuldigen, das ist voll in Ordnung so! 
  610.  
  611.  
  612. >-- 
  613. >   Michael                  LDKnet / LDK/LUG / Unix-AG
  614. >     *Weitzel* /LinuX --- email: michael(at)ldknet.org
  615. >
  616.  
  617.  
  618. cheers,
  619.  
  620. Guy
  621.  
  622. Thanks for using Fractint, The Fractals and Fractint Discussion List
  623. Post Message:   fractint@lists.xmission.com
  624. Get Commands:   majordomo@lists.xmission.com "help"
  625. Administrator:  twegner@fractint.org
  626. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  627.  
  628.  
  629. -------------------------------------------------------------------------------
  630.  
  631. From: JimMuth@aol.com
  632. Subject: (fractint) C-FOTD  04-04-01  (A New Midget [6])
  633. Date: 03 Apr 2001 22:49:09 EDT
  634.  
  635.  
  636. Classic FOTD -- April 04, 2001 (Rating 6)
  637.  
  638. Fractal visionaries and enthusiasts:
  639.  
  640. I named today's not quite overwhelming fractal "A New Midget".  
  641. And it's true -- this particular midget has never before been 
  642. seen by the eyes of man, nor by the eyes of woman, who sometimes 
  643. can see more than man.
  644.  
  645. Of course, we always suspected that the midget existed.  We know 
  646. that an infinity of midgets exist, of which exactly zero 
  647. percent, or more precisely an infinitesimal percent, will ever 
  648. be seen.
  649.  
  650. That's one of the curious things about midgets -- an infinity of 
  651. them exist -- and regardless of how many we discover, the number 
  652. of undiscovered midgets is never reduced.  Take for example the 
  653. parent fractal of today's midget.  The default appearance is a 
  654. drab set of concentric circles, with a twisted midget near the 
  655. right edge of the screen.  A couple out-zooms will reveal that 
  656. the entire fractal appears as a roughly diamond-shaped island in 
  657. the middle of an infinite ocean.  The default midget is seen to 
  658. be a lake on an island.  This midget has some unusual things 
  659. happening in its East Valley area, and today's scene lies deep 
  660. in this East Valley area.
  661.  
  662. Undecided how to rate today's effort, I finally decided on a 
  663. slightly above average 6, making the image worth the effort of 
  664. downloading it from paul's web site at:
  665.  
  666.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  667.  
  668. Unfortunately, Scott's FOTD site will be down for a few days.
  669.  
  670. The fractal weather today was unexpectedly sunny and warm.  
  671. Until the middle of the afternoon, the weather experts were 
  672. forecasting that chilly clouds and rain would prevail all day.  
  673. This caused them to appear a little less than expert, though the 
  674. fractal cats had no complaints as they enjoyed the temperature 
  675. of 61F (16C).
  676.  
  677. And after another busy and confusing day, I will now enjoy an 
  678. hour or so of relaxation.  I'll return tomorrow around this same 
  679. time with another moderately glorious fractal and a few words 
  680. about the image.  Until then, take care, and wait with bated, 
  681. but not abated, breath.
  682.  
  683.  
  684. Jim Muth
  685. jamth@mindspring.com
  686.  
  687.  
  688. START 20.0 PAR-FORMULA FILE================================
  689.  
  690. A_New_Midget       { ; time=0:25:51.10--SF5 on a P200
  691.   reset=2001 type=formula formulafile=critical.frm
  692.   formulaname=MandelbrotMix4 function=recip passes=1
  693.   center-mag=+1.57276058003352300/+0.186020729751933\
  694.   60/9.061857e+012/1.0002/-154.909/-0.094
  695.   params=-1/-1.5/100/5/-0.93/0 float=y
  696.   maxiter=3000 inside=0 periodicity=10
  697.   colors=000td_sfbrheqjhplkonnnpqmrtjprhopenocmmallZ\
  698.   kjXjiUigShfQgdNfcLeaId`GcZEbYFcUGcRHcNHcKIdHJdDKdA\
  699.   Kd7LcAMbDNaGN`IO_LPZOQYRQYT_cbihlsmupipnfllchj`dgX\
  700.   _eUWcRSaOOZKJXHFVEBTB7R83TA5VC7XE8ZGA`ICbKDdMFfNGh\
  701.   PIjRKlTLnVNpXPrZQt`SuaTt_TtYTtWTtUTtSTsRTsPTsNTsLT\
  702.   sJTsIToDWk8Zh3akHdmLfpOirOkqQjqVjpVipVioUhoUhnUgnU\
  703.   gmTfmTflTelTeeXg__hUciOfjIjkCml6qm0tn3uk5uh8ufAucC\
  704.   uaFrZHoXJlUMiSOfQQcSS`UUYWWVYXS_VPaTMcRJeTJ`VKWXKR\
  705.   YKM_ONaSNcWOd_OfcPhgPikPZnUOqZEtcJjdOaeTSeYJfaAf`B\
  706.   g`Bg`Bg`Ch`Ch`Ch`Di_Di_Di_Ej_Ej_Ej_Fk_Fk_FkZJgYMcX\
  707.   P`XSXWVUVYQUaMUdJTgFSjCRm8Rp5Xf7aY9fOBkFDlEGmDInCL\
  708.   oBNpBQqASr9Vr8Xs7_t7au6dv5fw4ix3kx3ms8nnCnjHneLoaP\
  709.   oXUoTYpObpKfpFjqBoq6sq2wqAniIebQXWYOPeFIcLKbQMaVO`\
  710.   _QZeSYjUXoWWtYI`I5H35E37H68J99MCAOFBQICTLDVOEXRG_U\
  711.   HaXId_JfbKheLkhMmkNonPloQjpSgqTeqVcrW`sYZsZWt`UuaS\
  712.   ucPvdNweLwaMvrZPwYQv`UubX
  713.   }
  714.  
  715. frm:MandelbrotMix4 {; Jim Muth
  716. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  717. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  718. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  719. z=k*((a*(z^b))+(d*(z^f)))+c,
  720. |z| < l
  721. }
  722.  
  723. END 20.0 PAR-FORMULA FILE==================================
  724.  
  725. Thanks for using Fractint, The Fractals and Fractint Discussion List
  726. Post Message:   fractint@lists.xmission.com
  727. Get Commands:   majordomo@lists.xmission.com "help"
  728. Administrator:  twegner@fractint.org
  729. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  730.  
  731.  
  732. -------------------------------------------------------------------------------
  733.  
  734. From: Spatzy2325@aol.com
  735. Subject: Re: (fractint) A Fractal Project Completed !!
  736. Date: 03 Apr 2001 23:42:13 EDT
  737.  
  738. Good Evening,
  739.  
  740. I am quite confused about the project... are these fractals represent the 
  741. books of the Bible, or are the words themselves used in some way or form to 
  742. create the fractals? Please respond as soon as possible, thanks, God Bless
  743. Ryan
  744.  
  745. Thanks for using Fractint, The Fractals and Fractint Discussion List
  746. Post Message:   fractint@lists.xmission.com
  747. Get Commands:   majordomo@lists.xmission.com "help"
  748. Administrator:  twegner@fractint.org
  749. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  750.  
  751.  
  752. -------------------------------------------------------------------------------
  753.  
  754. From: "David Jones" <gnome@hawaii.rr.com>
  755. Subject: (fractint) [fractal-art] Some links to fractal sites
  756. Date: 03 Apr 2001 18:07:08 -1000
  757.  
  758. Found these at Netscape's Open Directory Project:
  759.  
  760. http://dmoz.org/Science/Math/Chaos_and_Fractals/
  761.  
  762. http://www.3dfractals.com/tetrapics/imageframe.htm
  763.  
  764. David
  765. gnome@hawaii.rr.com
  766.  
  767.  
  768. _______ ______ _____ ____ ___ __ _
  769. post:  send message to fractal-art@lists.fractalus.com
  770. unsub: send message to fractal-art-unsubscribe@lists.fractalus.com
  771. help:  send message to fractal-art-help@lists.fractalus.com
  772. admin: send message to fractal-art-owner@lists.fractalus.com
  773.  
  774.  
  775. Thanks for using Fractint, The Fractals and Fractint Discussion List
  776. Post Message:   fractint@lists.xmission.com
  777. Get Commands:   majordomo@lists.xmission.com "help"
  778. Administrator:  twegner@fractint.org
  779. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  780.  
  781.  
  782. -------------------------------------------------------------------------------
  783.  
  784. From: "David Jones" <gnome@hawaii.rr.com>
  785. Subject: (fractint) Some links to fractal sites
  786. Date: 03 Apr 2001 18:07:08 -1000
  787.  
  788. Found these at Netscape's Open Directory Project:
  789.  
  790. http://dmoz.org/Science/Math/Chaos_and_Fractals/
  791.  
  792. http://www.3dfractals.com/tetrapics/imageframe.htm
  793.  
  794. David
  795. gnome@hawaii.rr.com
  796.  
  797.  
  798. Thanks for using Fractint, The Fractals and Fractint Discussion List
  799. Post Message:   fractint@lists.xmission.com
  800. Get Commands:   majordomo@lists.xmission.com "help"
  801. Administrator:  twegner@fractint.org
  802. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  803.  
  804.  
  805. -------------------------------------------------------------------------------
  806.  
  807. From: Programmer Dude <cjsonnack@mmm.com>
  808. Subject: Re: (fractint) Fractint Development
  809. Date: 04 Apr 2001 10:58:32 -0500
  810.  
  811. No one has responded to this in a couple days, so I thought I'd take a
  812. shot at it...
  813.  
  814. Andrew Coppin wrote:
  815.  
  816. >> The memory limitations stem from two sources.  One is that Fractint is
  817. >> compiled in the medium memory model.  This means that memory usable for
  818. >> near data is limited to 64KB unless some form of swapping is done.
  819. >
  820. > So, you mean that FractInt can as such only use 64KB of memory?
  821.  
  822. Sort of.
  823.  
  824. FractInt was born as an MS-DOS program, and MS-DOS ran on Intel chips.
  825. Intel chips see memory as "segmented" rather than "flat" (as the Motorola
  826. chips (used in Apple machines) do).  Flat memory looks like one huge
  827. "address space".  For any memory location from 0000000 to umpteenzillion,
  828. the memory location just refers to the appropriate point, like milage
  829. along a road.
  830.  
  831. In segmented memory, a memory location consists of two numbers: a
  832. segment and an offset.  The segment is like a rolling window that jumps
  833. in, IIRC, 256-byte jumps: segment 0 starts at 0, segment 1 starts at 256,
  834. and so on.  And a segment is a 64-k "window".  The offset refers to any
  835. location within that 64-k window.
  836.  
  837. The Intel chips ran programs in an architecture that had four segments:
  838. a "Code" segment, a "Data" segment, a "Stack" segment and an "Extra"
  839. segment sometimes used as a second, extended Data segment).  Due to the
  840. nature of the C language (a primary development language of the day),
  841. the Stack and Data segments usually had to be identical.  You ended up
  842. with a 64-K window with your data growing from the bottom upwards and
  843. your stack growing from the top downwards.  The space in the middle was
  844. the "heap" and is where you got dynamically allocated memory from.
  845.  
  846. The "Memory Model" is what various configurations of the segments is
  847. called.  Remember the old .COM programs?  By definition, they always
  848. use the "Tiny" memory model.  All segments are identical, and your
  849. entire program--data and code--must fit in a single 64-K window.
  850.  
  851. The "Medium" memory model, IIRC, has the stack and data sharing one
  852. 64-K segment, while the code lives in its own 64-K segment.
  853.  
  854. This doesn't mean the program can't access data outside these segments.
  855. It can, but outside memory is "far" in the language of Intel memory
  856. models (opposed to the "near" memory in the data/stack segment).  Because
  857. the data/stack segment is "framed" by the segment pointers of the Intel
  858. architecture, you only need 16 bits (64-K) to address it.  But since "far"
  859. memory is 'somewhere in address space' you need a full address which was,
  860. at the time, 24 bits usually expressed as two 16-bit values with 8 bits of
  861. overlap.  Added together, they form a 24-bit address.
  862.  
  863. The bottom line is that, in your program, you have a mix of "near" data
  864. and "far" data, and they require different variable types to refer to.
  865.  
  866. > What's involved in such a change? Is it just a case of going through the
  867. > program and changing half a million lines of code on a find-and-replace
  868. > basis, or does it require an actaul redesign of the code?
  869.  
  870. I can't speak for the FractInt developers, and I'm not familiar with the
  871. code.  I can guess it lies between those two ideas.  It's not a simple
  872. matter of S&R; I'd guess you want to examine every place you need to change
  873. to see if the change breaks anything.  But it probably does NOT require a
  874. complete redesign.
  875.  
  876. Ideally you'd like a compiler that let you treat memory as flat and make
  877. all your pointers be the same type.  I have no idea if such exists for
  878. the Intel platforms.
  879.  
  880. But then *I* think what you *really* want is to get away from MS-DOS.
  881.  
  882. > I'd really prefer FractInt to remain a DOS program, or perhaps to have
  883. > a DOS *and* a Windows version. (...and a Linux/UNIX version, like they
  884. > do with POV-Ray. Hey... isn't that a Stone Soup project too?)
  885.  
  886. Don't *think* POV-Ray (great program, BTW) is Stone Soup.  There's actually
  887. a great concept there.  POV-Ray renders to a disk file normally.  The
  888. Windows version just happens to have the extra treat of showing you the
  889. image as it's rendered.  But the heart of POV-Ray is a command line tool
  890. for rendering 3D scenes into an image file of some type.
  891.  
  892. >> The other problem is that we do indeed use extended and/or expanded
  893. >> memory for options other than just disk video.  Saving the on screen
  894. >> image when switching to a menu comes to mind.
  895. > If you had more memory to play with, could this be avoided? (I understand
  896. > that disk video can use insane quantities of RAM, but keeping a copy of
  897. > the video buffer for a normal screen shouldn't be too bad...)
  898.  
  899. But what I imagine they have to save is the fractal image while the menu
  900. screens are displayed.  That could be considerable.
  901.  
  902. Anyway, hope this little data dump helped rather than confused...
  903.  
  904. -- 
  905. |_ CJSonnack <Chris@Sonnack.com> _____________| How's my programming? |
  906. |_ http://www.Sonnack.com/ ___________________| Call: 1-800-DEV-NULL  |
  907. |_____________________________________________|_______________________|
  908.  
  909. Thanks for using Fractint, The Fractals and Fractint Discussion List
  910. Post Message:   fractint@lists.xmission.com
  911. Get Commands:   majordomo@lists.xmission.com "help"
  912. Administrator:  twegner@fractint.org
  913. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  914.  
  915.  
  916. -------------------------------------------------------------------------------
  917.  
  918. From: "Zorba the Hutt" <zorbathut@uswest.net>
  919. Subject: Re: (fractint) Fractint Development
  920. Date: 04 Apr 2001 17:41:53 -0400
  921.  
  922.  
  923. >
  924. > Ideally you'd like a compiler that let you treat memory as flat and make
  925. > all your pointers be the same type.  I have no idea if such exists for
  926. > the Intel platforms.
  927. >
  928. > But then *I* think what you *really* want is to get away from MS-DOS.
  929. >
  930.  
  931. Any 32-bit compiler does this - basically, anything that compiles native
  932. Win95 programs or higher. There *is* a way to use flat memory on MS-DOS, as
  933. I remember - the DOS4GW extension, that everyone who's played games in the
  934. late DOS era will recognize. It was basically a protected-mode flat memory
  935. manager, and you needed a 32-bit compiler to use it, and by golly, it was
  936. worth it.
  937.  
  938. At least, I think that's what it did. Correct me if I'm wrong ^^;;
  939.  
  940. -Zorba
  941.  
  942.  
  943. Thanks for using Fractint, The Fractals and Fractint Discussion List
  944. Post Message:   fractint@lists.xmission.com
  945. Get Commands:   majordomo@lists.xmission.com "help"
  946. Administrator:  twegner@fractint.org
  947. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  948.  
  949.  
  950. -------------------------------------------------------------------------------
  951.  
  952. From: "Multiple Bogeys" <neo_1061@hotmail.com>
  953. Subject: Re: (fractint) FOTD 03-04-01 (Many Happy Returns [5])
  954. Date: 05 Apr 2001 01:24:33 -0400
  955.  
  956.  
  957. ------=_NextPart_001_0000_01C0BD6F.2B90BFE0
  958. Content-Type: text/plain; charset="iso-8859-1"
  959. Content-Transfer-Encoding: quoted-printable
  960.  
  961. > Today, the FOTD returns after its 1-1/2 week hiatus, with the
  962. > first fractal I've calculated in that time.  Of course, this is
  963. > the reason I have named it "Many Happy Returns.  The average
  964. > rating of 5 reflects my opinion of my first fractal effort in
  965. > 11 days.
  966.               ^
  967. Error: Unterminated string constant. :-)
  968.  
  969. > Unfortunately, I still lack the time for the long philosophical
  970. > discussions that have made the FOTD what it is  :-/  but as
  971. > things gradually return to normal in the near future, the FOTD
  972. > discussions will become longer and more complex, until hopefully
  973. > we finally solve the mystery of the universe.  :-\
  974.  
  975. Hate to tell you this, but it's already been done.
  976. http://www.hep.upenn.edu/~max/toe.html<br clear=3Dall><hr>Get Your Privat=
  977. e, Free E-mail from MSN Hotmail at <a href=3D"http://www.hotmail.com">htt=
  978. p://www.hotmail.com</a>.<br></p>
  979.  
  980. ------=_NextPart_001_0000_01C0BD6F.2B90BFE0
  981. Content-Type: text/html; charset="iso-8859-1"
  982. Content-Transfer-Encoding: quoted-printable
  983.  
  984. <HTML><BODY STYLE=3D"font:10pt verdana; border:none;"><DIV>> Today, th=
  985. e FOTD returns after its 1-1/2 week hiatus, with the<BR>> first fracta=
  986. l I've calculated in that time.  Of course, this is<BR>> the reas=
  987. on I have named it "Many Happy Returns.  The average<BR>> rating =
  988. of 5 reflects my opinion of my first fractal effort in<BR>> 11 days.<B=
  989. R>            =
  990. ;  ^</DIV> <DIV>Error: Unterminated string constant. :-)</DIV> <DIV>=
  991. <BR>> Unfortunately, I still lack the time for the long philosophical<=
  992. BR>> discussions that have made the FOTD what it is  :-/  bu=
  993. t as<BR>> things gradually return to normal in the near future, the FO=
  994. TD<BR>> discussions will become longer and more complex, until hopeful=
  995. ly<BR>> we finally solve the mystery of the universe.  :-\<BR></D=
  996. IV> <DIV>Hate to tell you this, but it's already been done.</DIV> <DIV><A=
  997.  href=3D"http://www.hep.upenn.edu/~max/toe.html">http://www.hep.upenn.edu=
  998. /~max/toe.html</A></DIV> <DIV><BR> </DIV></BODY></HTML><DIV><BR><br =
  999. clear=3Dall><hr>Get Your Private, Free E-mail from MSN Hotmail at <a href=
  1000. =3D"http://www.hotmail.com">http://www.hotmail.com</a>.<br></p></DIV>
  1001.  
  1002. ------=_NextPart_001_0000_01C0BD6F.2B90BFE0--
  1003.  
  1004. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1005. Post Message:   fractint@lists.xmission.com
  1006. Get Commands:   majordomo@lists.xmission.com "help"
  1007. Administrator:  twegner@fractint.org
  1008. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1009.  
  1010.  
  1011. -------------------------------------------------------------------------------
  1012.  
  1013. From: "Multiple Bogeys" <neo_1061@hotmail.com>
  1014. Subject: Re: (fractint) Fractint Development
  1015. Date: 05 Apr 2001 01:37:30 -0400
  1016.  
  1017.  
  1018. ------=_NextPart_001_0001_01C0BD70.FB2274A0
  1019. Content-Type: text/plain; charset="iso-8859-1"
  1020. Content-Transfer-Encoding: quoted-printable
  1021.  
  1022. You can also use djgpp and cwsdpmi to get 32-bit flat memory programs for=
  1023.  MS-DOS. If you use Allegro as an API to mouse/low-level keyboard/graphic=
  1024. s/etc. stuff, as an added bonus it is easily ported to Windows and Linux,=
  1025.  since Allegro has been ported to these and gcc (of which djgpp is a port=
  1026. ) exists for Linux and has at least 2 Windows ports.<br clear=3Dall><hr>G=
  1027. et Your Private, Free E-mail from MSN Hotmail at <a href=3D"http://www.ho=
  1028. tmail.com">http://www.hotmail.com</a>.<br></p>
  1029.  
  1030. ------=_NextPart_001_0001_01C0BD70.FB2274A0
  1031. Content-Type: text/html; charset="iso-8859-1"
  1032. Content-Transfer-Encoding: quoted-printable
  1033.  
  1034. <HTML><BODY STYLE=3D"font:10pt verdana; border:none;"><DIV>You can also u=
  1035. se djgpp and cwsdpmi to get 32-bit flat memory programs for MS-DOS. If yo=
  1036. u use Allegro as an API to mouse/low-level keyboard/graphics/etc. stuff, =
  1037. as an added bonus it is easily ported to Windows and Linux, since Allegro=
  1038.  has been ported to these and gcc (of which djgpp is a port) exists for L=
  1039. inux and has at least 2 Windows ports.</DIV></BODY></HTML><DIV><BR><br cl=
  1040. ear=3Dall><hr>Get Your Private, Free E-mail from MSN Hotmail at <a href=3D=
  1041. "http://www.hotmail.com">http://www.hotmail.com</a>.<br></p></DIV>
  1042.  
  1043. ------=_NextPart_001_0001_01C0BD70.FB2274A0--
  1044.  
  1045. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1046. Post Message:   fractint@lists.xmission.com
  1047. Get Commands:   majordomo@lists.xmission.com "help"
  1048. Administrator:  twegner@fractint.org
  1049. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1050.  
  1051.  
  1052. -------------------------------------------------------------------------------
  1053.  
  1054. From: JimMuth@aol.com
  1055. Subject: (fractint) Re: FOTD 03-04-01 (Many Happy Returns [5])
  1056. Date: 05 Apr 2001 07:25:18 EDT
  1057.  
  1058. I wrote:
  1059.  
  1060. >>          <snip>       .....the FOTD discussions will become 
  1061. >>longer and more complex, until hopefully we finally solve the 
  1062. >>mystery of the universe.  :-\
  1063.  
  1064. Multiple Bogeys replied:
  1065.  
  1066. >Hate to tell you this, but it's already been done.
  1067.  
  1068. Aw shucks, I missed it!   ;-(
  1069.  
  1070. FOTD in one hour.
  1071.  
  1072. Jim M.
  1073.  
  1074. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1075. Post Message:   fractint@lists.xmission.com
  1076. Get Commands:   majordomo@lists.xmission.com "help"
  1077. Administrator:  twegner@fractint.org
  1078. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1079.  
  1080.  
  1081. -------------------------------------------------------------------------------
  1082.  
  1083. From: Jim Muth <jamth@mindspring.com>
  1084. Subject: (fractint) C-FOTD  05-04-01  (Specular Reflection [6])
  1085. Date: 05 Apr 2001 08:31:11 -0400 (EDT)
  1086.  
  1087.  
  1088. Classic FOTD -- April 05, 2001 (Rating 6)
  1089.  
  1090. Fractal visionaries and enthusiasts:
  1091.  
  1092. Once again, due to unavoidable things that had to be done, the 
  1093. FOTD is late.  This will continue to happen occasionally until 
  1094. things are totally back into the familiar routine here at the 
  1095. new Fractal Central auxiliary.
  1096.  
  1097. Despite the rush, I managed to find a fractal midget worthy of a 
  1098. rating of 6.  I named the picture "Specular Reflection" when I 
  1099. had the impression of a brilliant light reflecting from a 
  1100. metallic surface around the edges of the midget.
  1101.  
  1102. The formula behind the image is another of my whimsical ones -- 
  1103. -(Z^(-1.25))+Z^(1.25)+(1/C).  The 6-1/2 minute render time of 
  1104. the parameter file is just slow enough to make a download of the 
  1105. GIF image worth the effort.  That image will soon be available 
  1106. on Paul's web site at:
  1107.  
  1108.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  1109.  
  1110. Scott once again has his site up and running.  The GIF image 
  1111. will also soon be available there at:
  1112.  
  1113.           <http://home.swbell.net/sdboyd56/fotd/>
  1114.  
  1115. The fractal weather today was sunny and mild, with a temperature 
  1116. of 59F (15C), which the fractal cats found ideal.  They spent 
  1117. nearly the entire afternoon sunning themselves in the yard and 
  1118. thinking of what trouble to get into.
  1119.  
  1120. I lack the time today to reveal the one true mystery of the 
  1121. universe, but I must warn about all those false mysteries of the 
  1122. universe out there.  Don't be deceived by these imitations, wait 
  1123. for the real thing to be revealed.  ;-)
  1124.  
  1125. Until the real thing is revealed, and even after the revelation, 
  1126. I'll continue with the 4-year-old FOTD, which has no end in 
  1127. sight.  The next one will appear in about 15 hours.  I'll see 
  1128. you then.
  1129.  
  1130.  
  1131. Jim Muth
  1132. jamth@mindspring.com
  1133.  
  1134.  
  1135. START 20.0 PAR-FORMULA FILE================================
  1136.  
  1137. SpecularReflection { ; time=0:06:30.52--SF5 on a P200
  1138.   reset=2001 type=formula formulafile=critical.frm
  1139.   formulaname=MandelbrotMix4 function=recip passes=1
  1140.   center-mag=+0.466396676467665/+1.55164254988776/1.\
  1141.   393514e+012/1/-50.009/0.012 params=-1/-1.25/1/1.25\
  1142.   /0/0 float=y maxiter=1400 inside=0
  1143.   logmap=125 periodicity=10
  1144.   colors=000B8ZB7`C6cD5fE3iF3lG2oH1pE0oC2mB3jA5f87c7\
  1145.   8_6AW5BT9DUCHXHKYKN`RRaYYdddfiiinnnssswwwzzzzzzzzz\
  1146.   tttlllddiYYhRRdKKcEE`98ZE3XK1WR5TY9QdDPlIMtNKzTIzY\
  1147.   HzZGz`Ez`EzaDzaCzcCzcBzdAzdAzf9zf9zhAyiAtiAokAnlAk\
  1148.   lAhnAdoBaoB`qBYsBWsBTtBQuBPuBToDWiEYcG`YHcTIfPJiJM\
  1149.   lENoAPs6Qu2Ry0T1d03`17X39U5CQ7EM9IJBMGEPCHTAJW7MZ3\
  1150.   Pa2RotPosNnqMnoKnoJlnIllH1oR0oR0oQ0oQ0oP0oP0oN0oN0\
  1151.   oN0nM0nK0lK0lJ1lI2lI3kI3kH5iH6iG8iE9hEAhDBfDCfCEfB\
  1152.   GdBHdAIcAKc9Mc8Na8Pa7Q`7T`6U`5WZ5XZ3YY3`Y3aY2cX2dX\
  1153.   10U60U50U51U52U53U53U55U56U57U38U38U39U3AU3BU3CU3D\
  1154.   U3EU3GU3HU3IU3IU3JU3KU3MU3NU2PU2QU2RU2TU2UU2UU2WU2\
  1155.   XU1YU1ZU1`U1aU1cU1dW1fX1j`NqZInYDhYUhZck`miawiczid\
  1156.   sifnihihidhk`hlXhnThoPhqKfsHftDfuAfw7fy39z0Gz0Mz0T\
  1157.   z0Zz0RzPTzNTzNTzMTzMUzKUzKUzJUzJWzIWzIWzHWzHXzHXzG\
  1158.   XzGXzEYzEYzDYzDYzCZzCZzBZzBZzBZzA`zA`z9`z9`z8az8az\
  1159.   7az7az6cz6cz6cz5cz5dz3dz3
  1160.   }
  1161.  
  1162. frm:MandelbrotMix4 {; Jim Muth
  1163. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  1164. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  1165. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  1166. z=k*((a*(z^b))+(d*(z^f)))+c,
  1167. |z| < l
  1168. }
  1169.  
  1170. END 20.0 PAR-FORMULA FILE==================================
  1171.  
  1172.  
  1173. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1174. Post Message:   fractint@lists.xmission.com
  1175. Get Commands:   majordomo@lists.xmission.com "help"
  1176. Administrator:  twegner@fractint.org
  1177. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1178.  
  1179.  
  1180. -------------------------------------------------------------------------------
  1181.  
  1182. From: Jim Muth <jamth@mindspring.com>
  1183. Subject: (fractint) C-FOTD  06-04-01  (Rainy Evening [6])
  1184. Date: 05 Apr 2001 20:29:11 -0400 (EDT)
  1185.  
  1186.  
  1187. Classic FOTD -- April 06, 2001 (Rating 6)
  1188.  
  1189. Fractal visionaries and enthusiasts:
  1190.  
  1191. Things were really hopping today here at Fractal Central II.  My 
  1192. efficiency was at its maximum however, and I finished the day's 
  1193. jobs in near record time.  This burst of efficiency gave me more 
  1194. time than expected to search the world of numbers for a fractal 
  1195. worthy of being christened FOTD for April 6.  The world I chose 
  1196. to search is the one created by the whimsical formula 
  1197. 0.3(Z^2)-7.5(Z^(-0.1))+(1/C).  I was not disappointed with what 
  1198. I found there.
  1199.  
  1200. Today's fractal is named "Rainy Evening", a name that was 
  1201. inspired by the cusps surrounding the midget, which remind me of 
  1202. the pattern seen around street lights when viewed in the evening 
  1203. through water droplets on one's eyeglasses.
  1204.  
  1205. After some indecision, I rated the picture, which is just 
  1206. slightly above average, at a 6.  A year or two ago I might have 
  1207. rated it a 7 or 8, but my opinion of what constitutes an 
  1208. 'average' FOTD image seems to be growing ever more strict, and 
  1209. if the present trend continues, I'll have a hard time producing 
  1210. even an average FOTD.
  1211.  
  1212. The parent fractal of today's image is a grossly mis-shapen 
  1213. Mandeloid, so twisted and torn that it is barely recognizable.  
  1214. At the southwest corner of the figure lies a Mandel-bud with a 
  1215. filament that extends in a disjointed manner into the Seahorse 
  1216. Valley area of a satellite midget.  Since filaments usually join 
  1217. midgets in the East Valley area, this unusual junction appeared 
  1218. a likely place to start the day's search.  The result speaks for 
  1219. itself, figuratively speaking of course.
  1220.  
  1221. The result of all this effort may be seen by running the 
  1222. attached parameter file and waiting 5 minutes, or by giving Paul 
  1223. and Scott a chance to post the GIF file of the image to their 
  1224. web sites, and downloading it from there.
  1225.  
  1226. The URL of Paul's web site is:
  1227.  
  1228.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  1229.  
  1230. And Scott's is:
  1231.  
  1232.           <http://home.swbell.net/sdboyd56/fotd/>
  1233.  
  1234. The weather today turned out to be the finest of the young 
  1235. Spring season, with bright sun, light winds, and a temperature 
  1236. of 64F (18C), which kept the fractal cats outdoors for several 
  1237. happy hours.
  1238.  
  1239. The fine weather also stirred my philosophical muse, once again 
  1240. raising unanswerable questions about the nature of reality.  
  1241. Every time I discuss this tired, worn-out, but ever-fascinating 
  1242. topic I seem to get into trouble.  So stay in touch.  I might be 
  1243. in more trouble in a few days' time.
  1244.  
  1245. But for now it's time to shutter down the fractal shoppe and 
  1246. call it an evening. . . . OK, so it's an evening!  Until next 
  1247. time, take care, and the more one wonders about what's real, the 
  1248. less one knows for sure.
  1249.  
  1250.  
  1251. Jim Muth
  1252. jamth@mindspring.com
  1253.  
  1254.  
  1255. START 20.0 PAR-FORMULA FILE================================
  1256.  
  1257. Rainy_Evening      { ; time=0:05:15.04--SF5 on a P200
  1258.   reset=2001 type=formula formulafile=critical.frm
  1259.   formulaname=MandelbrotMix4 function=recip passes=1
  1260.   center-mag=+0.12191239695861750/-0.037765464265300\
  1261.   23/3.704671e+008/1/30 params=1/2/-25/-0.1/-0.7/0
  1262.   float=y maxiter=1200 inside=0
  1263.   logmap=91 periodicity=10
  1264.   colors=000000G1AJ1JQ1SV3a`3je3ql3zxIpzXdvYllYr`_xQ\
  1265.   _zF`z4`z6Vz7Pz9JxADrA9mDAoFApICrJCsMDuODvQFxSFyQDv\
  1266.   QCsQApPAoP9lP7iO6fO6dO4aM3_M1XM1VL9YLF_LL`LScLYdJc\
  1267.   fJjiJpjJvlJzm0Tz0Pz3Mz9IzGFzOAxT7v`4sg0pm0ou0lz0iz\
  1268.   0g0zT0zI9z77v66s66o64l44g43d41a31Y30V30Q10O10L10L0\
  1269.   0J00J0P66P9CQCGQFMQIQSLXSO`SQdTTjTXoT_uVayVdzVgzVj\
  1270.   z_lzamzdmvgopjpjmpdpr_ssTvsOyuIzvCzv6zx0zy0zy0zz0x\
  1271.   z0pz4iz9`zFTzJMzOFzS7zX6z`4yd4si3lm1fr1_v0Tz0Mz0Gz\
  1272.   FYpVmYizFfzGczG`zGYzGVzGSzGPzIMzIJzIGzIDzICzIFzGIv\
  1273.   GLsGOoGQlGTgGXdG_`GaYGdTGgQGjMGmJGpFGrCGoAJm9Mj7Pi\
  1274.   6Sf4Td3Xa1_`0aY0dX0fV1cT4aS7`SA_QDYPGVOJTOLSMOQLQP\
  1275.   JTMJXLI_JGaIFdGFfF4pP0z_0zi0zg0zf4zdAzcFzcLzaQz`Xz\
  1276.   _azYfzYczX`zXYzXVzXSzXPzVMzVJzVGzVDzVAzVDzSGzQJzOM\
  1277.   zMPzJSzIVzFYzD`zCcz9fz7iz4lz3oz0rz0uz0czXfzOizGlz7\
  1278.   oz0lz0jz0iz0gz0fz0dz0cz0az0`z0_z0Yz0Xz0zz0yz0vz0sz\
  1279.   0pz0mz0iz0dz0az0Yz0GzADz4
  1280.   }
  1281.  
  1282. frm:MandelbrotMix4 {; Jim Muth
  1283. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  1284. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  1285. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  1286. z=k*((a*(z^b))+(d*(z^f)))+c,
  1287. |z| < l
  1288. }
  1289.  
  1290. END 20.0 PAR-FORMULA FILE==================================
  1291.  
  1292.  
  1293. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1294. Post Message:   fractint@lists.xmission.com
  1295. Get Commands:   majordomo@lists.xmission.com "help"
  1296. Administrator:  twegner@fractint.org
  1297. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1298.  
  1299.  
  1300. -------------------------------------------------------------------------------
  1301.  
  1302. From: "Multiple Bogeys" <neo_1061@hotmail.com>
  1303. Subject: (fractint) Oh no! Something is *very* wrong with the FOTD!
  1304. Date: 05 Apr 2001 22:43:55 -0400
  1305.  
  1306.  
  1307. ------=_NextPart_001_0001_01C0BE21.E5AD1E20
  1308. Content-Type: text/plain; charset="iso-8859-1"
  1309. Content-Transfer-Encoding: quoted-printable
  1310.  
  1311. ...the last four have all been grossly underrated. ;-) Keep up the good w=
  1312. ork!<br clear=3Dall><hr>Get Your Private, Free E-mail from MSN Hotmail at=
  1313.  <a href=3D"http://www.hotmail.com">http://www.hotmail.com</a>.<br></p>
  1314.  
  1315. ------=_NextPart_001_0001_01C0BE21.E5AD1E20
  1316. Content-Type: text/html; charset="iso-8859-1"
  1317. Content-Transfer-Encoding: quoted-printable
  1318.  
  1319. <HTML><BODY STYLE=3D"font:10pt verdana; border:none;"><DIV>...the last fo=
  1320. ur have all been grossly underrated. ;-) Keep up the good work!</DIV></BO=
  1321. DY></HTML><DIV><BR><br clear=3Dall><hr>Get Your Private, Free E-mail from=
  1322.  MSN Hotmail at <a href=3D"http://www.hotmail.com">http://www.hotmail.com=
  1323. </a>.<br></p></DIV>
  1324.  
  1325. ------=_NextPart_001_0001_01C0BE21.E5AD1E20--
  1326.  
  1327. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1328. Post Message:   fractint@lists.xmission.com
  1329. Get Commands:   majordomo@lists.xmission.com "help"
  1330. Administrator:  twegner@fractint.org
  1331. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1332.  
  1333.  
  1334. -------------------------------------------------------------------------------
  1335.  
  1336. From: Lee Skinner <LeeHSkinner@compuserve.com>
  1337. Subject: (fractint) C-FOTD  06-04-01  (Rainy Evening [6])
  1338. Date: 06 Apr 2001 10:07:07 -0500
  1339.  
  1340. Jim Muth wrote:
  1341.  
  1342. >> At the southwest corner of the figure lies a Mandel-bud with a filamen=
  1343. t
  1344. that extends in a disjointed manner into the Seahorse Valley area of a
  1345. satellite midget.  Since filaments usually join midgets in the East Valle=
  1346. y
  1347. area, this unusual junction ... <<
  1348.  
  1349. Very unusual indeed!!!   I don't think I've ever seen such a junction!
  1350.  
  1351. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1352. Post Message:   fractint@lists.xmission.com
  1353. Get Commands:   majordomo@lists.xmission.com "help"
  1354. Administrator:  twegner@fractint.org
  1355. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1356.  
  1357.  
  1358. -------------------------------------------------------------------------------
  1359.  
  1360. From: JimMuth@aol.com
  1361. Subject: (fractint) C-FOTD  07-04-01  {Fractal Dimples [6])
  1362. Date: 06 Apr 2001 22:49:09 EDT
  1363.  
  1364.  
  1365. Classic FOTD -- April 07, 2001 (Rating 6)
  1366.  
  1367. Fractal visionaries and enthusiasts:
  1368.  
  1369. Another unexpectedly busy day kept the fractals at bay, but I 
  1370. still managed to scrounge up today's slightly striking image.  I 
  1371. first found it, then went off to do other things while the 
  1372. image rendered.  When I returned and saw the screen, I thought 
  1373. of dimples.  The name "Fractal Dimples" came naturally.
  1374.  
  1375. The image is yet another 6-rated one found in haste.  
  1376. Unfortunately, the haste vanishes when the parameter file starts 
  1377. running, since this one takes over 1-1/2 hours to render.
  1378.  
  1379. The formula that drew the image, 0.5(Z^2)+Z^(-2)+(1/C), is once 
  1380. again one that I pecked out at random.  Since the parameter file 
  1381. is quite slow, my advice is to give Paul and Scott an hour or so 
  1382. to render and post the GIF image to their Web sites, and 
  1383. download it from there.  The URL of Paul's site is:
  1384.  
  1385.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  1386.  
  1387. Scott's site is at:
  1388.  
  1389.           <http://home.swbell.net/sdboyd56/fotd/>
  1390.  
  1391. The fractal weather today was mostly cloudy with light rain and 
  1392. a temperature of 55F (13C).  The cats disapproved vigorously by 
  1393. staying indoors and sulking most of the afternoon.
  1394.  
  1395. There was no time for philosophy today.  Perhaps it will appear 
  1396. tomorrow.  But even if the philosophy is absent, a new and 
  1397. unique fractal will appear in the next FOTD.  Until then, take 
  1398. care, and wait until you see that fractal!
  1399.  
  1400.  
  1401. Jim Muth
  1402. jamth@mindspring.com
  1403.  
  1404.  
  1405. START 20.0 PAR-FORMULA FILE================================
  1406.  
  1407. Fractal_Dimples    { ; time=1:33:02.89--SF5 on a P200
  1408.   reset=2001 type=formula formulafile=critical.frm
  1409.   formulaname=MandelbrotMix4 function=recip passes=1
  1410.   center-mag=-13.91207242091377000/+18.4986369015475\
  1411.   7000/11315.38/1/165 params=0.5/2/1/-2/0/0 float=y
  1412.   maxiter=25000 inside=0 logmap=420 periodicity=0
  1413.   colors=000e8me7me7mf7nf7nf6nf6of6of6og4nf5of6of7of\
  1414.   8of9ofAofBofCoeDpeEpeFpeGpeHpeIpeJpeKpdLqdMqdNqdOq\
  1415.   dPqdQqdRqdSqcTrcUrcVrcWrcXrcYrcZrc_rb`sbasbbsbcsbd\
  1416.   sbesbfsbgsahtaitajtaktaltamtantaou`pv`qv`rv`sv`tw`\
  1417.   uw`vw`wxayy`xz`wz`wz_vz_uy_uxZtwZsuZssYrqYqoYqlXpk\
  1418.   XpjXoiWniWnhWmgVlfVleVkdUjcUjcUibThaTh`Tg_TgZSfYSe\
  1419.   XSeXRdWRcVRcUQbTQaSQaRP`RP_QP_POZOOZNOYMNXLNXKNWKM\
  1420.   VJMVIMUHLTGLTFLSELSEKUFJVFIXFHYFGZFF`FFaFEbFDdFCeF\
  1421.   BfGAhG9iG9jG8lG7mG6nG5pG4qG3sF4rG5qG6pG7oG7nG8mG9l\
  1422.   GAkGAjGBiGChGDgGDfGEeGFdGGcGHbGHaGI`GJ_GKZGKYGLXGM\
  1423.   WGNUGNSGQQGSOGUNGUMGULGUKJUHIUDIU6IU3HU3HU3HU3HU3G\
  1424.   U3GU3GU3GU3FU3FU3FU3FU3EU3EU3EU3EV3DW3DX3DY3DZ3C_3\
  1425.   C`3Ca3Cb3Bc3Bd3Be3Bf3Ag3Ah3Ai3Aj59k59l59m37n48o59p\
  1426.   5Aq6Br5Cs5Ct6Du6Ev7Fw8Gx8Hy9HzDIzEJzFKzFLzGMzGMzHN\
  1427.   zIOzJPzKQzKRzLRzMSzMTzNUzNVzOWzPWzPXzQYzQZzR_zT`zV\
  1428.   azXbzZcz`ezbfzdgzfhzhizjj
  1429.   }
  1430.  
  1431. frm:MandelbrotMix4 {; Jim Muth
  1432. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  1433. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  1434. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  1435. z=k*((a*(z^b))+(d*(z^f)))+c,
  1436. |z| < l
  1437. }
  1438.  
  1439. END 20.0 PAR-FORMULA FILE==================================
  1440.  
  1441. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1442. Post Message:   fractint@lists.xmission.com
  1443. Get Commands:   majordomo@lists.xmission.com "help"
  1444. Administrator:  twegner@fractint.org
  1445. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1446.  
  1447.  
  1448. -------------------------------------------------------------------------------
  1449.  
  1450. From: jerome schatten <romers@home.com>
  1451. Subject: Re: (fractint) C-FOTD  07-04-01  {Fractal Dimples [6])
  1452. Date: 07 Apr 2001 23:20:01 -0700
  1453.  
  1454. JimMuth@aol.com wrote:
  1455.  
  1456. [...]
  1457. .  When I returned and saw the screen, I thought
  1458. > of dimples.  The name "Fractal Dimples" came naturally.
  1459.  
  1460. A beauty... but perhaps "Fractal Pimples" ?
  1461.  
  1462. jerome
  1463.  
  1464. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1465. Post Message:   fractint@lists.xmission.com
  1466. Get Commands:   majordomo@lists.xmission.com "help"
  1467. Administrator:  twegner@fractint.org
  1468. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1469.  
  1470.  
  1471. -------------------------------------------------------------------------------
  1472.  
  1473. From: JimMuth@aol.com
  1474. Subject: (fractint) C-FOTD  08-04-01  (A Midget Eruption [6])
  1475. Date: 08 Apr 2001 07:55:48 EDT
  1476.  
  1477.  
  1478. Classic FOTD -- April 08, 2001 (Rating 6)
  1479.  
  1480. Fractal visionaries and enthusiasts:
  1481.  
  1482. Yes, yes, I realize that the FOTD is once again late.  It's late 
  1483. because I spent most of my spare time today organizing the new 
  1484. Fractal Central auxiliary HQ, leaving me little time for fun 
  1485. with fractals.  But by entering values at random and searching 
  1486. aimlessly, I managed to find a fractal worthy of being declared 
  1487. today's FOTD.
  1488.  
  1489. I named the fractal image "A Midget Eruption".  The reason is 
  1490. most likely that I was impressed by the eruption of unusual 
  1491. features in the elements surrounding the ever-present midget at 
  1492. the center.
  1493.  
  1494. The overall pattern resembles the typical Julia pattern that 
  1495. characterizes midgets found in the East Valley area of larger 
  1496. midgets, but today's midget has far more intricate detail than 
  1497. most.  I have rated the picture a 6, the fourth or fifth 6 
  1498. rating in a row.  It's really quite an interesting scene.  Maybe 
  1499. if I had more time to appreciate it, I would have rated it 
  1500. higher.
  1501.  
  1502. The parameter file renders in under 9 minutes, slow enough to 
  1503. make a download of the GIF image worth the effort.  That image 
  1504. will be available in an hour or so at:
  1505.  
  1506.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  1507.  
  1508. and at:
  1509.  
  1510.           <http://home.swbell.net/sdboyd56/fotd/>
  1511.  
  1512. The fractal weather today was unpleasant -- cloudy and chilly, 
  1513. with just enough light rain to keep the fractal cats confined to 
  1514. the indoors.  Afternoon temperatures in the 50's F (lower teens 
  1515. Celsius) did not help.
  1516.  
  1517. And now it's late, or more accurately, early, and I've got a lot 
  1518. of organizing to do.  So until the next FOTD, take care, and all 
  1519. rushes eventually come to an end.
  1520.  
  1521.  
  1522. Jim Muth
  1523. jamth@mindspring.com
  1524.  
  1525.  
  1526. START 20.0 PAR-FORMULA FILE================================
  1527.  
  1528. A_Midget_Eruption  { ; time=0:08:46.12--SF5 on a P200
  1529.   reset=2001 type=formula formulafile=critical.frm
  1530.   formulaname=MandelbrotMix4 function=recip passes=1
  1531.   center-mag=+0.127297927751329/-0.054242224379125/1\
  1532.   .173881e+007/1/167.499 params=1/1.9/-25/-0.1/-0.7/0
  1533.   float=y maxiter=1500 inside=0
  1534.   logmap=156 periodicity=10
  1535.   colors=000VM_XL_ZN`aQ`cU`eY`h``jcalfaojaqnasramiYh\
  1536.   aVcUSYLOTDLO5INFOMPTLPZLPWJPTHSIGQJGOKGMLFLMFJNFHO\
  1537.   EGPEEQECRDBSD9TD7UC6VC4WC2XC1YH3VL5SP6PT8MXAJ`BGdD\
  1538.   DhFAlG7pI4tJ1qU3nc4lm5`oJPpWDri1sv1mq1gm1bi1Xe1SaG\
  1539.   NTUIKhDBv82105EAEQJMbSVn`bzijsVfmHbg3Ze9ZdFZbKZaQZ\
  1540.   _VZZ`ZXeZWkZVpZYiX_cVaYUcRSeLQgFPeGOdHNcIMbJLaKK`L\
  1541.   J_MIZNHYOGXPFWQEVRDUSCTTCRUIQUNPUSNUYMUbLUgJUmIUrH\
  1542.   UwMSsRRpVQm_PidOfhNcPbBScCUcDXdDZdE`eFceFefGgfGjfH\
  1543.   lgIogIqhJshKviKxiLziLxyTtvUqsUnpVknVhkWehWbeX_cXW`\
  1544.   YTYYQVZNTZKQ_HN_EK`BI`AH_9HZ8HZ8HY7HY6HX5HW5HW4HV3\
  1545.   HV2HU2HU5GS8GQBGPEGNHGLKFKNFIQFHTFFWFDZECaEAdE8gE7\
  1546.   jE5mE4jF6gG8eG9bHB`ICYIEWJFTKHRKIQMJQOJPPJPRJOTKOU\
  1547.   KOWKNYKNZLM`LMbLMcLJZNHVPFQRDMTBIVAOZ9Ta9YdBZbC_aD\
  1548.   ``E`_FaZGbYHbXKcYMcZOcZRd_Td_Vd`Yea_eaaebdfbfgchhd\
  1549.   kidmjeokeplaqmZrmWsmStmPumMvmIwmFwmCwm8wm5wm2wm6wm\
  1550.   AwmEwmIwmMwmPwmTwmXwm`wmd
  1551.   }
  1552.  
  1553. frm:MandelbrotMix4 {; Jim Muth
  1554. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  1555. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  1556. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  1557. z=k*((a*(z^b))+(d*(z^f)))+c,
  1558. |z| < l
  1559. }
  1560.  
  1561. END 20.0 PAR-FORMULA FILE==================================
  1562.  
  1563. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1564. Post Message:   fractint@lists.xmission.com
  1565. Get Commands:   majordomo@lists.xmission.com "help"
  1566. Administrator:  twegner@fractint.org
  1567. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1568.  
  1569.  
  1570. -------------------------------------------------------------------------------
  1571.  
  1572. From: Jim Muth <jamth@mindspring.com>
  1573. Subject: (fractint) C-FOTD  09-04-01  (Mandelbrot Mayhem [5])
  1574. Date: 09 Apr 2001 00:42:15 -0400 (EDT)
  1575.  
  1576.  
  1577. Classic FOTD -- April 09, 2001 (Rating 5)
  1578.  
  1579. Fractal visionaries and enthusiasts:
  1580.  
  1581. With today's 5-rated fractal image we break away from the string 
  1582. of FOTD's that have been rated a 6.  Unfortunately, the break 
  1583. is in the less desirable direction, but then one can't have 
  1584. everything.
  1585.  
  1586. We also break away from the world of the MandelbrotMix4 formula 
  1587. into the world of the MandelbrotBC formula to explore the more 
  1588. remote parts of the fractal created by the very simple formula, 
  1589. Z^(sqrt2)+C.
  1590.  
  1591. The scene I found is one of the most disorderly of all time, 
  1592. with bits and pieces of fractal stuff scattered around the 
  1593. midget in total disarray, showing no signs at all of an orderly 
  1594. arrangement.  The unusually chaotic image is well worth the name 
  1595. I gave it -- "Mandelbrot Mayhem".
  1596.  
  1597. At just under 13 minutes, the parameter file tries one's 
  1598. patience.  Relief for the impatient is available on the Web at:
  1599.  
  1600.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  1601.  
  1602. and at:
  1603.  
  1604.           <http://home.swbell.net/sdboyd56/fotd/>
  1605.  
  1606. where the GIF file of the image will soon be posted.
  1607.  
  1608. The fractal weather today started cloudy and chilly, but turned 
  1609. sunny and milder at midday.  The bright sun and afternoon 
  1610. temperature of 63F (17C) then lured the fractal cats into the 
  1611. yard, where they sampled the new grass.
  1612.  
  1613. It's now time to shut down the shoppe and call it a night.  
  1614. Until tomorrow around this same time, take care, and one of 
  1615. these days someone will find the ultimate fractal -- but will 
  1616. they recognize it?.
  1617.  
  1618.  
  1619. Jim Muth
  1620. jamth@mindspring.com
  1621.  
  1622.  
  1623. START 20.0 PAR-FORMULA FILE================================
  1624.  
  1625. Mandelbrot_Mayhem  { ; time=0:12:54.45--SF5 on a P200
  1626.   reset=2001 type=formula formulafile=critical.frm
  1627.   formulaname=MandelbrotBC passes=1
  1628.   center-mag=+0.45672737879421720/+0.492387056367433\
  1629.   40/1550.388/1/92.5 params=1.414213562373/0/11/0
  1630.   float=y maxiter=6000 inside=0 logmap=128
  1631.   symmetry=none periodicity=10
  1632.   colors=000W`eYei`jmbnqidizMauMUpNQlNMgOJcOF_OCZNDY\
  1633.   MDXLDWKDWJDVIDUHETGETFESEERDEQCEQBERAIR9LS9OS8RS8U\
  1634.   T7XT7_T6bU6eU5hU5kS9lRCmPFnOIoMMpLPpJSqIVrGZsFatDd\
  1635.   uCguQaacXJpS0mQ3jP6gO9dNBaMEZLHXKJUJMRIPOHRLGUIFXG\
  1636.   EZKG`NIbQJdULfXNh_OjbQlfSniTplVroWtnXomXklYgkYcjY_\
  1637.   iZWiZShZOg_Kf_Ge_Cd`8c`4c`0fbAhdKjfTfKsiNlkQfnS_pV\
  1638.   UrYNu_HwbAyd4w_5uV5sR5qM5oI5mK9kLDiMHgNKbLIZKGVJEQ\
  1639.   ICMGAIF8DE69D45C26D56E86EA7FD7GF7GI7HK8IN8IP8JS8JU\
  1640.   9KV9KVALVALVAMVBMWBNWCNWCOWCOWHTZLY`PbbTfdRegPdjNc\
  1641.   mLcpJbsHavFaxHgoJmfKsYGj_Db`AVd7Mg4Ei16k28l2Am2Cn2\
  1642.   Eo2Gp2Iq2Kr2Ms2Ot2Qu3Sv4Uw5Ww5Yw6_w7aw8cw8ew9gwAiw\
  1643.   BkwBmwCovDpuDqtErsErrFpqFnoFmoGknGjoGipHiqHirHirIi\
  1644.   qIiqIiqIiqIiqIiqIiqNjqIiqIiqJiqJiqJiqJiqJiqJipJipJ\
  1645.   ipJipKipKipKipKipKipKipKipKipKipKipLjoLjoLjoLjoLjo\
  1646.   LjoLjoLjoLjoMjoMjoMjoMjoMjoMjnMjnMjnMjnNjnNjnNjnNj\
  1647.   nNjnNjnNjnNjnNjnCilDjmDjm
  1648.   }
  1649.  
  1650. frm:MandelbrotBC = { ; Z = Z^E + C
  1651.   e=p1
  1652.   p=real(p2)+PI
  1653.   q=2*PI*trunc(p/(2*PI))
  1654.   r=real(p2)-q
  1655.   Z=C=Pixel:
  1656.     Z=log(Z)
  1657.     IF(imag(Z)>r)
  1658.       Z=Z+flip(2*PI)
  1659.     ENDIF
  1660.     Z=exp(e*(Z+flip(q)))+C
  1661.   |Z|<100
  1662. }
  1663.  
  1664. END 20.0 PAR-FORMULA FILE==================================
  1665.  
  1666.  
  1667. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1668. Post Message:   fractint@lists.xmission.com
  1669. Get Commands:   majordomo@lists.xmission.com "help"
  1670. Administrator:  twegner@fractint.org
  1671. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1672.  
  1673.  
  1674. -------------------------------------------------------------------------------
  1675.  
  1676. From: Programmer Dude <cjsonnack@mmm.com>
  1677. Subject: Re: (fractint) C-FOTD  09-04-01  (Mandelbrot Mayhem [5])
  1678. Date: 09 Apr 2001 10:38:14 -0500
  1679.  
  1680. Jim Muth wrote:
  1681.  
  1682. > ...and one of these days someone will find the ultimate fractal -- but
  1683. > will they recognize it?.
  1684.  
  1685. Why should there *be* an ultimate fractal?  Seems kind of limiting...
  1686.  
  1687. -- 
  1688. |_ CJSonnack <Chris@Sonnack.com> _____________| How's my programming? |
  1689. |_ http://www.Sonnack.com/ ___________________| Call: 1-800-DEV-NULL  |
  1690. |_____________________________________________|_______________________|
  1691.  
  1692. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1693. Post Message:   fractint@lists.xmission.com
  1694. Get Commands:   majordomo@lists.xmission.com "help"
  1695. Administrator:  twegner@fractint.org
  1696. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1697.  
  1698.  
  1699. -------------------------------------------------------------------------------
  1700.  
  1701. From: JimMuth@aol.com
  1702. Subject: (fractint) C-FOTD  10-04-01  (A Naming Problem [4])
  1703. Date: 10 Apr 2001 07:58:03 EDT
  1704.  
  1705.  
  1706. Classic FOTD -- April 10, 2001 (Rating 4)
  1707.  
  1708. Fractal visionaries and enthusiasts:
  1709.  
  1710. Another very busy day at Fractal Central left insufficient time 
  1711. for a proper fractal search, so I turned to a strange image I 
  1712. found a week or so ago.  Being only a backup, the image comes 
  1713. down another notch on my scale of fractal worth, rating only a 
  1714. 4 on the scale.  I named the picture "A Naming Problem" because 
  1715. of the complexity of the Mandeloid that fills the frame.
  1716.  
  1717. It's hard enough to identify the various features of the classic 
  1718. Mandelbrot set by colloquial names.  Imagine the problem if such 
  1719. a naming system were applied to the many parts of the Mandel-
  1720. thing in today's image.
  1721.  
  1722. To make matters even more difficult, the image has a strange 
  1723. kind of symmetry.  The Y-axis symmetry of the Mandel-shaped 
  1724. feature is obvious, but there are bits of foreground debris 
  1725. scattered throughout the picture, which have no symmetry 
  1726. whatsoever.  I suspect that this unusual symmetrical-
  1727. unsymmetrical character is caused by the two different exponents 
  1728. of the formula, one of which is positive, the other negative.
  1729.  
  1730. But I'm not positive.
  1731.  
  1732. Regardless, the parameter file renders in about 9 minutes, and 
  1733. the GIF file of the image will soon be available on the Web at:
  1734.  
  1735.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  1736.  
  1737. and at:
  1738.  
  1739.           <http://home.swbell.net/sdboyd56/fotd/>
  1740.  
  1741. The fractal weather today here at Fractal Central started with a 
  1742. light thunder-shower, turned unusually sunny and warm, then 
  1743. ended with a heavy thunder-storm.  The fractal cats approved of 
  1744. the 90F (32C) temperature by basking all afternoon in the shade 
  1745. of the holly trees, but they disapproved of the noise of the 
  1746. evening storm.
  1747.  
  1748. As for me -- I worked all day.  And tomorrow will likely be just 
  1749. as busy, but I'll still manage to find at least one fractal.  
  1750. Until then, take care, and see you in 16 hours.
  1751.  
  1752.  
  1753. Jim Muth
  1754. jamth@mindspring.com
  1755.  
  1756.  
  1757. START 20.0 PAR-FORMULA FILE================================
  1758.  
  1759. A_Naming_Problem  { ; time=0:08:53.78--SF5 on a P200
  1760.   reset=2001 type=formula formulafile=critical.frm
  1761.   formulaname=MandelbrotMix4 function=recip passes=1
  1762.   center-mag=0.0881747/0.0124835/0.4235847/1/-90
  1763.   params=-0.075/2/10/-2.25/-0.88/1000000000 float=y
  1764.   maxiter=3000 inside=0 logmap=7 periodicity=10
  1765.   colors=000fQLeQLeQLeQMePMePMePMePMdPMdONdONdONdONd\
  1766.   ONdNOcNOcNOcNOcMOcMOcMPcMPbMPbLPbLPbLPbLQbLQbKQaKQ\
  1767.   aKQaKRaKRaJRaJRaJR`JR`IS`IS`IS`IS`IS`HT_HT_HT_HT_H\
  1768.   T_GT_GU_GUZGUZGUZFUZFUZFVZFVZEVYEVYEVYEWYEWYDWYDWY\
  1769.   DWXDWXDXXCXXCXXCXXCXWBWXCXXCXXCXXCXXDXXDXXDXXDXXDX\
  1770.   XEXXEXXEXXEXXFYXFYXFYXFYXFYXGYXGYXGYXGYYGYYHYYHYYH\
  1771.   YYHZYIZYIZYIZYIZYIZYJZYJZYJZYJZYJZYKZYKZYK_YK_YL_Y\
  1772.   L_YL_ZL_ZL_ZM_ZM_ZM_ZM_ZN_ZN_ZN_ZN`ZN`ZO`ZO`ZO`ZO`\
  1773.   ZO`ZP`ZP`ZP`ZP`ZQ`ZQ`_Qa_Qa_Qa_Ra_Ra_Ra_Ra_Ra_Sa_S\
  1774.   a_Sa_Sa_Ta_Tb_Tb_Tb_Tb_Ub_Ub_Ub_Ub_Vb`Vb`Vb`Vb`Vb`\
  1775.   Wc`Wc`Wc`Wc`Wc`Xc`Xc`Xc`Xc`Yc`Yc`Yc`Yc`Yc`Zd`Zd`Zd\
  1776.   `ZdaZda_da_da_da_da`da`da`da`da`eaaeaaeaaeaaeabeab\
  1777.   eabeabeabeaceaceacebcfbcfbdfbdfbdfbdfbefbefbefbefb\
  1778.   efbffbffbfgbfgbfgbggbggbggbggbhgbhgchgchgchgcigcig\
  1779.   cihcihcjhcjhcjhcjhcjhckhckhckhckhckhclhclicliclicm\
  1780.   idmidmidmidmidnidnidnidni
  1781.   }
  1782.  
  1783. frm:MandelbrotMix4 {; Jim Muth
  1784. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  1785. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  1786. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  1787. z=k*((a*(z^b))+(d*(z^f)))+c,
  1788. |z| < l
  1789. }
  1790.  
  1791. END 20.0 PAR-FORMULA FILE==================================
  1792.  
  1793. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1794. Post Message:   fractint@lists.xmission.com
  1795. Get Commands:   majordomo@lists.xmission.com "help"
  1796. Administrator:  twegner@fractint.org
  1797. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1798.  
  1799.  
  1800. -------------------------------------------------------------------------------
  1801.  
  1802. From: Guy Marson <guy.marson@mnhn.lu>
  1803. Subject: (fractint) a little tease
  1804. Date: 11 Apr 2001 10:41:45 +0200
  1805.  
  1806. Hi Fractinters,
  1807.  
  1808. 1) run this .par with its original values.. 
  1809.  
  1810. 2) reload the 'first1.gif' and set REAL(P4) to 35 .. (Z-screen)
  1811.  
  1812. 3) set REAL(P5) to 0.1'500'000'002 (zero point 1500000002 :-)
  1813.  
  1814.  
  1815. 4) now reload the 'second1.gif' and set REAL(P4) to 30 .. (Z-screen)
  1816.  
  1817. 5) set REAL(P5) to 0.1500000001 ..
  1818.  
  1819. If you wanna experiment with the text, set IMAG(P4) to e.g. 0.14
  1820.  
  1821. Thanks to Sylvie Gallet, Jim Muth and Jan Marten van der Walk for their
  1822. fantastic pattern!
  1823.  
  1824. ************************* 
  1825. par and frm's:
  1826. *************************
  1827.  
  1828. first1              { ; Version 2001 Patchlevel 6
  1829.   reset=2001 type=formula formulafile=lakerise.frm
  1830.   formulaname=lakerise function=recip/ident passes=1
  1831.   center-mag=+19.06420449201231000/+0.00105725129748224/6.787838e+007/0.93\
  1832.   15/90 savename=first1
  1833.   params=95158716/1/0.015/0.51/2.55e-009/-1.25e-008/85/0.15/0.15/1
  1834.   float=y maxiter=6000 inside=0 logmap=46 periodicity=0
  1835.   colors=00082A<3>819818818907<3>H46J46L55<2>T85V94YB4_C3bD3<3>lI2nJ1pK1rM\
  1836.   0<6>v`4vb5wd5wf6xi6<2>xm8xn9yn9<3>yrCysDytEyuE<17>zwczwdzwfzwh<3>zwmzvoz\
  1837.   vpzvrzvszuu<104>P77P77P77<6>M33M33M22<3>K000CP<3>0BO0BO0BO<4>0AL0AL0AK<3\
  1838.   >0AK0AK0AK<12>46G46G46F56F55F55F<3>64D64D74D<3>73D73C73C73B73A73A72A
  1839.   }
  1840.  
  1841. second1             { ; Version 2001 Patchlevel 6
  1842.   reset=2001 type=formula formulafile=e-viva-c.frm
  1843.   formulaname=e-viva-c function=recip/ident passes=1 savename=second1
  1844.   center-mag=+19.06442878086688000/+0.00068889924650949/6.303265e+007/1/47\
  1845.   .499 params=95180095/1/0.1/0.4/-2.56e-008/3.32e-008/90/0.15/0.15/1
  1846.   float=y maxiter=6000 inside=0 logmap=55 periodicity=0
  1847.   colors=00082A<3>819818818907<3>H36J46L55<5>_C3bD3eE3<3>nJ1pK1rM0<6>v`4vb\
  1848.   5wd5wf6xi6<2>xm8xn9yn9<3>yrCysDytEyuE<17>zwczwdzwfzwh<3>zwmzvozvpzvrzvsz\
  1849.   uu<96>SAASAAR99<5>P77P77P77<4>N44N44M33<3>L11L11K000CP<3>0BO0BO0BO<4>0AL\
  1850.   0AL0AK<3>0AK0AK0AK<12>46G46G46F56F55F55F<3>64D64D74D<6>73C72B72B82A
  1851.   }
  1852.  
  1853. frm:lakerise   { ; lake-transformation = Sylvie Gallet, Jan 16, 2000
  1854. ; requires: float=on, Fractint 20.0.6, periodicity=0' and 'passes=1'
  1855. ; real part of p1: diameter of text bailout 
  1856. ; imag part of p1: position of text bailout (x and y)
  1857. ; real part of p2: merging of text (position)
  1858. ; imag part of p2: merging of text (position)
  1859. ; real part of p3: x-position of text bailout versus background
  1860. ; imag part of p3: y-position of text bailout versus background
  1861. ; real part of p4: 0 = lake transform disabled
  1862. ;                  any value between 0 and 100: water level in % of
  1863. ;                  the screen height (0 = bottom, 100 = top)
  1864. ; Try fn1=recip, fn2=ident: If (A=B*C) then text=invisible, else=visible!
  1865. ; imag part of p4: A (position of text & picture bailout) 
  1866. ; real part of p5: B (position of text bailout) 
  1867. ; imag part of p5: C (position of picture bailout) 
  1868. ; to position text into the picture, try e.g.: A=0.18, B=0.18005, C=1
  1869. ; finaly set B to the best value found by 'try and error'
  1870. pp_p3 = (0.2,300) ;  0.2=amplitude  and  300=frequency of the lake
  1871.  
  1872. ; Lake transformation
  1873. ; -------------------
  1874.  
  1875. if (real(p4) > 0 && real(p4) <= 100)
  1876.   level = real(p4) / 100            ; water level
  1877.   ampl = real(pp_p3)                ; amplitude of the wave
  1878.   freq = imag(pp_p3)                ; frequency
  1879.   angle = real(rotskew * pi / 180)
  1880.   exp_irot = exp(-flip(angle))
  1881.   h = 1 / real(magxmag)
  1882.   w = h / 0.75 * imag(magxmag)
  1883.   tanskew = tan(imag(rotskew * pi / 180))
  1884.   u = 2 * w * exp_irot
  1885.   v = 2 * h * (tanskew + flip(1)) * exp_irot
  1886.   z3rd = center + (-w-h*tanskew - flip(h)) * exp_irot
  1887.   z = pixel - z3rd
  1888.   b = imag(conj(u)*z) / imag(conj(u)*v)
  1889.   if (b <= level)
  1890.     dy = level - b
  1891.     z = z + 2*dy * (1+ampl*sin(freq*dy^0.2)) * v 
  1892.   endif
  1893.  
  1894.  pixel = z + z3rd
  1895.  
  1896. endif
  1897.  
  1898.   z=(sinh(sinh(sinh(pixel-p3)-real(p1))-p2))/imag(p1)
  1899.     x=real(z), y=imag(z)
  1900. ;Text = generated with FRACTEXT.EXE from J.M.v.d. WALK
  1901.   chrI1 = x>-0.51186&&x<-0.49236
  1902.   chrS2 = abs(cabs(z+(0.43498,-0.70762))-0.03262)<0.00975&&(x<=-0.434\
  1903.   98||y>0.70762)||(abs(cabs(z+(0.43498,-0.64238))-0.03262)<0.00975&&(\
  1904.   x>-0.43498||y<0.64238))
  1905.   chrF4 = x<-0.28311||(y<0.68475&&y>0.66525)||y>0.7305&&x>-0.30261&&x\
  1906.   <-0.22311
  1907.   xCR=2*x
  1908.   chrR5 = y<0.68475&&y>0.66525||y>0.7305||x<-0.18861&&x>-0.20811&&x<-\
  1909.   0.15861||(abs(cabs(z+(0.15861,-0.70762))-0.03262)<0.00975&&x>=-0.15\
  1910.   861)||(y<0.675&&y<-xCR+0.36753&&y>-xCR+0.32393)
  1911.   xCA=3*x
  1912.   chrA6 = y>xCA+0.84203||y>-xCA+0.5963||(y<0.66&&y>0.6405)&&y<xCA+0.9\
  1913.   037&&y<-xCA+0.65797
  1914.   xCC=1*x
  1915.   chrC7 = abs(cabs(z+(-0.10932,-0.675))-0.06525)<0.00975&&(x<0.10932|\
  1916.   |y>xCC+0.56568||y<-xCC+0.78432)
  1917.   chrT8 = y>0.7305&&x>0.17736&&x<0.27186||(x>0.21486&&x<0.23436)
  1918.   chrI9 = x>0.28686&&x<0.30636
  1919.   xCN=2.5*x
  1920.   chrN10 = x>0.32136&&x<0.34086||(x>0.38136&&x<0.40236)||(y>-xCN+1.55\
  1921.   339&&y<-xCN+1.60589)
  1922.   chrT11 = y>0.7305&&x>0.41736&&x<0.51186||(x>0.45486&&x<0.47436)
  1923.   test1 = chrI1||chrS2||chrF4||chrR5||chrA6||chrC7||chrT8||chrI9||chr\
  1924.   N10||chrT11&&y>0.6&&y<0.75
  1925.   chrS12 = abs(cabs(z+(0.64457,-0.4936))-0.0286)<0.0078&&(x<=-0.64457\
  1926.   ||y>0.4936)||(abs(cabs(z+(0.64457,-0.4364))-0.0286)<0.0078&&(x>-0.6\
  1927.   4457||y<0.4364))
  1928.   chrI13 = x>-0.59517&&x<-0.57957
  1929.   chrN14 = x>-0.56657&&x<-0.55097||(x>-0.51457&&x<-0.49776)||(y>-xCN-\
  1930.   0.88641&&y<-xCN-0.84441)
  1931.   xCK=1.5*x
  1932.   chrK15 = x<-0.46916||(y<xCK+1.17048&&y>xCK+1.14236)||(y>-xCK-0.2404\
  1933.   8&&y<-xCK-0.21236&&y<xCK+1.17048)&&x>-0.48476
  1934.   chrI16 = x>-0.39524&&x<-0.37964
  1935.   chrN17 = x>-0.36664&&x<-0.35104||(x>-0.31464&&x<-0.29784)||(y>-xCN-\
  1936.   0.38659&&y<-xCN-0.34459)
  1937.   chrG18 = abs(cabs(z+(0.21984,-0.465))-0.0572)<0.0078&&(x<-0.21984||\
  1938.   y<0.4728||y>0.4806)||(x>-0.21984&&x<=-0.17044&&y<0.4728&&y>0.4572)
  1939.   chrO20 = abs(cabs(z+(0.01184,-0.465))-0.0572)<0.0078
  1940.   chrR21 = y<0.4728&&y>0.4572||y>0.5144||x<0.08176&&x>0.06616&&x<0.10\
  1941.   776||(abs(cabs(z+(-0.10776,-0.4936))-0.0286)<0.0078&&x>=0.10776)||(\
  1942.   y<0.465&&y<-xCR+0.68833&&y>-xCR+0.65345)
  1943.   chrR23 = y<0.4728&&y>0.4572||y>0.5144||x<0.23776&&x>0.22216&&x<0.26\
  1944.   376||(abs(cabs(z+(-0.26376,-0.4936))-0.0286)<0.0078&&x>=0.26376)||(\
  1945.   y<0.465&&y<-xCR+1.00033&&y>-xCR+0.96545)
  1946.   chrI24 = x>0.31316&&x<0.32876
  1947.   chrS25 = abs(cabs(z+(-0.37816,-0.4936))-0.0286)<0.0078&&(x<=0.37816\
  1948.   ||y>0.4936)||(abs(cabs(z+(-0.37816,-0.4364))-0.0286)<0.0078&&(x>0.3\
  1949.   7816||y<0.4364))
  1950.   chrI26 = x>0.42756&&x<0.44316
  1951.   chrN27 = x>0.45616&&x<0.47176||(x>0.50816&&x<0.52497)||(y>-xCN+1.67\
  1952.   041&&y<-xCN+1.71241)
  1953.   chrG28 = abs(cabs(z+(-0.60297,-0.465))-0.0572)<0.0078&&(x<0.60297||\
  1954.   y<0.4728||y>0.4806)||(x>0.60297&&x<=0.65237&&y<0.4728&&y>0.4572)
  1955.   test2 = chrS12||chrI13||chrN14||chrK15||chrI16||chrN17||chrG18||chr\
  1956.   O20||chrR21||chrR23||chrI24||chrS25||chrI26||chrN27||chrG28&&y>0.4&\
  1957.   &y<0.53
  1958.   test=test1||test2
  1959.   test0=test0&&whitesq
  1960.   test0=((test0||test)==0)
  1961.   f1=fn1(imag(p5))*fn2(imag(p4))*pixel
  1962.   f2=real(p5)*pixel
  1963.   pixel=(test==0)*f1+test*f2
  1964.   p_p1=(1,-9999), p_p2=(1.3,2), p_p3=(-0.5,0)
  1965.   ; Import of formula 'mmix3' from file MMIX4-3.FRM from Jim Muth
  1966.   ;p_p1=(1,-9999), p_p2=(1.3,2), p_p3=(-0.5,0)
  1967.   a=real(p_p1), b=imag(p_p1), d=real(p_p2), f=imag(p_p2),
  1968.   g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  1969.   k=real(p_p3)+1, l=imag(p_p3)+100, c=fn1(pixel):
  1970.   z=k*((a*(z^b))+(d*(z^f)))+c,
  1971.   |z| < l
  1972.   }
  1973.  
  1974. ;******************************************************************
  1975.  
  1976.  
  1977. frm:e-viva-c   { ; lake-transformation = Sylvie Gallet, Jan 16, 2000
  1978. ; requires: float=on, Fractint 20.0.6, periodicity=0' and 'passes=1'
  1979. ; real part of p1: diameter of text bailout 
  1980. ; imag part of p1: position of text bailout (x and y)
  1981. ; real part of p2: merging of text (position)
  1982. ; imag part of p2: merging of text (position)
  1983. ; real part of p3: x-position of text bailout versus background
  1984. ; imag part of p3: y-position of text bailout versus background
  1985. ; real part of p4: 0 = lake transform disabled
  1986. ;                  any value between 0 and 100: water level in % of
  1987. ;                  the screen height (0 = bottom, 100 = top)
  1988. ; Try fn1=recip, fn2=ident: If (A=B*C) then text=invisible, else=visible!
  1989. ; imag part of p4: A (position of text & picture bailout) 
  1990. ; real part of p5: B (position of text bailout) 
  1991. ; imag part of p5: C (position of picture bailout) 
  1992. ; to position text into the picture, try e.g.: A=0.18, B=0.18005, C=1
  1993. ; finaly set B to the best value found by 'try and error'
  1994. pp_p3 = (0.2,300) ;  0.2=amplitude  and  300=frequency of the lake
  1995.  
  1996. ; Lake transformation
  1997. ; -------------------
  1998.  
  1999. if (real(p4) > 0 && real(p4) <= 100)
  2000.   level = real(p4) / 100            ; water level
  2001.   ampl = real(pp_p3)                ; amplitude of the wave
  2002.   freq = imag(pp_p3)                ; frequency
  2003.   angle = real(rotskew * pi / 180)
  2004.   exp_irot = exp(-flip(angle))
  2005.   h = 1 / real(magxmag)
  2006.   w = h / 0.75 * imag(magxmag)
  2007.   tanskew = tan(imag(rotskew * pi / 180))
  2008.   u = 2 * w * exp_irot
  2009.   v = 2 * h * (tanskew + flip(1)) * exp_irot
  2010.   z3rd = center + (-w-h*tanskew - flip(h)) * exp_irot
  2011.   z = pixel - z3rd
  2012.   b = imag(conj(u)*z) / imag(conj(u)*v)
  2013.   if (b <= level)
  2014.     dy = level - b
  2015.     z = z + 2*dy * (1+ampl*sin(freq*dy^0.2)) * v 
  2016.   endif
  2017.  
  2018.  pixel = z + z3rd
  2019.  
  2020. endif
  2021.  
  2022.   z=(sinh(sinh(sinh(pixel-p3)-real(p1))-p2))/imag(p1)
  2023.     x=real(z), y=imag(z)
  2024. ;Text = generated with FRACTEXT.EXE from J.M.v.d. WALK
  2025.   chrE1 = x<-0.54802||y<0.6195||(y<0.68475&&y>0.66525)||y>0.7305&&x>-\
  2026.   0.56752&&x<-0.48802
  2027.   xCV=3.5*x
  2028.   chrV3 = y>-xCV-0.64308&&y<-xCV-0.5721||y<xCV+1.84308&&y>xCV+1.7721
  2029.   chrI4 = x>-0.27703&&x<-0.25753
  2030.   chrV5 = y>-xCV-0.09885&&y<-xCV-0.02787||y<xCV+1.29885&&y>xCV+1.2278\
  2031.   7
  2032.   xCA=3*x
  2033.   chrA6 = y>xCA+0.90293||y>-xCA+0.5354||(y<0.66&&y>0.6405)&&y<xCA+0.9\
  2034.   646&&y<-xCA+0.59707
  2035.   chrF8 = x<0.10852||(y<0.68475&&y>0.66525)||y>0.7305&&x>0.08902&&x<0\
  2036.   .16852
  2037.   chrO9 = abs(cabs(z+(-0.25852,-0.675))-0.06525)<0.00975
  2038.   chrT10 = y>0.7305&&x>0.34852&&x<0.44302||(x>0.38602&&x<0.40552)
  2039.   chrD11 = x<0.47752||y<0.6195||y>0.7305&&x>0.45802&&x<0.49252||(abs(\
  2040.   cabs(z+(-0.49252,-0.675))-0.06525)<0.00975&&x>=0.49252)
  2041.   test1 = chrE1||chrV3||chrI4||chrV5||chrA6||chrF8||chrO9||chrT10||ch\
  2042.   rD11&&y>0.6&&y<0.75
  2043.   chrE12 = x<-0.6137||y<0.4156||(y<0.4728&&y>0.4572)||y>0.5144&&x>-0.\
  2044.   6293&&x<-0.5617
  2045.   chrV14 = y>-xCV-1.16296&&y<-xCV-1.10617||y<xCV+1.96296&&y>xCV+1.906\
  2046.   17
  2047.   chrI15 = x>-0.38019&&x<-0.36459
  2048.   chrV16 = y>-xCV-0.70057&&y<-xCV-0.64379||y<xCV+1.50057&&y>xCV+1.443\
  2049.   79
  2050.   chrA17 = y>xCA+1.09492||y>-xCA-0.08425||(y<0.452&&y>0.4364)&&y<xCA+\
  2051.   1.14425&&y<-xCA-0.03492
  2052.   chrF19 = x<-0.05137||(y<0.4728&&y>0.4572)||y>0.5144&&x>-0.06697&&x<\
  2053.   0.00063
  2054.   xCR=2*x
  2055.   chrR20 = y<0.4728&&y>0.4572||y>0.5144||x<0.02923&&x>0.01363&&x<0.05\
  2056.   523||(abs(cabs(z+(-0.05523,-0.4936))-0.0286)<0.0078&&x>=0.05523)||(\
  2057.   y<0.465&&y<-xCR+0.58326&&y>-xCR+0.54837)
  2058.   chrA21 = y>xCA+0.03678||y>-xCA+0.97388||(y<0.452&&y>0.4364)&&y<xCA+\
  2059.   0.08612&&y<-xCA+1.02322
  2060.   xCC=1*x
  2061.   chrC22 = abs(cabs(z+(-0.28574,-0.465))-0.0572)<0.0078&&(x<0.28574||\
  2062.   y>xCC+0.17926||y<-xCC+0.75074)
  2063.   chrT23 = y>0.5144&&x>0.3447&&x<0.4253||(x>0.3772&&x<0.3928)
  2064.   chrI24 = x>0.4383&&x<0.4539
  2065.   xCN=2.5*x
  2066.   chrN25 = x>0.4669&&x<0.4825||(x>0.5189&&x<0.5357)||(y>-xCN+1.69725&\
  2067.   &y<-xCN+1.73926)
  2068.   chrT26 = y>0.5144&&x>0.5487&&x<0.6293||(x>0.5812&&x<0.5968)
  2069.   test2 = chrE12||chrV14||chrI15||chrV16||chrA17||chrF19||chrR20||chr\
  2070.   A21||chrC22||chrT23||chrI24||chrN25||chrT26&&y>0.4&&y<0.53
  2071.   test=test1||test2
  2072.   test0=test0&&whitesq
  2073.   test0=((test0||test)==0)
  2074.   f1=fn1(imag(p5))*fn2(imag(p4))*pixel
  2075.   f2=real(p5)*pixel
  2076.   pixel=(test==0)*f1+test*f2
  2077.   p_p1=(1,-9999), p_p2=(1.3,2), p_p3=(-0.5,0)
  2078.   ; Import of formula 'mmix3' from file MMIX4-3.FRM from Jim Muth
  2079.   ;p_p1=(1,-9999), p_p2=(1.3,2), p_p3=(-0.5,0)
  2080.   a=real(p_p1), b=imag(p_p1), d=real(p_p2), f=imag(p_p2),
  2081.   g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  2082.   k=real(p_p3)+1, l=imag(p_p3)+100, c=fn1(pixel):
  2083.   z=k*((a*(z^b))+(d*(z^f)))+c,
  2084.   |z| < l
  2085.   }
  2086.  
  2087. ********************
  2088.  
  2089. cheers,
  2090.  
  2091. Guy
  2092.  
  2093. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2094. Post Message:   fractint@lists.xmission.com
  2095. Get Commands:   majordomo@lists.xmission.com "help"
  2096. Administrator:  twegner@fractint.org
  2097. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2098.  
  2099.  
  2100. -------------------------------------------------------------------------------
  2101.  
  2102. From: JimMuth@aol.com
  2103. Subject: (fractint) C-FOTD  11-04-01  (Veiled Objects [7])
  2104. Date: 11 Apr 2001 08:21:31 EDT
  2105.  
  2106.  
  2107. Classic FOTD -- April 11, 2001 (Rating 7)
  2108.  
  2109. Fractal visionaries and enthusiasts:
  2110.  
  2111. Today's FOTD is late again . . . no surprise in that.  I'm still 
  2112. busy.  But I have finally managed to find an image that rates 
  2113. above a 6.  True, at a rating of 7, it's only a single step 
  2114. above 6, but it's a start.
  2115.  
  2116. I named the image "Veiled Objects" when I noticed that the 
  2117. smaller features seem to be draped over the larger objects like 
  2118. a gossamer veil.  To create the image I unpacked number 6 in my 
  2119. series of 12 MandNewt formulae.  This formula is a random 
  2120. variation of the Ikenaga function, and the Ikenaga function is a 
  2121. minor mystery.
  2122.  
  2123. The image takes 8-1/2 minutes to render at a low-resolution SF5, 
  2124. but the highest resolution available is needed to do it justice. 
  2125. The image may be seen by running the parameter file at the 
  2126. resolution of your choice, or by downloading the GIF file from:
  2127.  
  2128.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  2129.  
  2130. or from:
  2131.  
  2132.           <http://home.swbell.net/sdboyd56/fotd/>
  2133.  
  2134. once it has been posted.
  2135.  
  2136. The fractal weather today was cloudy but dry, with a temperature 
  2137. of 68F (20C).  The fractal cats approved of the conditions.
  2138.  
  2139. That's it for today.  I've got a busy day ahead of me, and it's 
  2140. time to get to work.  Until next time, take care, and hug at 
  2141. least one fractal every day.
  2142.  
  2143.  
  2144. Jim Muth
  2145. jamth@mindspring.com
  2146.  
  2147.  
  2148. START 20.0 PAR-FORMULA FILE================================
  2149.  
  2150. Veiled_Objects     { ; time=0:08:38.44--SF5 on a P200
  2151.   reset=2001 type=formula formulafile=mandnewt.frm
  2152.   formulaname=MandNewt06 passes=1
  2153.   center-mag=0.277319/-1.04425/35.70909/1/82.499
  2154.   params=-2.37/2.17/-1.56/-1.05/3.29/-3.17 float=y
  2155.   maxiter=254 inside=bof60 logmap=yes periodicity=0
  2156.   colors=000jwpjwqjwqhuogsmfqlepjdniclgajf`id_gcZeaY\
  2157.   c`XbZV`YUZWTXVSWTRUSQSQOQPNPNMNMLLKKJJJIHHGGGEEFCD\
  2158.   EBBD9AC78945B67D78F8AH9BJACLBENCFODGQEISFJUGKWHMYI\
  2159.   N_JO`KQbLRdMSfNUhOVjPWlQYmRZoS_qTasUbuVcwWexXfxYgr\
  2160.   ZdkZadZ_XZXQZVJZSAYRCZQDaNFeKGhHIlEInBJoCKoCKoCLoC\
  2161.   LoCMoCMoCNoCNoDOoDOoDPoDQoDQoDRoDRoDSoESoEToEToEUo\
  2162.   EUoEVoEWoEWoFXoFXoFYoFYoFZoFZoF_oF_oF`mG`lH`kIajIa\
  2163.   hJagKafLbeLbdMbbNbaOc`Oc_PcYQcXRdWRdVSdUTdSUeRUeQV\
  2164.   ePWdMYeOWeQVeRTeTSeUQeWPeXOeZMe_LeaJebIedHeeFegEeh\
  2165.   CejBekAdj9dj9cj9cj8cj8bj8bi8bi7ai7ai7ai7`i6`i6`h6_\
  2166.   h6_h5_h5Zh5Zh4Yh4Yg4Yg4Xg3Xg3Xg3Wg3Wg2Wf2Vf2Vf2Vf1\
  2167.   Uf1Uf1Uf1Te3Td4Td5Tc6Tc7Tb8Tb9TaBSaCS`DS`ES_FS_GSZ\
  2168.   HSZJSYKSYLRXMRXNRWORWPRVQRUSRUTRTURTVQSWQSXQRYQR_Q\
  2169.   Q`QQaQPbQPcQOdPOePNgPNhPMiPMjPLkPLlPKmPKnRMmTNmUOm\
  2170.   WQmXRlZSl`UlaVlcWkdYkfZkh_kiajkbjlcjnejpfiqgisiitj\
  2171.   ivkhxmhxnhxohkunkunkvojvp
  2172.   }
  2173.  
  2174. frm:MandNewt06 {; Jim Muth
  2175. z=c=(pixel*p1):
  2176. a=z^3+(c-p2)*z-c
  2177. b=p3*z^2+c-1
  2178. z=z-1*a/b
  2179. 0.000000000000000000000000000001 <= |a|
  2180. }
  2181.  
  2182. END 20.0 PAR-FORMULA FILE==================================
  2183.  
  2184. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2185. Post Message:   fractint@lists.xmission.com
  2186. Get Commands:   majordomo@lists.xmission.com "help"
  2187. Administrator:  twegner@fractint.org
  2188. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2189.  
  2190.  
  2191. -------------------------------------------------------------------------------
  2192.  
  2193. From: "Andrew Coppin" <orphi69@hotmail.com>
  2194. Subject: Re: (fractint) C-FOTD 11-04-01 (Veiled Objects [7])
  2195. Date: 11 Apr 2001 13:28:18 -0000
  2196.  
  2197. >From: JimMuth@aol.com
  2198. >Subject: (fractint) C-FOTD  11-04-01  (Veiled Objects [7])
  2199. >Date: Wed, 11 Apr 2001 08:21:31 EDT
  2200. >
  2201. >Classic FOTD -- April 11, 2001 (Rating 7)
  2202. >
  2203. >This formula is a random
  2204. >variation of the Ikenaga function, and the Ikenaga function is a
  2205. >minor mystery.
  2206.  
  2207. What the heck is the Ikenaga function?!?!
  2208.  
  2209. _________________________________________________________________________
  2210. Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
  2211.  
  2212.  
  2213. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2214. Post Message:   fractint@lists.xmission.com
  2215. Get Commands:   majordomo@lists.xmission.com "help"
  2216. Administrator:  twegner@fractint.org
  2217. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2218.  
  2219.  
  2220. -------------------------------------------------------------------------------
  2221.  
  2222. From: "Andrew Coppin" <orphi69@hotmail.com>
  2223. Subject: Re: (fractint) Fractint Development
  2224. Date: 11 Apr 2001 13:35:54 -0000
  2225.  
  2226. >From: Programmer Dude <cjsonnack@mmm.com>
  2227. >Reply-To: fractint@lists.xmission.com
  2228. >To: fractint@lists.xmission.com
  2229. >Subject: Re: (fractint) Fractint Development
  2230. >Date: Wed, 04 Apr 2001 10:58:32 -0500
  2231. >
  2232. >No one has responded to this in a couple days, so I thought I'd take a
  2233. >shot at it...
  2234.  
  2235. Thanks.
  2236.  
  2237. >Andrew Coppin wrote:
  2238. >
  2239. > > So, you mean that FractInt can as such only use 64KB of memory?
  2240. >
  2241. >Sort of.
  2242. >
  2243. >FractInt was born as an MS-DOS program, and MS-DOS ran on Intel chips.
  2244. >Intel chips see memory as "segmented" rather than "flat" (as the Motorola
  2245. >chips (used in Apple machines) do).  Flat memory looks like one huge
  2246. >"address space".  For any memory location from 0000000 to umpteenzillion,
  2247. >the memory location just refers to the appropriate point, like milage
  2248. >along a road.
  2249. >
  2250. >In segmented memory, a memory location consists of two numbers: a
  2251. >segment and an offset.  The segment is like a rolling window that jumps
  2252. >in, IIRC, 256-byte jumps: segment 0 starts at 0, segment 1 starts at 256,
  2253. >and so on.  And a segment is a 64-k "window".  The offset refers to any
  2254. >location within that 64-k window.
  2255. >
  2256. >The Intel chips ran programs in an architecture that had four segments:
  2257. >a "Code" segment, a "Data" segment, a "Stack" segment and an "Extra"
  2258. >segment sometimes used as a second, extended Data segment).  Due to the
  2259. >nature of the C language (a primary development language of the day),
  2260. >the Stack and Data segments usually had to be identical.  You ended up
  2261. >with a 64-K window with your data growing from the bottom upwards and
  2262. >your stack growing from the top downwards.  The space in the middle was
  2263. >the "heap" and is where you got dynamically allocated memory from.
  2264. >
  2265. >The "Memory Model" is what various configurations of the segments is
  2266. >called.  Remember the old .COM programs?  By definition, they always
  2267. >use the "Tiny" memory model.  All segments are identical, and your
  2268. >entire program--data and code--must fit in a single 64-K window.
  2269. >
  2270. >The "Medium" memory model, IIRC, has the stack and data sharing one
  2271. >64-K segment, while the code lives in its own 64-K segment.
  2272. >
  2273. >This doesn't mean the program can't access data outside these segments.
  2274. >It can, but outside memory is "far" in the language of Intel memory
  2275. >models (opposed to the "near" memory in the data/stack segment).  Because
  2276. >the data/stack segment is "framed" by the segment pointers of the Intel
  2277. >architecture, you only need 16 bits (64-K) to address it.  But since "far"
  2278. >memory is 'somewhere in address space' you need a full address which was,
  2279. >at the time, 24 bits usually expressed as two 16-bit values with 8 bits of
  2280. >overlap.  Added together, they form a 24-bit address.
  2281. >
  2282. >The bottom line is that, in your program, you have a mix of "near" data
  2283. >and "far" data, and they require different variable types to refer to.
  2284.  
  2285. So it's an address space thing? What you're saying is that for certain 
  2286. address ranges you can miss out a couple of the MSBits? (Hence presumably 
  2287. smaller/faster code?)
  2288.  
  2289. > > What's involved in such a change? Is it just a case of going through the
  2290. > > program and changing half a million lines of code on a find-and-replace
  2291. > > basis, or does it require an actaul redesign of the code?
  2292. >
  2293. >I can't speak for the FractInt developers, and I'm not familiar with the
  2294. >code.  I can guess it lies between those two ideas.  It's not a simple
  2295. >matter of S&R; I'd guess you want to examine every place you need to change
  2296. >to see if the change breaks anything.  But it probably does NOT require a
  2297. >complete redesign.
  2298. >
  2299. >Ideally you'd like a compiler that let you treat memory as flat and make
  2300. >all your pointers be the same type.  I have no idea if such exists for
  2301. >the Intel platforms.
  2302.  
  2303. Can't you just treat everything as "far"?
  2304.  
  2305. >But then *I* think what you *really* want is to get away from MS-DOS.
  2306. >
  2307. > > I'd really prefer FractInt to remain a DOS program, or perhaps to have
  2308. > > a DOS *and* a Windows version. (...and a Linux/UNIX version, like they
  2309. > > do with POV-Ray. Hey... isn't that a Stone Soup project too?)
  2310. >
  2311. >Don't *think* POV-Ray (great program, BTW) is Stone Soup.  There's actually
  2312. >a great concept there.  POV-Ray renders to a disk file normally.  The
  2313. >Windows version just happens to have the extra treat of showing you the
  2314. >image as it's rendered.  But the heart of POV-Ray is a command line tool
  2315. >for rendering 3D scenes into an image file of some type.
  2316.  
  2317. Yeah, POV-Ray = utterly cool program!
  2318. Actually, the DOS and Amiga verisons show you previouse too (unless you turn 
  2319. it off).
  2320.  
  2321. > >> The other problem is that we do indeed use extended and/or expanded
  2322. > >> memory for options other than just disk video.  Saving the on screen
  2323. > >> image when switching to a menu comes to mind.
  2324. > >
  2325. > > If you had more memory to play with, could this be avoided? (I 
  2326. >understand
  2327. > > that disk video can use insane quantities of RAM, but keeping a copy of
  2328. > > the video buffer for a normal screen shouldn't be too bad...)
  2329. >
  2330. >But what I imagine they have to save is the fractal image while the menu
  2331. >screens are displayed.  That could be considerable.
  2332. >
  2333. >Anyway, hope this little data dump helped rather than confused...
  2334.  
  2335. Hmm... I remember back on the old 6502 processor found in the legendary C64 
  2336. there was a "zero page" addressing mode, which only required an 8-bit 
  2337. address instead of the usuall "absolute addressing" which required a 16-bit 
  2338. address. I think you're saying the Intel CPU has a "base-offset" register or 
  2339. something that lets you use shorter addresses (and limits your address 
  2340. space). Close?
  2341.  
  2342. Thanks.
  2343. Andrew.
  2344.  
  2345. PS. I am now in possetion of the fractint source code. I'll spend some time 
  2346. failing to understand it later...
  2347.  
  2348. _________________________________________________________________________
  2349. Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
  2350.  
  2351.  
  2352. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2353. Post Message:   fractint@lists.xmission.com
  2354. Get Commands:   majordomo@lists.xmission.com "help"
  2355. Administrator:  twegner@fractint.org
  2356. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2357.  
  2358.  
  2359. -------------------------------------------------------------------------------
  2360.  
  2361. From: JimMuth@aol.com
  2362. Subject: (fractint) Re: C-FOTD 11-04-01 (Veiled Objects [7])
  2363. Date: 11 Apr 2001 09:54:18 EDT
  2364.  
  2365. Andrew Coppin asked:
  2366.  
  2367. >What the heck is the Ikenaga function?!?!
  2368.  
  2369. That's the minor mystery!  The function is mentioned in the fractint.frm 
  2370. file, 
  2371. but no one seems to know where the function came from or whether it has 
  2372. any use other than creating fractals.  There is an Ikenaga page on the 'net, 
  2373. but the owner of that page denies being the function's originator.
  2374.  
  2375. Jim M.
  2376.  
  2377. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2378. Post Message:   fractint@lists.xmission.com
  2379. Get Commands:   majordomo@lists.xmission.com "help"
  2380. Administrator:  twegner@fractint.org
  2381. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2382.  
  2383.  
  2384. -------------------------------------------------------------------------------
  2385.  
  2386. From: JimMuth@aol.com
  2387. Subject: (fractint) Re: C-FOTD  09-04-01  (Mandelbrot Mayhem [5])
  2388. Date: 11 Apr 2001 10:03:34 EDT
  2389.  
  2390. The Programmer Dude wondered:
  2391.  
  2392. >Why should there *be* an ultimate fractal?  Seems kind of limiting...
  2393.  
  2394. There is no 'ultimate' fractal.  I intended the statement to be taken 
  2395. ironically.
  2396.  
  2397. Jim M.
  2398.  
  2399. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2400. Post Message:   fractint@lists.xmission.com
  2401. Get Commands:   majordomo@lists.xmission.com "help"
  2402. Administrator:  twegner@fractint.org
  2403. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2404.  
  2405.  
  2406. -------------------------------------------------------------------------------
  2407.  
  2408. From: Programmer Dude <cjsonnack@mmm.com>
  2409. Subject: Re: (fractint) Fractint Development
  2410. Date: 11 Apr 2001 10:13:07 -0500
  2411.  
  2412. Andrew Coppin wrote:
  2413.  
  2414. >> The Intel chips ran programs in an architecture that had four segments:
  2415. >> a "Code" segment, a "Data" segment, a "Stack" segment and an "Extra"
  2416. >> segment (sometimes used as a second, extended Data segment).
  2417. >>
  2418. >> The "Memory Model" is what various configurations of the segments is
  2419. >> called.
  2420. >>
  2421. >> The "Medium" memory model, IIRC, has the stack and data sharing one
  2422. >> 64K segment, while the code lives in its own 64K segment.
  2423. >>
  2424. >> This doesn't mean the program can't access data outside these segments.
  2425. >> It can, but outside memory is "far" in the language of Intel memory...
  2426. > So it's an address space thing? What you're saying is that for certain
  2427. > address ranges you can miss out a couple of the MSBits? (Hence presumably
  2428. > smaller/faster code?)
  2429.  
  2430. You can miss out on eight of them, yes.
  2431.  
  2432. >> Ideally you'd like a compiler that let you treat memory as flat and make
  2433. >> all your pointers be the same type.
  2434. > Can't you just treat everything as "far"?
  2435.  
  2436. Yes, and I'm sure this is what the developers would like to do.  It does
  2437. require a re-write, since it was NOT done this way originally.  Remember
  2438. the age of FractInt; back then speed was an issue (well, it still is),
  2439. and universal far addressing was often significantly slower depending on
  2440. the compiler, compiler libraries and how you went about it.  As has been
  2441. mentioned, even back then, there were MS-DOS "extenders" that could
  2442. present a flat address space to the system, but your compiler needed to
  2443. know about it to use it.
  2444.  
  2445. > Hmm... I remember back on the old 6502 processor found in the legendary C64
  2446. > there was a "zero page" addressing mode, which only required an 8-bit
  2447. > address instead of the usuall "absolute addressing" which required a 16-bit
  2448. > address. I think you're saying the Intel CPU has a "base-offset" register or
  2449. > something that lets you use shorter addresses (and limits your address
  2450. > space). Close?
  2451.  
  2452. Yes.  In fact, it has four (mentioned in the first paragraph above).  It
  2453. allows you to use 16-bit addresses with the tradeoff that you only get a
  2454. 64K address space.  Unlike the 6502, your "segment" can start at any 256
  2455. byte boundary in the total address space.
  2456.  
  2457. -- 
  2458. |_ CJSonnack <Chris@Sonnack.com> _____________| How's my programming? |
  2459. |_ http://www.Sonnack.com/ ___________________| Call: 1-800-DEV-NULL  |
  2460. |_____________________________________________|_______________________|
  2461.  
  2462. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2463. Post Message:   fractint@lists.xmission.com
  2464. Get Commands:   majordomo@lists.xmission.com "help"
  2465. Administrator:  twegner@fractint.org
  2466. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2467.  
  2468.  
  2469. -------------------------------------------------------------------------------
  2470.  
  2471. From: Lee Skinner <LeeHSkinner@compuserve.com>
  2472. Subject: (fractint) C-FOTD  11-04-01  (Veiled Objects [7])
  2473. Date: 11 Apr 2001 13:10:58 -0400
  2474.  
  2475. >> I named the image "Veiled Objects" when I noticed that the smaller
  2476. features seem to be draped over the larger objects like a gossamer veil. =
  2477. <<
  2478.  
  2479. It reminds me of a spacecraft orbiting around a planet.
  2480.  
  2481. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2482. Post Message:   fractint@lists.xmission.com
  2483. Get Commands:   majordomo@lists.xmission.com "help"
  2484. Administrator:  twegner@fractint.org
  2485. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2486.  
  2487.  
  2488. -------------------------------------------------------------------------------
  2489.  
  2490. From: JimMuth@aol.com
  2491. Subject: (fractint) C-FOTD  12-04-01  {Blueberries [5])
  2492. Date: 12 Apr 2001 08:31:49 EDT
  2493.  
  2494.  
  2495. Classic FOTD -- April 12, 2001 (Rating 5)
  2496.  
  2497. Fractal visionaries and enthusiasts:
  2498.  
  2499. With today's fractal, which pictures a midget in the land of 
  2500. Z^sqrt2+C, we slip back to a rating of 5.  This perfectly 
  2501. average picture features a perfectly normal, though fractured, 
  2502. midget that exists in a remote valley of its parent fractal.
  2503.  
  2504. I visit the Z^sqrt2 figure frequently because in this figure the 
  2505. midgets are relatively easy to find compared to the midgets in 
  2506. other figures with exponents of Z between 1 and 2.  Since 1.4142 
  2507. is the square root of 2, the midgets in the Z^1.4142 figure 
  2508. reveal their hiding places by being surrounded with the same 
  2509. two-way symmetry that reveals midgets in the classic Z^2+C 
  2510. figure.  But in the Z^1.4142 figure the midgets lie far deeper 
  2511. and farther apart.
  2512.  
  2513. I named the image "Blueberries" when I noticed the berry-like 
  2514. depressions surrounding the barely visible midget at the center. 
  2515. There are roughly 9 berries in the outer ring and roughly 13 
  2516. berries in the smaller inner ring, which is not at all 
  2517. surprising, since 13/9 equals roughly 1.4142.
  2518.  
  2519. The parameter file takes over 23 minutes to render on a 200mhz 
  2520. Pentium machine.  It will run faster on a faster machine, but 
  2521. not so fast as to make a download of the GIF image file 
  2522. superfluous.  That image file may be found on the Web at:
  2523.  
  2524.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  2525.  
  2526. and at:
  2527.  
  2528.           <http://home.swbell.net/sdboyd56/fotd/>
  2529.  
  2530. The fractal weather today featured a steady rain from dawn to 
  2531. dusk.  The temperature of 52F (11C) combined with the rain to 
  2532. keep the cats snug indoors in their beds.
  2533.  
  2534. Once again we come to the end of the FOTD.  It was a relatively 
  2535. brief one because I'm still busy.  But eventually I'll catch up, 
  2536. and then, anything could happen.  Until next time, take care, 
  2537. and help preserve fractals from extinction.
  2538.  
  2539.  
  2540. Jim Muth
  2541. jamth@mindspring.com
  2542.  
  2543.  
  2544. START 20.0 PAR-FORMULA FILE================================
  2545.  
  2546. Blueberries        { ; time=0:23:16.75--SF5 on a P200
  2547.   reset=2001 type=formula formulafile=branchct.frm
  2548.   formulaname=MandelbrotBC passes=1
  2549.   center-mag=-1.04105767849226400/-1.142969742678717\
  2550.   00/1.290666e+007/1/90 params=1.414213562373/0/100/0
  2551.   float=y maxiter=2800 inside=0
  2552.   logmap=569 periodicity=10
  2553.   colors=000GU0GU0ET0CQ0AO08M06K04I02G00D00D00B00900\
  2554.   60050020020000000000000000000000000000000000000000\
  2555.   0000000200200400400400600620640840860A80A80AA0CC0C\
  2556.   E0CE0EG0EH0GH2GJ2GL2HL4HN4HP6JR6JR8LT8LVALVANXCNZC\
  2557.   NZEP`EPbEPbCRdCRdATdATd8Vd8Vd6Vd6Xd4Xd4Ze2Ze2Ze0`e\
  2558.   0`e0be0be0be0de0de0eg0eg0gg0gg0gg0ig0ig0kg0kg0kg0m\
  2559.   i0mi0oi0oi0oi0qi0qi0si0si0uk0si0sg0qg0qe0oe0od0ob0\
  2560.   mb0m`4k`6kZAiZCiXGiVHgVLgTNeTReRTeRXdP`dNbbNebLg`L\
  2561.   k`Jm`HqZHsZGvXGxXEzVEzVCzVAzTAzT8zR8zR6zN4zR6zV8zX\
  2562.   8z`AzbAzeCzgCzkEzmEzqGzsGzvHxxHvzJuzJszLszLozNmzNk\
  2563.   zNizNgvNeuPdsPbqP`mPZkPXiPVgRTdRRbRP`RNZRNZTLXRJXR\
  2564.   JXPHVPGYNG`NEcNEfLCiLAfJAcJ8_J6WI6SJ4PK4ML2JM0GN0D\
  2565.   O0AP0AQ0AR0AS0AT0AU0AV0AW0CX0EY0GZ0G_0E`0Ga0Gb0Gc0\
  2566.   Gd0He0Hf0Hg0Hh0Ji0Jj0Jk2Jl2Lm4Ln6Lo8Lp8NqANrCNsENt\
  2567.   EPuGPvHPwJPxJRyLRzNRzPRzPTzRTzTTzVTzVVzXVzZVz`Vz`V\
  2568.   zbTzdTzdTzeTzeTzgTzgRziRz
  2569.   }
  2570.  
  2571. frm:MandelbrotBC = { ; Z = Z^E + C
  2572.   e=p1
  2573.   p=real(p2)+PI
  2574.   q=2*PI*trunc(p/(2*PI))
  2575.   r=real(p2)-q
  2576.   Z=C=Pixel:
  2577.     Z=log(Z)
  2578.     IF(imag(Z)>r)
  2579.       Z=Z+flip(2*PI)
  2580.     ENDIF
  2581.     Z=exp(e*(Z+flip(q)))+C
  2582.   |Z|<100
  2583. }
  2584.  
  2585. END 20.0 PAR-FORMULA FILE==================================
  2586.  
  2587. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2588. Post Message:   fractint@lists.xmission.com
  2589. Get Commands:   majordomo@lists.xmission.com "help"
  2590. Administrator:  twegner@fractint.org
  2591. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2592.  
  2593.  
  2594. -------------------------------------------------------------------------------
  2595.  
  2596. From: "Jonathan Osuch" <osuchj@qwest.net>
  2597. Subject: Re: (fractint) Re: C-FOTD 11-04-01 (Veiled Objects [7])
  2598. Date: 12 Apr 2001 19:54:54 -0500
  2599.  
  2600. > That's the minor mystery!  The function is mentioned in the fractint.frm
  2601. > file, but no one seems to know where the function came from or whether it
  2602. has
  2603. > any use other than creating fractals.
  2604.  
  2605. From the ikenaga.frm file that came with FRAC'Cetera volume 2 issue 7 (Jon
  2606. Horner's publication):
  2607.  
  2608.   IKENAGA - Formula originally discovered by Bruce Ikenaga, at Western
  2609. Reserve
  2610.   University, Indiana.  Documented in Dewdney's `Armchair Universe".
  2611.  
  2612.           The Ikenaga set is:    Z(n+1) =Z(n)^3 + (C-1) * Z(n) - C
  2613.           where:                      Z(n) = x + yi and C = a + bi
  2614.  
  2615. Jonathan
  2616.  
  2617.  
  2618.  
  2619. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2620. Post Message:   fractint@lists.xmission.com
  2621. Get Commands:   majordomo@lists.xmission.com "help"
  2622. Administrator:  twegner@fractint.org
  2623. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2624.  
  2625.  
  2626. -------------------------------------------------------------------------------
  2627.  
  2628. From: Bill Jemison <fishburnIII@compuserve.com>
  2629. Subject: (fractint) Jonathan - puzzling par
  2630. Date: 12 Apr 2001 23:15:35 -0400
  2631.  
  2632. Jonathan,
  2633.  
  2634. I can't get the following par to generate at any higher res that SF5
  2635. (640x480x256).
  2636.  
  2637. Is this a bug? or is something going on that I am missing?
  2638.  
  2639. ***************************************************
  2640.  
  2641. billtest           {
  2642.                      ;  Version 2001 Patchlevel 6
  2643.   reset=3D2001 type=3Dlorenz passes=3Dd
  2644.   center-mag=3D+0.00000000000000000/+15.00000000000000000/1.333333/1.3333=
  2645.  
  2646.   params=3D0.02/5/15/1 float=3Dy maxiter=3D1000 fillcolor=3D0 inside=3D0
  2647.   outside=3D0 cyclerange=3D1/1 sound=3Dbeep/fm orbitdelay=3D1000 showorbi=
  2648. t=3Dyes
  2649.   colors=3D000pdQ0e00eee00e0eeL0eeeLLLLLzLzLLzzzLLzLzzzLzzz000555<3>HHHKK=
  2650. KOO\
  2651.   O<3>ccchhhmmmssszzz00z<3>z0z<3>z00<3>zz0<3>0z0<3>0zz<2>0GzVVz<3>zVz<3>z=
  2652. V\
  2653.   V<3>zzV<3>VzV<3>Vzz<2>Vbzhhz<3>zhz<3>zhh<3>zzh<3>hzh<3>hzz<2>hlz00S<3>S=
  2654. 0\
  2655.   S<3>S00<3>SS0<3>0S0<3>0SS<2>07SEES<3>SES<3>SEE<3>SSE<3>ESE<3>ESS<2>EHSK=
  2656. K\
  2657.   S<2>QKSSKSSKQSKOSKMSKK<2>SQKSSKQSKOSKMSKKSK<2>KSQKSSKQSKOSKMS00G<3>G0G<=
  2658. 3\
  2659.   >G00<3>GG0<3>0G0<3>0GG<2>04G88G<2>E8GG8GG8EG8CG8AG88<2>GE8GG8EG8CG8AG88=
  2660. G\
  2661.   8<2>8GE8GG8EG8CG8AGBBG<2>FBGGBGGBFGBDGBCGBB<2>GFBGGBFGBDGBCGBBGB<2>BGFB=
  2662. G\
  2663.   GBFGBDGBCG000<6>000
  2664.   }
  2665.  
  2666. ****************************************************
  2667.  
  2668. Bill
  2669.  
  2670. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2671. Post Message:   fractint@lists.xmission.com
  2672. Get Commands:   majordomo@lists.xmission.com "help"
  2673. Administrator:  twegner@fractint.org
  2674. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2675.  
  2676.  
  2677. -------------------------------------------------------------------------------
  2678.  
  2679. From: JimMuth@aol.com
  2680. Subject: (fractint) C-FOTD  13-04-01  (Squirt [6])
  2681. Date: 12 Apr 2001 23:42:46 EDT
  2682.  
  2683.  
  2684. Classic FOTD -- April 13, 2001 (Rating 6)
  2685.  
  2686. Fractal visionaries and enthusiasts:
  2687.  
  2688. It's been another very busy day here at Fractal Central, but not 
  2689. so busy that I needed to forego my daily fractal search.  It was 
  2690. however too busy for the enlightening philosophy that you've all 
  2691. been waiting for.  But there's a long future ahead, and the 
  2692. philosophy will come at the proper time.  (I don't want to solve 
  2693. the riddle of the universe too soon -- that would take all the 
  2694. fun out of it.)
  2695.  
  2696. Today's fractal is named "Squirt".  I gave it this name because 
  2697. the image pictures another midget in the Z^(sqrt2)+C Mandeloid, 
  2698. and the Fractint abbreviation for 'square root' is 'sqrt', and 
  2699. if the letters u and i are added to the middle of 'sqrt', the 
  2700. word becomes 'squirt'.  Another reason is that I often pronounce 
  2701. 'square root' as 'squirt'.
  2702.  
  2703. The image, which vaguely resembles an octopus or starfish, is a 
  2704. bit above average, just enough to deserve the rating of 6 that I 
  2705. gave it.  These 'squirt' midgets are becoming more interesting 
  2706. as I develop the knack of finding them.  And the Z^(sqrt2)+C 
  2707. figure, unlike the familiar Z^2+C figure, is infinite in its 
  2708. surface extent.
  2709.  
  2710. The attached parameter file takes 29 minutes to render on an 
  2711. aging Pentium running at 200mhz.  Newer and faster machines will 
  2712. render the image in far less time.  Older, slower ones will take 
  2713. far longer.
  2714.  
  2715. Regardless, the GIF file of the image will soon be posted to:
  2716.  
  2717.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  2718.  
  2719. and to:
  2720.  
  2721.           <http://home.swbell.net/sdboyd56/fotd/>
  2722.  
  2723. The fractal weather today was partly cloudy with an afternoon 
  2724. temperature of 66F (19C).  These conditions must have suited the 
  2725. dynamic duo of cats perfectly, since they spent the entire 
  2726. afternoon basking in the on-again off-again sunshine.  As for 
  2727. me, I spent the afternoon trying to work my way through the 
  2728. backlog, having only minor success.
  2729.  
  2730. Well, I see it's now time to shut down the fractal place and 
  2731. call it a night.  Until next time, when I'll return with more 
  2732. goodies, take care and be ever vigilant for that once-in-a-
  2733. lifetime fractal.
  2734.  
  2735.  
  2736. Jim Muth
  2737. jamth@mindspring.com
  2738.  
  2739.  
  2740. START 20.0 PAR-FORMULA FILE================================
  2741.  
  2742. Squirt             { ; time=0:29:41.84--SF5 on a P200
  2743.   reset=2001 type=formula formulafile=branchct.frm
  2744.   formulaname=MandelbrotBC passes=1
  2745.   center-mag=-0.91532246418772030/+0.387841135413711\
  2746.   50/2.102521e+012/1/90 params=1.414213562373/0/120/0
  2747.   float=y maxiter=2800 inside=0 logmap=890
  2748.   mathtolerance=/1 periodicity=10
  2749.   colors=000IgmEzwEzwEzwGzxGzxGzxGzzGzzHzzHzzHzzHzzJ\
  2750.   zzJzzJzzJzzKzzJzzJxzJwzJtxJrwJouJlrJkqJhoJfnJckJbi\
  2751.   J_hJXeJVcHSbHQ`HNYHKXHJVHGSBEQ8BPBAN77K24J02HH0EH0\
  2752.   DH0BH0AJ0BK0BM2DN5DP7EQAESDETGGVHGXKHYNH_QH`TJbVJc\
  2753.   YKe`KfcKheMihMkkNlnNloNlnNlnMklMkkMkkKiiKiiJihJihH\
  2754.   hfHheHheGfcGfcEfbEfbEe`Ge`Hc_Jc_KcYMbYNbXPbXQ`XS`V\
  2755.   T`VV_TX_TY_S_YS`YS`YQbXQcXPeXPfVNhVNiVMkTMlTMnTKoS\
  2756.   KqSJrSJtQHuQHwQHwPKuPMuPPuNQtNTtNVtNYrM_rMbrMcqMfq\
  2757.   KhqKkoKloJooJqnJtnJunHxlHzlHzlHzlJznJznKxoKwoMtqMr\
  2758.   qNqrNorNlrPktPitQhuQeuScwSbwT`xTYxTXxVVzVTzXQzXPzY\
  2759.   NzYMz_MzYKzXKzXJzVJzVHzTHzTGxSGxQExQExPDzUDzZPzcUz\
  2760.   UPzUEzK8zJ8xJ7tH7qH5lG5iG4eE4bD2_D2YB1YB1XA0_A0`80\
  2761.   c50i80iB0fE0cH1`K1YM2XP4TS4QV5NY5K`7Hc4Hb7G`AG_BEY\
  2762.   EEYHDXJDVMDTPBSQBSTAQVAPY8N`8Mb8Me7Kh7Ji5Hl5Hn5Go4\
  2763.   Eq4Dr4Br4At48u47u45w44x42z42z21z20z20z20z20z20z20z\
  2764.   20z20z20z10z20z40z40z50z7
  2765.   }
  2766.  
  2767. frm:MandelbrotBC = { ; Z = Z^E + C
  2768.   e=p1
  2769.   p=real(p2)+PI
  2770.   q=2*PI*trunc(p/(2*PI))
  2771.   r=real(p2)-q
  2772.   Z=C=Pixel:
  2773.     Z=log(Z)
  2774.     IF(imag(Z)>r)
  2775.       Z=Z+flip(2*PI)
  2776.     ENDIF
  2777.     Z=exp(e*(Z+flip(q)))+C
  2778.   |Z|<100
  2779. }
  2780.  
  2781. END 20.0 PAR-FORMULA FILE==================================
  2782.  
  2783. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2784. Post Message:   fractint@lists.xmission.com
  2785. Get Commands:   majordomo@lists.xmission.com "help"
  2786. Administrator:  twegner@fractint.org
  2787. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2788.  
  2789.  
  2790. -------------------------------------------------------------------------------
  2791.  
  2792. From: "Multiple Bogeys" <neo_1061@hotmail.com>
  2793. Subject: Re: (fractint) Fractint Development
  2794. Date: 13 Apr 2001 03:57:28 -0400
  2795.  
  2796.  
  2797. ------=_NextPart_001_0000_01C0C3CD.DC545440
  2798. Content-Type: text/plain; charset="iso-8859-1"
  2799. Content-Transfer-Encoding: quoted-printable
  2800.  
  2801. > Can't you just treat everything as "far"?
  2802.  
  2803. Sure, which solves problems of total available memory. But you still get =
  2804. problems trying to maintain any contiguous data structure (e.g. array) sp=
  2805. anning more than 64kb. With flat memory this is as easy as smaller data s=
  2806. tructures.<br clear=3Dall><hr>Get Your Private, Free E-mail from MSN Hotm=
  2807. ail at <a href=3D"http://www.hotmail.com">http://www.hotmail.com</a>.<br>=
  2808. </p>
  2809.  
  2810. ------=_NextPart_001_0000_01C0C3CD.DC545440
  2811. Content-Type: text/html; charset="iso-8859-1"
  2812. Content-Transfer-Encoding: quoted-printable
  2813.  
  2814. <HTML><BODY STYLE=3D"font:10pt verdana; border:none;"><DIV>> Can't you=
  2815.  just treat everything as "far"?<BR></DIV> <DIV>Sure, which solves proble=
  2816. ms of total available memory. But you still get problems trying to mainta=
  2817. in any contiguous data structure (e.g. array) spanning more than 64kb. Wi=
  2818. th flat memory this is as easy as smaller data structures.</DIV> <DIV>&nb=
  2819. sp;</DIV> <DIV> </DIV></BODY></HTML><DIV><BR><br clear=3Dall><hr>Get=
  2820.  Your Private, Free E-mail from MSN Hotmail at <a href=3D"http://www.hotm=
  2821. ail.com">http://www.hotmail.com</a>.<br></p></DIV>
  2822.  
  2823. ------=_NextPart_001_0000_01C0C3CD.DC545440--
  2824.  
  2825. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2826. Post Message:   fractint@lists.xmission.com
  2827. Get Commands:   majordomo@lists.xmission.com "help"
  2828. Administrator:  twegner@fractint.org
  2829. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2830.  
  2831.  
  2832. -------------------------------------------------------------------------------
  2833.  
  2834. From: "Jonathan Osuch" <osuchj@qwest.net>
  2835. Subject: Re: (fractint) Jonathan - puzzling par
  2836. Date: 13 Apr 2001 07:56:34 -0500
  2837.  
  2838. Bill,
  2839.  
  2840. > I can't get the following par to generate at any higher res that SF5
  2841. > (640x480x256).
  2842.  
  2843. > Is this a bug? or is something going on that I am missing?
  2844.  
  2845. Here is an excerpt from lorenz.c:
  2846.  
  2847. >>
  2848. /* BAD_PIXEL is used to cutoff orbits that are diverging. It might be better
  2849. to test the actual floating point orbit values, but this seems safe for now.
  2850. A higher value cannot be used - to test, turn off math coprocessor and
  2851. use +2.24 for type ICONS. If BAD_PIXEL is set to 20000, this will abort
  2852. Fractint with a math error. Note that this approach precludes zooming in
  2853. very
  2854. far to an orbit type. */
  2855.  
  2856. #define BAD_PIXEL  10000L    /* pixels can't get this big */
  2857. <<
  2858.  
  2859. Setting BAD_PIXEL to 20000 does let your par generate.  I suspect that upon
  2860. further zooming in, the same thing will happen.  IMO, this qualifies as a
  2861. bug.  Although I'm not sure what we would gain by being able to zoom into
  2862. these types.  Tim may have more insight into what the problem is.
  2863.  
  2864. Jonathan
  2865.  
  2866.  
  2867.  
  2868. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2869. Post Message:   fractint@lists.xmission.com
  2870. Get Commands:   majordomo@lists.xmission.com "help"
  2871. Administrator:  twegner@fractint.org
  2872. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2873.  
  2874.  
  2875. -------------------------------------------------------------------------------
  2876.  
  2877. From: DeBow Freed <bmc1@airmail.net>
  2878. Subject: Re: (fractint) Re: C-FOTD 11-04-01 (Veiled Objects [7])
  2879. Date: 13 Apr 2001 11:28:54 -0500
  2880.  
  2881. <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
  2882. <html>
  2883. Thanks to Jonathan!
  2884. <p>A Bruce Ikenaga currently on the Math Faculty at Millersberg, PA last
  2885. year denied any knowledge or authorship of the IF's. I was unable to locate
  2886. any other "Ikenaga" in the US, Europe or Japan using various Mathematical
  2887. Society Membership Records available at this January's Joint Math Meeting
  2888. in New Orleans.
  2889. <p>Are their <u>two</u> Bruce Ikenaga's, both teaching math at US universities?
  2890. Maybe this is akin to expressing surprise that there are 2 John Smith's
  2891. selling pork bellies in Chicago, but I don't know common the name Ikenaga
  2892. is, nor the joint probability of first name Bruce and being a practicing
  2893. Math academic.
  2894. <p>Perhaps the "Veiled Object" is really just Ikenaga.
  2895. <br> 
  2896. <p>Freed
  2897. <br> 
  2898. <br> 
  2899. <p>Jonathan Osuch wrote:
  2900. <blockquote TYPE=CITE>> That's the minor mystery!  The function is
  2901. mentioned in the fractint.frm
  2902. <br>> file, but no one seems to know where the function came from or whether
  2903. it
  2904. <br>has
  2905. <br>> any use other than creating fractals.
  2906. <p>>From the ikenaga.frm file that came with FRAC'Cetera volume 2 issue
  2907. 7 (Jon
  2908. <br>Horner's publication):
  2909. <p>  IKENAGA - Formula originally discovered by Bruce Ikenaga, at
  2910. Western
  2911. <br>Reserve
  2912. <br>  University, Indiana.  Documented in Dewdney's `Armchair
  2913. Universe".
  2914. <p>          The Ikenaga set
  2915. is:    Z(n+1) =Z(n)^3 + (C-1) * Z(n) - C
  2916. <br>          where:                     
  2917. Z(n) = x + yi and C = a + bi
  2918. <p>Jonathan
  2919. <p>--------------------------------------------------------------
  2920. <br>Thanks for using Fractint, The Fractals and Fractint Discussion List
  2921. <br>Post Message:   fractint@lists.xmission.com
  2922. <br>Get Commands:   majordomo@lists.xmission.com "help"
  2923. <br>Administrator:  twegner@fractint.org
  2924. <br>Unsubscribe:    majordomo@lists.xmission.com "unsubscribe
  2925. fractint"</blockquote>
  2926. </html>
  2927.  
  2928.  
  2929. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2930. Post Message:   fractint@lists.xmission.com
  2931. Get Commands:   majordomo@lists.xmission.com "help"
  2932. Administrator:  twegner@fractint.org
  2933. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2934.  
  2935.  
  2936. -------------------------------------------------------------------------------
  2937.  
  2938. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  2939. Subject: Re: (fractint) Re: C-FOTD 11-04-01 (Veiled Objects [7])
  2940. Date: 13 Apr 2001 11:38:14 -0500
  2941.  
  2942. DeBow Freed wrote:
  2943. >
  2944. > Are their two Bruce Ikenaga's, both teaching math 
  2945. > at US universities?
  2946.  
  2947. No, it is the same person.  All details may be found at his home page
  2948. and the associated web pages (see the page on Biographical Information):
  2949.  
  2950.        http://www.millersv.edu/~bikenaga/
  2951.  
  2952. Sincerely,
  2953. P.N.L.
  2954. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  2955.  
  2956. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2957. Post Message:   fractint@lists.xmission.com
  2958. Get Commands:   majordomo@lists.xmission.com "help"
  2959. Administrator:  twegner@fractint.org
  2960. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2961.  
  2962.  
  2963. -------------------------------------------------------------------------------
  2964.  
  2965. From: DeBow Freed <bmc1@airmail.net>
  2966. Subject: Re: (fractint) Re: C-FOTD 11-04-01 (Veiled Objects [7])
  2967. Date: 13 Apr 2001 12:07:16 -0500
  2968.  
  2969. <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
  2970. <html>
  2971. Thanks Paul.
  2972. <p>Ikenaga's response to my query last year (and I believe his homepage
  2973. also lists) one fairly lengthy Adobe-ized set of "classnotes" concerning
  2974. Fractals which he (Ikenaga) stated were "trivial".
  2975. <p>He also said he had, indeed, heard of a program called "Fractint", which
  2976. he liked, and perhaps would take a look at some of last year's pod of Ikenaga-based
  2977. FOTD's from Jim (which I forwarded to him) and some the Discussion Group
  2978. pages. Subsequently, <i>no mas </i>was ever heard from Dr. Ikenaga<i>.</i>
  2979. <p>He twice denied any recollection of having produced anything substantive.
  2980. <br>Perhaps we should let him in on the secret.
  2981. <p>DeBow
  2982. <p>"Paul N. Lee" wrote:
  2983. <blockquote TYPE=CITE>DeBow Freed wrote:
  2984. <br>>
  2985. <br>> Are their two Bruce Ikenaga's, both teaching math
  2986. <br>> at US universities?
  2987. <p>No, it is the same person.  All details may be found at his home
  2988. page
  2989. <br>and the associated web pages (see the page on Biographical Information):
  2990. <p>       <a href="http://www.millersv.edu/~bikenaga/">http://www.millersv.edu/~bikenaga/</a>
  2991. <p>Sincerely,
  2992. <br>P.N.L.
  2993. <br>--------------------------------------------------------------
  2994. <br><a href="http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go">http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go</a>
  2995. <p>--------------------------------------------------------------
  2996. <br>Thanks for using Fractint, The Fractals and Fractint Discussion List
  2997. <br>Post Message:   fractint@lists.xmission.com
  2998. <br>Get Commands:   majordomo@lists.xmission.com "help"
  2999. <br>Administrator:  twegner@fractint.org
  3000. <br>Unsubscribe:    majordomo@lists.xmission.com "unsubscribe
  3001. fractint"</blockquote>
  3002. </html>
  3003.  
  3004.  
  3005. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3006. Post Message:   fractint@lists.xmission.com
  3007. Get Commands:   majordomo@lists.xmission.com "help"
  3008. Administrator:  twegner@fractint.org
  3009. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3010.  
  3011.  
  3012. -------------------------------------------------------------------------------
  3013.  
  3014. From: Bill Jemison <fishburnIII@compuserve.com>
  3015. Subject: (fractint) Jonathan - puzzling par
  3016. Date: 13 Apr 2001 13:07:04 -0400
  3017.  
  3018. Thanks Jonathan (although I don't have a clue as to what you are talking =
  3019.  
  3020. about <g>) As you may have surmised, my reason for zooming into this =
  3021.  
  3022. type fractal is strictly for sound-generation purposes.
  3023.   =
  3024.  
  3025. ************************
  3026.  
  3027. > I can't get the following par to generate at any higher res that SF5
  3028. > (640x480x256).
  3029.  
  3030. > Is this a bug? or is something going on that I am missing?
  3031.  
  3032. Here is an excerpt from lorenz.c:
  3033.  
  3034. >>
  3035. /* BAD_PIXEL is used to cutoff orbits that are diverging. It might be =
  3036.  
  3037. better
  3038. to test the actual floating point orbit values, but this seems safe for =
  3039.  
  3040. now. A higher value cannot be used - to test, turn off math coprocessor a=
  3041. nd
  3042. use +2.24 for type ICONS. If BAD_PIXEL is set to 20000, this will abort
  3043. Fractint with a math error. Note that this approach precludes zooming in
  3044. very far to an orbit type. */
  3045.  
  3046. #define BAD_PIXEL  10000L    /* pixels can't get this big */
  3047. <<
  3048.  
  3049. Setting BAD_PIXEL to 20000 does let your par generate.  I suspect that up=
  3050. on
  3051. further zooming in, the same thing will happen.  IMO, this qualifies as a=
  3052.  
  3053. bug.  Although I'm not sure what we would gain by being able to zoom into=
  3054.  
  3055. these types.  Tim may have more insight into what the problem is.
  3056.  
  3057. Jonathan
  3058.  
  3059.  
  3060.  
  3061. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3062. Post Message:   fractint@lists.xmission.com
  3063. Get Commands:   majordomo@lists.xmission.com "help"
  3064. Administrator:  twegner@fractint.org
  3065. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3066.  
  3067.  
  3068.  
  3069.  
  3070. ----------------------- Internet Header --------------------------------
  3071. Sender: owner-fractint@lists.xmission.com
  3072. Received: from lists.xmission.com (lists.xmission.com [198.60.22.7])
  3073.     by spdmgaad.compuserve.com (8.9.3/8.9.3/SUN-1.9) with ESMTP id =
  3074.  
  3075. IAA03555;
  3076.     Fri, 13 Apr 2001 08:59:27 -0400 (EDT)
  3077. Received: from domo by lists.xmission.com with local (Exim 2.12 #2)
  3078.     id 14o39G-0001EJ-00
  3079.     for fractint-gooutt@lists.xmission.com; Fri, 13 Apr 2001 06:58:02 =
  3080.  
  3081. -0600
  3082. Delivered-To: fixup-fractint@lists.xmission.com@fixme
  3083. Message-ID: <000801c0c419$6e896b20$0100a8c0@bananasenior>
  3084. References: <200104122315_MC2-CC59-CBE2@compuserve.com>
  3085. MIME-Version: 1.0
  3086. Content-Type: text/plain;
  3087.     charset=3D"iso-8859-1"
  3088. Content-Transfer-Encoding: 7bit
  3089. X-Priority: 3
  3090. X-MSMail-Priority: Normal
  3091. X-Mailer: Microsoft Outlook Express 5.50.4133.2400
  3092. X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400
  3093. Sender: owner-fractint@lists.xmission.com
  3094. Precedence: bulk
  3095. Reply-To: fractint@lists.xmission.com
  3096.  
  3097. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3098. Post Message:   fractint@lists.xmission.com
  3099. Get Commands:   majordomo@lists.xmission.com "help"
  3100. Administrator:  twegner@fractint.org
  3101. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3102.  
  3103.  
  3104. -------------------------------------------------------------------------------
  3105.  
  3106. From: DeBow Freed <bmc1@airmail.net>
  3107. Subject: Re: (fractint) Re: C-FOTD 11-04-01 (Veiled Objects [7])
  3108. Date: 13 Apr 2001 12:20:48 -0500
  3109.  
  3110. <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
  3111. <html>
  3112. To all-
  3113. <p>Before I disseminate more misinformation than usual, Dr. Ik's "classnotes"
  3114. [his phrase] on "Self-SimilarFractals" are available at the homepage address
  3115. provided by PNL in the form of a <u>Mathematica 2.1 Notebook</u> [<b>not
  3116. Adobe</b>, as I previously stated], which I did not have the ability to
  3117. convert to legible text at the time.
  3118. <p>When I heard nothing further from Dr. Ikenaga, I (obviously mistakenly)
  3119. assumed he knew his own work better than I ever would, gave up the search
  3120. for archaic versions of Mathematica software with which to translate his
  3121. 2.1 Notebook, and took the man at his word.
  3122. <p>Funny, wonder what the real genesis of the functionals was.
  3123. <p>Freed
  3124. <br> 
  3125. <p>DeBow Freed wrote:
  3126. <blockquote TYPE=CITE>Thanks Paul.
  3127. <p>Ikenaga's response to my query last year (and I believe his homepage
  3128. also lists) one fairly lengthy Adobe-ized set of "classnotes" concerning
  3129. Fractals which he (Ikenaga) stated were "trivial".
  3130. <p>He also said he had, indeed, heard of a program called "Fractint", which
  3131. he liked, and perhaps would take a look at some of last year's pod of Ikenaga-based
  3132. FOTD's from Jim (which I forwarded to him) and some the Discussion Group
  3133. pages. Subsequently, <i>no mas </i>was ever heard from Dr. Ikenaga<i>.</i>
  3134. <p>He twice denied any recollection of having produced anything substantive.
  3135. <br>Perhaps we should let him in on the secret.
  3136. <p>DeBow
  3137. <p>"Paul N. Lee" wrote:
  3138. <blockquote TYPE=CITE>DeBow Freed wrote:
  3139. <br>>
  3140. <br>> Are their two Bruce Ikenaga's, both teaching math
  3141. <br>> at US universities?
  3142. <p>No, it is the same person.  All details may be found at his home
  3143. page
  3144. <br>and the associated web pages (see the page on Biographical Information):
  3145. <p>       <a href="http://www.millersv.edu/~bikenaga/">http://www.millersv.edu/~bikenaga/</a>
  3146. <p>Sincerely,
  3147. <br>P.N.L.
  3148. <br>--------------------------------------------------------------
  3149. <br><a href="http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go">http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go</a>
  3150. <p>--------------------------------------------------------------
  3151. <br>Thanks for using Fractint, The Fractals and Fractint Discussion List
  3152. <br>Post Message:   fractint@lists.xmission.com
  3153. <br>Get Commands:   majordomo@lists.xmission.com "help"
  3154. <br>Administrator:  twegner@fractint.org
  3155. <br>Unsubscribe:    majordomo@lists.xmission.com "unsubscribe
  3156. fractint"</blockquote>
  3157. using Fractint, The Fractals and Fractint Discussion List Post Message:
  3158. fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com
  3159. "help" Administrator: twegner@fractint.org Unsubscribe: majordomo@lists.xmission.com
  3160. "unsubscribe fractint"</blockquote>
  3161. </html>
  3162.  
  3163.  
  3164. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3165. Post Message:   fractint@lists.xmission.com
  3166. Get Commands:   majordomo@lists.xmission.com "help"
  3167. Administrator:  twegner@fractint.org
  3168. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3169.  
  3170.  
  3171. -------------------------------------------------------------------------------
  3172.  
  3173. From: "Andrew Coppin" <orphi69@hotmail.com>
  3174. Subject: Re: (fractint) Re: C-FOTD 11-04-01 (Veiled Objects [7])
  3175. Date: 13 Apr 2001 19:40:42 -0000
  3176.  
  3177. >From: "Jonathan Osuch" <osuchj@qwest.net>
  3178. >Reply-To: fractint@lists.xmission.com
  3179. >To: <fractint@lists.xmission.com>
  3180. >Subject: Re: (fractint) Re: C-FOTD 11-04-01 (Veiled Objects [7])
  3181. >Date: Thu, 12 Apr 2001 19:54:54 -0500
  3182. >
  3183. >           The Ikenaga set is:    Z(n+1) =Z(n)^3 + (C-1) * Z(n) - C
  3184. >           where:                      Z(n) = x + yi and C = a + bi
  3185. >
  3186. >Jonathan
  3187.  
  3188. Now *that* was what I was asking!
  3189.  
  3190. Thanks.
  3191. Andrew.
  3192.  
  3193. _________________________________________________________________________
  3194. Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
  3195.  
  3196.  
  3197. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3198. Post Message:   fractint@lists.xmission.com
  3199. Get Commands:   majordomo@lists.xmission.com "help"
  3200. Administrator:  twegner@fractint.org
  3201. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3202.  
  3203.  
  3204. -------------------------------------------------------------------------------
  3205.  
  3206. From: DeBow Freed <bmc1@airmail.net>
  3207. Subject: Re: (fractint) Re: C-FOTD 11-04-01 (Veiled Objects [7])
  3208. Date: 13 Apr 2001 15:35:36 -0500
  3209.  
  3210. <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
  3211. <html>
  3212. Fellow Fractaliers:
  3213. <p>FYI, what follows is a <u>direct quote</u> from Dr. Ikenaga's response
  3214. to the second of a total of 4 messages I sent to him in September of last
  3215. year attempting to inquire about "Ikenaga functions" in general, and the
  3216. publication called "<i><u>Self Similar Fractals</u></i>" listed in his
  3217. own Bibliograhy on his own Homepage in specific (addresss provided in PNL's
  3218. earlier note):
  3219. <p><b>"Dear Dr. Freed-</b>
  3220. <p> <b>  "I wish I could be of help, but I have no idea what
  3221. you're</b>
  3222. <br><b>  talking about </b>[<i>?????? </i>- DBF]<b>. If someone named
  3223. something after me,</b>
  3224. <br><b>  they certainly never told me about it. :-)</b><b></b>
  3225. <p><b>    "And I've never written articles about fractals
  3226. </b><i>[??????-
  3227. </i>DBF<i>]</i><b>. Do you</b>
  3228. <br><b>  have references for them?</b>
  3229. <p><b>     "Also, are you sure that whoever is doing
  3230. this </b><i>[Jim Muth</i><b>-</b>DBF]<b> got the name right?</b>
  3231. <p><b>     "(Thanks for mentioning fractint. I always
  3232. enjoyed that program,</b>
  3233. <br><b>  but I'd thought they stopped developing it. Maybe I should
  3234. go look</b>
  3235. <br><b>  again.)</b>
  3236. <p><b>  Bruce"</b>
  3237. <p>    After 2 more similarly confusing attempts to gain
  3238. further information regarding the functions themselves or Dr. Ikenaga's
  3239. publication entitled "Self-Similar Fractals" which was at that time also
  3240. referenced in his own Homepage, I gave up further efforts at deciphering
  3241. Dr. Ikenaga's courteous but paradoxical responses.
  3242. <p>DeBow Freed (a/k/a DBF)
  3243. <p>  -----
  3244. <br>  Bruce Ikenaga                   
  3245. bikenaga@marauder.millersv.edu
  3246. <br>  Dept. of Math, P.O. Box 1002,    :::::::::::::::::::
  3247. <br>  Millersville University,
  3248. <br>  Millersville, PA 17551-0302
  3249. <p>Andrew Coppin wrote:
  3250. <blockquote TYPE=CITE>>From: "Jonathan Osuch" <osuchj@qwest.net>
  3251. <br>>Reply-To: fractint@lists.xmission.com
  3252. <br>>To: <fractint@lists.xmission.com>
  3253. <br>>Subject: Re: (fractint) Re: C-FOTD 11-04-01 (Veiled Objects [7])
  3254. <br>>Date: Thu, 12 Apr 2001 19:54:54 -0500
  3255. <br>>
  3256. <br>>           The Ikenaga
  3257. set is:    Z(n+1) =Z(n)^3 + (C-1) * Z(n) - C
  3258. <br>>           where:                     
  3259. Z(n) = x + yi and C = a + bi
  3260. <br>>
  3261. <br>>Jonathan
  3262. <p>Now *that* was what I was asking!
  3263. <p>Thanks.
  3264. <br>Andrew.
  3265. <p>_________________________________________________________________________
  3266. <br>Get Your Private, Free E-mail from MSN Hotmail at <a href="http://www.hotmail.com">http://www.hotmail.com</a>.
  3267. <p>--------------------------------------------------------------
  3268. <br>Thanks for using Fractint, The Fractals and Fractint Discussion List
  3269. <br>Post Message:   fractint@lists.xmission.com
  3270. <br>Get Commands:   majordomo@lists.xmission.com "help"
  3271. <br>Administrator:  twegner@fractint.org
  3272. <br>Unsubscribe:    majordomo@lists.xmission.com "unsubscribe
  3273. fractint"</blockquote>
  3274. </html>
  3275.  
  3276.  
  3277. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3278. Post Message:   fractint@lists.xmission.com
  3279. Get Commands:   majordomo@lists.xmission.com "help"
  3280. Administrator:  twegner@fractint.org
  3281. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3282.  
  3283.  
  3284. -------------------------------------------------------------------------------
  3285.  
  3286. From: JimMuth@aol.com
  3287. Subject: (fractint) C-FOTD  14-04-01  (Squirt II [5])
  3288. Date: 13 Apr 2001 22:18:35 EDT
  3289.  
  3290.  
  3291. Classic FOTD -- April 14, 2001 (Rating 5)
  3292.  
  3293. Fractal visionaries and enthusiasts:
  3294.  
  3295. Another busy and somewhat frustrating day has ended, to be 
  3296. replaced by a busy and equally frustrating evening.  But at 
  3297. least the fractals were working right.
  3298.  
  3299. Today's FOTD might have been named "Son of the Squirt", or 
  3300. "Return of the Squirt", or "Curse of the Squirt", or even "The 
  3301. Squirt Rises Again".  All these names might have happened, but 
  3302. they did not.  Instead I named today's image "Squirt II".
  3303.  
  3304. I gave the fractal this unassuming name because it comes from 
  3305. the same Mandeloid as yesterday's image, though from a far 
  3306. different layer of the hyper-dimensional corkscrew caused by the 
  3307. multi-valued nature of the complex log function.
  3308.  
  3309. The image, a picture of a rather gaudily colored midget in a 
  3310. valley of the Z^(sqrt2)+C figure, is as unassuming as its name.  
  3311. Because of several flaws, I could rate the image no higher than 
  3312. an average 5, but it's still an interesting view of things that 
  3313. exist in the unexplored depths of the Squirt fractal.
  3314.  
  3315. The parameter file takes over 24 minutes to run on a 200mhz 
  3316. Pentium.  All but the most hardy fractaliers will choose to 
  3317. download the GIF image file from Paul's web site at:
  3318.  
  3319.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  3320.  
  3321. or from Scott's site at:
  3322.  
  3323.           <http://home.swbell.net/sdboyd56/fotd/>
  3324.  
  3325. The fractal weather today started with a steady rain.  But by 
  3326. 11am the rain ended and the sky cleared, leading to a sunny 
  3327. afternoon with a temperature of 77F (25C).  The fractal cats 
  3328. found the conditions ideal, and showed their approval by 
  3329. spending the entire afternoon relaxing outdoors.
  3330.  
  3331. My day was far from ideal, though the day's fractal partly made 
  3332. up for all the other things that went wrong.  I'll try to have a 
  3333. better day tomorrow, when I'll also return with the next FOTD.  
  3334. Until then, take care, and perhaps I'll soon tackle the remote 
  3335. parts of the Zexpe (Z^2.71828...) fractal.
  3336.  
  3337.  
  3338. Jim Muth
  3339. jamth@mindspring.com
  3340.  
  3341.  
  3342. START 20.0 PAR-FORMULA FILE================================
  3343.  
  3344. Squirt_II          { ; time=0:24:48.96--SF5 on a P200
  3345.   reset=2001 type=formula formulafile=branchct.frm
  3346.   formulaname=MandelbrotBC passes=1
  3347.   center-mag=-0.72227094168292330/+0.175944088697707\
  3348.   90/1.898783e+007/1/-15 params=1.414213562373/0/33/0
  3349.   float=y maxiter=4200 inside=0
  3350.   logmap=630 periodicity=10
  3351.   colors=000huIdsI`nGXjGUfFQbFM`EIXEESC9OC5KB3IB5K98\
  3352.   M89N8CO7EQ5GR5IS4KU3MX3OY1QZ0S`0Va0Xb0Zd0`e0bh0di0\
  3353.   fj0hl0jm0ln0np0pq0lm0hi8deI`bRXZ`SViORsKOzOSwRXqV`\
  3354.   mYdh`hddlZfnVjsQmwMpzGtzCwz7yz3wz5uz7tz8szBqzCnyEm\
  3355.   xGlwIjtJisMhqNenOdmRbjSaiU`hXYeYXdZVbaU`bSZdRYeSXd\
  3356.   SVbSUbSSaSRaSQ`SO`SNZSMZSKYSJYSIXSGXSFVSEVSCUSBUS9\
  3357.   SS8SS7RS5RS4QS3QS1OS0OS0NS0NS0MS0MS0KS0KS0JS0IS0GR\
  3358.   0GR0FR0ER0CR0BR09Q09Q08Q07Q05Q04Q03O03O01O00O00O00\
  3359.   O00O00R00S01U03V35X57Y89ZBB`EEaGFdJIeMKfOMhROiUQjX\
  3360.   SlZUmaXndYqf`sibtldunfwqhytjzwlzynzzpzymzwjztizqfz\
  3361.   nezlbziazfZzdYzaVzZSzXRzUOzRNzOKyMJuJGtGFtECtB9s88\
  3362.   s55s34q01q00q00q00n00m00l00j00h00f00e00d11a31`41Z5\
  3363.   3Y75X78U8BS9ERBGQCJNEMMFOKFRJGUGIXFJZEKaCMdBMf9Ni9\
  3364.   Nl9Nn8Nq8Nt8Nw7Ny7Oz7Qz7Rz5Sz5Uz5Vz4Xz4Yz4Zz3`z3az\
  3365.   3bz3dz1ez1fz1fz0fz0fz0fz0fz0fz0fz0fz0fz1fz3fz4fz5f\
  3366.   z4fz4fz3fz3fz3fz3fz3fz3fz
  3367.   }
  3368.  
  3369. frm:MandelbrotBC = { ; Z = Z^E + C
  3370.   e=p1
  3371.   p=real(p2)+PI
  3372.   q=2*PI*trunc(p/(2*PI))
  3373.   r=real(p2)-q
  3374.   Z=C=Pixel:
  3375.     Z=log(Z)
  3376.     IF(imag(Z)>r)
  3377.       Z=Z+flip(2*PI)
  3378.     ENDIF
  3379.     Z=exp(e*(Z+flip(q)))+C
  3380.   |Z|<100
  3381. }
  3382.  
  3383. END 20.0 PAR-FORMULA FILE==================================
  3384.  
  3385. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3386. Post Message:   fractint@lists.xmission.com
  3387. Get Commands:   majordomo@lists.xmission.com "help"
  3388. Administrator:  twegner@fractint.org
  3389. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3390.  
  3391.  
  3392. -------------------------------------------------------------------------------
  3393.  
  3394. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  3395. Subject: Re: (fractint) Re: C-FOTD 11-04-01 (Veiled Objects [7])
  3396. Date: 14 Apr 2001 16:11:17 +1200
  3397.  
  3398. At 05:20 14/04/2001, you wrote:
  3399. >To all-
  3400. >
  3401. >Before I disseminate more misinformation than usual, Dr. Ik's "classnotes" 
  3402. >[his phrase] on "Self-SimilarFractals" are available at the homepage 
  3403. >address provided by PNL in the form of a Mathematica 2.1 Notebook [not 
  3404. >Adobe, as I previously stated], which I did not have the ability to 
  3405. >convert to legible text at the time.
  3406.  
  3407. Most of them are Postscript documents, there's only the occasional 
  3408. Mathematica file there (and of course "Fractals.ma" is one of them).
  3409.  
  3410. >When I heard nothing further from Dr. Ikenaga, I (obviously mistakenly) 
  3411. >assumed he knew his own work better than I ever would, gave up the search 
  3412. >for archaic versions of Mathematica software with which to translate his 
  3413. >2.1 Notebook, and took the man at his word.
  3414.  
  3415. Not that an "archaic version" would have been needed - all subsequent 
  3416. versions of Mathematica are capable of reading and converting pre v.3 
  3417. notebooks, as can the downloadable MathReader software.
  3418.  
  3419. >Funny, wonder what the real genesis of the functionals was.
  3420.  
  3421. Before learning of the Dewedney reference I did a wee bit of a search - 
  3422. "Ikenaga" seemed fairly common, and I came up with a topologist in named 
  3423. Shogo Ikenaga. That looked promising, but I can't read Japanese. There was 
  3424. also a roboticist, who may have been another Bruce - I forget, but that 
  3425. didn't look very likely.
  3426.  
  3427. Morgan L. Owens.
  3428. "Most of the pages found were about Fractint's Ikenaga function."
  3429.  
  3430.  
  3431. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3432. Post Message:   fractint@lists.xmission.com
  3433. Get Commands:   majordomo@lists.xmission.com "help"
  3434. Administrator:  twegner@fractint.org
  3435. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3436.  
  3437.  
  3438. -------------------------------------------------------------------------------
  3439.  
  3440. From: JimMuth@aol.com
  3441. Subject: (fractint) C-FOTD  15-04-01  (Deep in Hyperspace [7])
  3442. Date: 14 Apr 2001 21:04:51 EDT
  3443.  
  3444.  
  3445. Classic FOTD -- April 15, 2001 (Rating 7)
  3446.  
  3447. Fractal visionaries and enthusiasts:
  3448.  
  3449. I love vast open spaces filled with tiny distant objects, and 
  3450. today's image fits that description perfectly.  I named the 
  3451. picture "Deep in Hyperspace", though the scene pictured exists 
  3452. obviously in everyday 3-dimensional space.  It still rates a 
  3453. 7 however.
  3454.  
  3455. The image is one that cries out for truecolor, but that feature 
  3456. is not yet available, at least in Fractint.  If and when it does 
  3457. become available, I'll probably re-render this image as well as 
  3458. a batch of earlier images which suffer from the unavoidable 
  3459. bands.  Normally, I am not bothered by bands, especially the 
  3460. equal-iteration bands that make a fractal a classic fractal, but 
  3461. occasionally, as in today's image, I would like to have perfect 
  3462. smoothness.
  3463.  
  3464. I first thought of a name like "Flying Spectacles" for today's 
  3465. FOTD, but that name has no class whatsoever.  Then I pictured 
  3466. myself in the vicinity of a very hot star deep in a cloud of 
  3467. dust.  The bits and pieces floating in the foreground could only 
  3468. be protoplanets, so I decided on the name "Stellar Nursery".  
  3469. But that name has nothing to do with fractals.  After a few more 
  3470. minutes thought, I arrived at the present name, which conveys 
  3471. the surreal feeling of the image quite well.
  3472.  
  3473. The formula that created the image is number 8 in my series of 
  3474. 12 MandNewt formulae, which are based loosely on the Ikenaga 
  3475. function, the function with apparently no author to claim it.  
  3476. The parameter file renders in 9 minutes, making a download of 
  3477. the GIF file of the image more efficient.  The download may be 
  3478. found on the W.W.Web at:
  3479.  
  3480.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  3481.  
  3482. and at:
  3483.  
  3484.           <http://home.swbell.net/sdboyd56/fotd/>
  3485.  
  3486. The fractal weather today was once again ideal, with sunny skies 
  3487. and a temperature of 70F (21C).  The fractal cats however spent 
  3488. little time in the yard due to noisy sidewalk repair work at the 
  3489. house next door.
  3490.  
  3491. I'm leaving now, but I shall return in 24 hours, more or less.  
  3492. The backlog of work is finally beginning to shrink, so the 
  3493. enlightening philosophy can't be too far off.  Until tomorrow, 
  3494. take care, and don't get lost in hyperspace.
  3495.  
  3496.  
  3497. Jim Muth
  3498. jamth@mindspring.com
  3499.  
  3500.  
  3501. START 20.0 PAR-FORMULA FILE================================
  3502.  
  3503. Deep_in_Hyperspace { ; time=0:08:56.89--SF5 on a P200
  3504.   reset=2001 type=formula formulafile=mandnewt.frm
  3505.   formulaname=MandNewt08 passes=1
  3506.   center-mag=0.0465338/0.0891693/27.49057/1/-82.5
  3507.   params=2.945/-3.071/3.082/1.704/-3.535/2.935
  3508.   float=y maxiter=250 inside=bof60
  3509.   logmap=yes periodicity=0
  3510.   colors=000zzzy_zx`zw`zv`zu_ztZzsYzrXzqWzpVzoUynTxm\
  3511.   SwlRvkQujPtiOshNrgMqfLpeKodJncImbHlaGk`Fj_EiZDhYCg\
  3512.   XBfWAeV9dU8cT7bS6aR5`Q4_P3Z7DH8EG9FFAFFBGEBHECHDDI\
  3513.   DEJCEJCFKBGLAHLAIM9IN9JN8KO8LP7LP7MQ6MR6MS5MT5MU4M\
  3514.   V4MW3MX3MY2MZ2M_1M`1Ma0Mb0Mc0Kd3Jd6Ie9HeCGeFEfIDfL\
  3515.   CgNBgQAgT8hW7hZ6ia5id4if5hd6gb7f`8eZ9dXAcVBbTCaRD`\
  3516.   PE`OF_MGZKHYIIXGJWEKVCLUAMT8NS6MT4NS5NR5OQ6OP6PO7P\
  3517.   N7QM8QL8RK9RJ9SIASHATGBTFBUECUDCVCDVBDWAEW9EX8FX7F\
  3518.   Y6GY5GZ4HZ3H_2I_1I`0J`0J`0Ja0Kb0Lb0Mc0Md0Nd0Oe0Pf0\
  3519.   Pf0Qg0Rg1Sh1Si1Ti1Uj1Vk1Vk2Wl2Xl2Ym2Yn2Zn3_o3`p3`p\
  3520.   3aq3bq3bo9anE`lJ_kOZiTYhYXfbWegVdlVbiTagS`eQ_bPZ`N\
  3521.   YZMXXKWUJVSITQGSNFRLDQJCPHAOE9NC7MA6L85OA7RC8TEAWG\
  3522.   BYHC`JEbLFeNHgPIjQJlSLoUMqWOtYPvZQtYPsXPqWOpVOoUNm\
  3523.   TNlTNkSMiRMhQLfPLeOKdOKbNKaMJ_KJXIIVGIVEHTDITFIUHI\
  3524.   UJIVMIVOIVPIUQIURITTITUISVISWIRYIRZIQ_IQ`IPaIPcIOd\
  3525.   IOeINfINhIMiIMjILkIJmJKlI
  3526.   }
  3527.  
  3528. frm:MandNewt08 {; Jim Muth
  3529. z=c=(pixel*p1):
  3530. a=z^p2+(c-1)*z-c
  3531. b=p3*z^2+c-1
  3532. z=z-1*a/b
  3533. 0.000000000000000000000000000001 <= |a|
  3534. }
  3535.  
  3536. END 20.0 PAR-FORMULA FILE==================================
  3537.  
  3538. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3539. Post Message:   fractint@lists.xmission.com
  3540. Get Commands:   majordomo@lists.xmission.com "help"
  3541. Administrator:  twegner@fractint.org
  3542. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3543.  
  3544.  
  3545. -------------------------------------------------------------------------------
  3546.  
  3547. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  3548. Subject: Re: (fractint) C-FOTD  15-04-01  (Deep in Hyperspace [7])
  3549. Date: 14 Apr 2001 23:00:30 -0500
  3550.  
  3551. JimMuth@aol.com wrote:
  3552. >
  3553. > The bits and pieces floating in the foreground.....
  3554. > .....  The download may be found on the W.W.Web at:
  3555. >      <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  3556. > and at:
  3557. >      <http://home.swbell.net/sdboyd56/fotd/>
  3558.  
  3559. I have noticed over the past week or so, that the images created from
  3560. Scott's running the "X" version of FractInt does not reproduce the level
  3561. of detail with which is found in the DOS version.
  3562.  
  3563. I usually compare the images and there was a considerable difference
  3564. between several of them, especially on FOTD 13-04-01 "Squirt" (that is
  3565. until Scott copied over the one from my site).  But the latest image,
  3566. FOTD 15-04-01 "Deep in Hyperspace" will show some of what I am talking
  3567. about.
  3568.  
  3569. My question is this, why is there so much variance between the two
  3570. versions of FractInt all of a sudden??  I don't believe it was this much
  3571. of a problem several months ago.
  3572.  
  3573.  
  3574. Sincerely,
  3575. P.N.L.
  3576. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  3577.  
  3578. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3579. Post Message:   fractint@lists.xmission.com
  3580. Get Commands:   majordomo@lists.xmission.com "help"
  3581. Administrator:  twegner@fractint.org
  3582. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3583.  
  3584.  
  3585. -------------------------------------------------------------------------------
  3586.  
  3587. From: JimMuth@aol.com
  3588. Subject: (fractint) C-FOTD  16-04-00  (Remotely Mandeloid [3])
  3589. Date: 16 Apr 2001 08:59:28 EDT
  3590.  
  3591.  
  3592. Classic FOTD --  April 16, 2001 (Rating 3)
  3593.  
  3594. Fractal visionaries and enthusiasts:
  3595.  
  3596. A very busy easter Sunday left little time for fractal activity. 
  3597. I found time only for a quick trip to the classic Mandelbrot 
  3598. set, where, not surprisingly, I found a midget.
  3599.  
  3600. The midget is located on the north shore of the bud located 
  3601. around -1.31, in a spiral in the third valley of a sub-radical 
  3602. -- a very remote location -- which is the reason I named the 
  3603. image "Remotely Mandeloid".
  3604.  
  3605. Since I put next to no effort into the image, settling on the 
  3606. first FOTD candidate that appeared, I can rate it at only a 3.  
  3607. But even at a 3, it's still a midget in the M-set, almost 
  3608. certainly one never before seen.
  3609.  
  3610. The area of the midget is one of near chaos, though a broad 
  3611. color palette reveals the familiar pattern seen in the shallow 
  3612. parts of valley spirals.  With a render time of over 13 minutes 
  3613. on an old Pentium machine, the parameter file tries ones' 
  3614. patience.  A faster way of satisfying curiosity is to download 
  3615. the GIF image from Paul's web site at:
  3616.  
  3617.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  3618.  
  3619. or from Scott's site at:
  3620.  
  3621.           <http://home.swbell.net/sdboyd56/fotd/>
  3622.  
  3623. And this time both sites will display the same rendered image.
  3624.  
  3625. The fractal weather today was very pleasant most of the day, 
  3626. with clear skies and a temperature of 68F (20C), which lured the 
  3627. cats into the yard.  Late in the afternoon however, clouds moved 
  3628. in and a chilly rain set in, cutting the cats' outdoor 
  3629. activities short.
  3630.  
  3631. I've been thinking much philosophy lately.  I simply have no 
  3632. time to write it.  But eventually the wisdom or nonsense 
  3633. (depending on one's view of my ideas), will appear.  So stay 
  3634. posted for more than I've had to say lately.  (We really need to 
  3635. wake up that sleeping philofractal list.)
  3636.  
  3637. For now it's 8:30am and back to work time.  The next FOTD, a 
  3638. return to the MandelbrotMix4 formula, will appear in around 16 
  3639. hours.  Until then, take care, and from simple complex numbers 
  3640. mighty fractals come.
  3641.  
  3642.  
  3643. Jim Muth
  3644. jamth@mindspring.com
  3645.  
  3646.  
  3647. START 20.0 PARAMETER FILE==================================
  3648.  
  3649. Remotely_Mandeloid { ; time=0:13:39.72--SF5 on a p200
  3650.   reset=2001 type=mandel passes=1
  3651.   center-mag=-1.31202873989414700/+0.067685741726728\
  3652.   05/5.82079e+010/1/-52.492/-0.004 params=0/0 float=y
  3653.   maxiter=100000 bailout=25 inside=0 logmap=-11450
  3654.   symmetry=none periodicity=10
  3655.   colors=000UUgUUgUUhUUiUUjUUkUUlUUmUUnVUoTUpRVqPXrO\
  3656.   YsM_tK`tIbsHcsIeoIflIgiIifIjcJk`JlYJnVJoSJpPJqMMrO\
  3657.   OrQQrRTrTVrUXrWZrXasZcs_esagsbjsdlsensgpshoqjooknm\
  3658.   lnkmnjnmhomfqldrlcslatk_ukYvkXwn_ykWsiSmfOhdKbaGX_\
  3659.   CSX8MV5HS8FQAEOCDMECJGAHI9FK8DN7BP68R46T34V22X10Z0\
  3660.   4b87fGAjNGgNLdNQbNV_N`XNeVNjSNoPNtNNpMPmLRjKTgJUdI\
  3661.   WaHYZG_WG`TFbQEdNDfKCgHBiEAkB9m89nGAlOBjWChcCgdFfe\
  3662.   IefLegOdhQciTcjWbkZal`akc`je_ihZhjZglYgoXfqWesWdvV\
  3663.   cxUczUbzVazV`zV_zVZzVYzVXzVWzVVzVUzVTzVSzVRzVtz4tz\
  3664.   4tz4tz4sz6rz7qz9qzApzCozDnzEnzGmzHlzJkzKkzLjzNizOh\
  3665.   zQhzRgzSfzUezVezXdzYczZbz`bzaazc`zd_ze_zgZzhYzjXzk\
  3666.   XzlYzjZzh_zf`zdazcbzacz_dzYezWfzVgzThzRizPjzNjzMiz\
  3667.   LhzKgzKfzJezIdzIczHbzGazG`zF_zEZzEYzDXzCWzCVzBUzAT\
  3668.   zASz9Rz8Qz8Pz7Oz6Nz6Mz5Lz4Lz4Lz4Lz4Lz4Lz4Lz5Lz5Mz5\
  3669.   Mz5Mz5Mz5KzUNzRPzOSzLUzJXzIZzH`zGbzFdzEfzDizCkzBmz\
  3670.   Aoz9qz8sz7tzRuzQuzPuzPuzO
  3671.   }
  3672.  
  3673. END 20.0 PARAMETER FILE====================================
  3674.  
  3675. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3676. Post Message:   fractint@lists.xmission.com
  3677. Get Commands:   majordomo@lists.xmission.com "help"
  3678. Administrator:  twegner@fractint.org
  3679. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3680.  
  3681.  
  3682. -------------------------------------------------------------------------------
  3683.  
  3684. From: JimMuth@aol.com
  3685. Subject: (fractint) C-FOTD  17-04-01  (Fractal Celebration [5])
  3686. Date: 16 Apr 2001 22:07:42 EDT
  3687.  
  3688.  
  3689. Classic FOTD -- April 17, 2001 (Rating 5)
  3690.  
  3691. Fractal visionaries and enthusiasts:
  3692.  
  3693. Today was a day of playing catch-up here at Fractal Central.  
  3694. Luckily, the work actually is catching up, and though the end is 
  3695. not quite in sight, it is lurking just around the next corner.
  3696.  
  3697. While catching up, I somehow managed to find time for one 
  3698. fractal.  That image is the one that appears as today's FOTD.  
  3699. It's only a 5-rated image, but still worth the effort of 
  3700. downloading the GIF file from:
  3701.  
  3702.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  3703.  
  3704. or from:
  3705.  
  3706.           <http://home.swbell.net/sdboyd56/fotd/>
  3707.  
  3708. The iterated formula combines 15 parts of Z^(-1.1) with 1.5 
  3709. parts of Z^(-13), and then adds 1/C.  I named the image "Fractal 
  3710. Celebration" mostly in memory of my recent enjoyment of the 
  3711. festivities of the religious season.
  3712.  
  3713. The fractal weather today featured cold 48F (9C) air and 
  3714. occasional rain.  The cats tried to go outdoors, but when they 
  3715. saw the conditions, their noses were back inside before their 
  3716. tails were out.
  3717.  
  3718. And now it's time to quickly shutter down the fractal shoppe and 
  3719. call it a night.  But I'll return in approximately 24 hours with 
  3720. more fractal things.  Until then, take care, and if fractals had 
  3721. never been discovered, I would still have faith in them.
  3722.  
  3723.  
  3724. Jim Muth
  3725. jamth@mindspring.com
  3726.  
  3727.  
  3728. START 20.0 PAR-FORMULA FILE================================
  3729.  
  3730. FractalCelebration { ; time=0:13:04.22--SF5 on a p200
  3731.   reset=2001 type=formula formulafile=critical.frm
  3732.   formulaname=MandelbrotMix4 function=recip passes=1
  3733.   center-mag=+3.22981160230094/+1.682986998869586/3.\
  3734.   658132e+008/1/-147.5 params=15/-1.1/1.5/-13/0/300
  3735.   float=y maxiter=1200 inside=0
  3736.   logmap=172 periodicity=10
  3737.   colors=000QX`PY_PYYPYXPYVVXT`XSdVSjVQoTPuTPySOzSMz\
  3738.   SMzPPxMSrLTmIXgFYaD`XAaS7dM6fL3iA0jF0m00o00r00s03v\
  3739.   0Dy0Oz0Yz1ao3rz4jnIsyzc`fddzYVuXYxX_zX`zXczXdzXfz_\
  3740.   aza_zdXzgTyjQxmOvpLssIrvFpyCoz9ixDdvI_sLVrPQpSSlOT\
  3741.   gLVdIX`FXXCYT9_P4`M1`I0aD0cA0d60d30c10Y0CQ0OG0FG0F\
  3742.   40A90DC0FF3II9JMFLPJOSPPVTS__TadVdiYgo_js`lvcmxdoy\
  3743.   gozipzlrzmszpszruzuvzvvzxpzrlzlgzfaz`YzVTzPOzJJzDF\
  3744.   z79z14z00z0Dz0Pm0``0mM0y90z00z00m4DVGSCSfzFJzCPyAT\
  3745.   u9Yp6al4fg3jc0o_0sV0xX1vX4uX7sYArYFpYIp_Lo_Om_Sl`V\
  3746.   j`Yj``iadgagfajdamdYg_VaVSYQOSMLOIIIDDC9A747104009\
  3747.   01C17F4DJ6JM9PPAVSC`XFf_GlaJrfLxiOzlPzoQzi`zdis`ri\
  3748.   Xz_SzQPzVOzYMz`LzcJzfIyiLvjMslOpmQomSloTipXfpYdr_a\
  3749.   sa_scXudVvgSviPxjMylLydGr_MjTTcM`XGgPAiI3jA0l30m00\
  3750.   o10p40r71sA4uD7vGAvJCvMFvPIxSLyVMzYGzSAzO4zJ0zF0zA\
  3751.   0z61zMFzaSzrdzzczzczzazxazvazs`zp`zm`zlazlczlczldz\
  3752.   ldzlfzlfzldziczgazdazc`z`
  3753.   }
  3754.  
  3755. frm:MandelbrotMix4 {; Jim Muth
  3756. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  3757. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  3758. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  3759. z=k*((a*(z^b))+(d*(z^f)))+c,
  3760. |z| < l
  3761. }
  3762.  
  3763. END 20.0 PAR-FORMULA FILE==================================
  3764.  
  3765. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3766. Post Message:   fractint@lists.xmission.com
  3767. Get Commands:   majordomo@lists.xmission.com "help"
  3768. Administrator:  twegner@fractint.org
  3769. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3770.  
  3771.  
  3772. -------------------------------------------------------------------------------
  3773.  
  3774. From: JimMuth@aol.com
  3775. Subject: (fractint) C-FOTD  18-04-01  (Fractured Fractal [6])
  3776. Date: 17 Apr 2001 23:10:15 EDT
  3777.  
  3778.  
  3779. Classic FOTD -- April 18, 2001 (Rating 6)
  3780.  
  3781. Fractal visionaries and enthusiasts:
  3782.  
  3783. For today's fractal wonder, we turn once again to the 
  3784. MandelbrotBC formula, which works wonders with Mandeloids of 
  3785. fractional orders.  I'll be using this formula often in the days 
  3786. to come, but unfortunately I have lost track of the formula's 
  3787. author.  I believe the author is Andrew Coppin, though I'm not 
  3788. sure.  Perhaps the author will claim his authorship.
  3789.  
  3790. I noticed a flurry of mail on the fractal-art list when I opened 
  3791. my virtual mailbox this afternoon.  The flap appears to be about 
  3792. another case of fractal thievery.  It appears that someone was 
  3793. caught with someone else's fractals on their web page, and might 
  3794. be making money from fractals that are not theirs.
  3795.  
  3796. Of all the things I have to worry about, copyright infringement 
  3797. is pretty far down the list.  Maybe my lack of concern is 
  3798. because I feel that my fractals are not worth stealing.  After 
  3799. all, they're only one-layered 256-color images of midgets, in a 
  3800. world of more colors than the eye can distinguish, and multiple 
  3801. layers piled on top of one another.
  3802.  
  3803. Actually, I simply accept that my images and discussion might be 
  3804. stolen.  If they are stolen and used for profit, and I don't 
  3805. know about it, I'll have nothing to get upset about.  I have no 
  3806. time to worry about all the things that might be happening that 
  3807. I don't know about.  If I find out about blatant profiteering 
  3808. from my work, then I'll know what to do and who to do it to.
  3809.  
  3810. The mere act of posting something on the internet makes it 
  3811. available to anyone in the world with an online computer.  And 
  3812. it's nearly impossible to prevent thievery.  It's the artistic 
  3813. quandary.  We want as many as possible to admire our work, yet 
  3814. we don't want the admirers to admire it so much that they steal 
  3815. it and make more money from our work than we make ourselves.
  3816.  
  3817. While I'm trying to think of a solution to this unsolvable 
  3818. problem, I'll draw attention to today's FOTD, which I have named 
  3819. "Fractured Fractal", and which I have rated a respectable 6.  
  3820. The name arises from the fractured nature of the elements 
  3821. surrounding the mis-shapen midget.
  3822.  
  3823. The iterated expression behind the image is Z^(2.05)+C.  I have 
  3824. used the MandelbrotBC formula to draw a remote part of the 
  3825. infinite fractal created by this expression, a part that is 
  3826. quite chaotic and filled with almost-but-not-quite perfect 
  3827. midgets.
  3828.  
  3829. The attached parameter file is slow -- 20 minutes slow.  A 
  3830. download of the GIF image file is fast.  I leave it up to the 
  3831. reader to decide which way to go.  If they decide to take the 
  3832. download, the image file will be posted shortly to:
  3833.  
  3834.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  3835.  
  3836. and to:
  3837.  
  3838.           <http://home.swbell.net/sdboyd56/fotd/>
  3839.  
  3840. The fractal weather today was partly cloudy breezy and chilly, 
  3841. with a sunshine shower of small hail just before sunset.  The 
  3842. temperature of 46F (8C) permitted the fractal cats only 15 
  3843. minutes out of doors, leaving them testy.
  3844.  
  3845. Well, I see it's time to shut down.  I'm just starting to get 
  3846. things back into their familiar state of dis-organization, and I 
  3847. want to do a bit more of my style of organizing before I totally 
  3848. run out of steam.  Until tomorrow, take care, and exist in peace.
  3849.  
  3850.  
  3851. Jim Muth
  3852. jamth@mindspring.com
  3853.  
  3854.  
  3855. START 20.0 PAR-FORMULA FILE================================
  3856.  
  3857. Fractured_Fractal  { ; time=0:20:05.34--SF5 on a P200
  3858.   reset=2001 type=formula formulafile=critical.frm
  3859.   formulaname=MandelbrotBC passes=1
  3860.   center-mag=+1.35355495637857600/-0.015397043802760\
  3861.   70/475604.2/1/-52.499 params=2.05/0/56/0 float=y
  3862.   maxiter=5000 inside=0 logmap=295 periodicity=10
  3863.   colors=000olLQfJPdJPcIOaIM`GL_GJYFIXFIVDGTDFSCDQCC\
  3864.   PAAOAAM99L97J76I74G63F64D33D63D73DA3DC3DF1DG1DJ1DL\
  3865.   1DO1DP1DS0DT0DX0DY0D`0Da0Dd0Df0Di0Dj0Dm0Do0Dr0Ds0D\
  3866.   v0Dx0Dz0Fz0Dz0Dy0Cx0Cu0As0Ap09o09l09i07g07d06c06`0\
  3867.   4_04X04V03S03P01O01L00J00G00F00C009007004003000000\
  3868.   0000000000000000100410630960A70D90GC0ID0LF0MG0PJ0S\
  3869.   L0TM0XP0YQ0`S0cV1dX1gY1i_1lY1mV1oT7rQFsOMvMTxJ`zId\
  3870.   zFizDmzArz9vz6vz4vz7rz9ozAvzCzzDzzFzzGzxIzvJzuMzsO\
  3871.   zrPvpQyoSzlTzjVziXzgYzf`zdavccoadg_f`YgXXiYVj_Tl`S\
  3872.   oaQpcOrdMsfLugJviIxjGylFzjFzlDzlCylAvmAslArlCplCol\
  3873.   DmlDllFjjGijIgjJfjLdjMcjOajPajQajSaiQaiPagOagMagJa\
  3874.   fIafGadFadDadAcc9cc7ca6ca3ca1c`0c`0c_0c_0c_0cY0cY0\
  3875.   cX0dY0c_0c_0c`0ca0aa0ac0ac0ad0af0`f0`g0`g0`i0_j0_j\
  3876.   0_l0_l0_m0Yo0Yo0Yp0Yp0Yr0Xs0as0fu0jv0ov0sx1xx1zy1z\
  3877.   z3zz3zz3zz3zz4zz4zz4zz6zz6zz6zz7zz7zz7zz7zz7zz9zzA\
  3878.   zzAzzCzzDzzDzzFzzFzzGzzIz
  3879.   }
  3880.  
  3881. frm:MandelbrotBC = { ; formula written by ? ?
  3882.   e=p1
  3883.   p=real(p2)+PI
  3884.   q=2*PI*trunc(p/(2*PI))
  3885.   r=real(p2)-q
  3886.   Z=C=Pixel:
  3887.     Z=log(Z)
  3888.     IF(imag(Z)>r)
  3889.       Z=Z+flip(2*PI)
  3890.     ENDIF
  3891.     Z=exp(e*(Z+flip(q)))+C
  3892.   |Z|<100
  3893. }
  3894.  
  3895. END 20.0 PAR-FORMULA FILE==================================
  3896.  
  3897. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3898. Post Message:   fractint@lists.xmission.com
  3899. Get Commands:   majordomo@lists.xmission.com "help"
  3900. Administrator:  twegner@fractint.org
  3901. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3902.  
  3903.  
  3904. -------------------------------------------------------------------------------
  3905.  
  3906. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  3907. Subject: (fractint) Re: C-FOTD  18-04-01  (Fractured Fractal [6])
  3908. Date: 18 Apr 2001 00:08:41 -0500
  3909.  
  3910. JimMuth@aol.com wrote:
  3911. >
  3912. > ....we turn once again to the MandelbrotBC formula....
  3913. > ....but unfortunately I have lost track of the formula's
  3914. > author.  I believe the author is Andrew Coppin, though 
  3915. > I'm not sure.
  3916.  
  3917. Yes, it was Andrew that first started the conversation on "Branch Cuts"
  3918. back on April 07, 2000.  Within about three to four days, he was able to
  3919. come up with the following, as quoted from his email:
  3920.  
  3921. _______________________________________________________________________
  3922.  
  3923.  
  3924. I now have two working formulas:
  3925.  
  3926. ---BEGIN
  3927. MandelbrotBC = { ; Z = Z^E + C
  3928.   e=p1
  3929.   p=real(p2)+PI
  3930.   q=2*PI*trunc(p/(2*PI))
  3931.   r=real(p2)-q
  3932.   Z=C=Pixel:
  3933.     Z=log(Z)
  3934.     IF(imag(Z)>r)
  3935.       Z=Z+flip(2*PI)
  3936.     ENDIF
  3937.     Z=exp(e*(Z+flip(q)))+C
  3938.   |Z|<4
  3939. }
  3940.  
  3941. JuliaBC = { ; Z = Z^E + C
  3942.   e=p1
  3943.   p=real(p2)+PI
  3944.   q=2*PI*trunc(p/(2*PI))
  3945.   r=real(p2)-q
  3946.   C=p3
  3947.   Z=Pixel:
  3948.     Z=log(Z)
  3949.     IF(imag(Z)>r)
  3950.       Z=Z+flip(2*PI)
  3951.     ENDIF
  3952.     Z=exp(e*(Z+flip(q)))+C
  3953.   |Z|<4
  3954. }
  3955. ---END
  3956.  
  3957. Plug these into the evolver, with real(p1) changing from 2 to 3 along
  3958. the X axis and real(p2) changine from -6 to +6 along the Y axis and you
  3959. have a real treat of an image (depending on the other parameters; I used
  3960. p3=-1).  Now, if I can just remember how to do that IsMand() stuff...
  3961.  
  3962.  
  3963. _______________________________________________________________________
  3964.  
  3965.  
  3966. Sincerely,
  3967. P.N.L.
  3968. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  3969.  
  3970. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3971. Post Message:   fractint@lists.xmission.com
  3972. Get Commands:   majordomo@lists.xmission.com "help"
  3973. Administrator:  twegner@fractint.org
  3974. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3975.  
  3976.  
  3977. -------------------------------------------------------------------------------
  3978.  
  3979. From: "Andrew Coppin" <orphi69@hotmail.com>
  3980. Subject: Re: (fractint) Re: C-FOTD 18-04-01 (Fractured Fractal [6])
  3981. Date: 18 Apr 2001 17:56:35 -0000
  3982.  
  3983. Thankyou paul. Yes, it was indeed I who thought of it, and [eventually] came 
  3984. up with the .frm text. It seems only fair to mention that I had help from 
  3985. others on this list thought... (Wish I could remember whom, but I definitly 
  3986. had help!)
  3987.  
  3988. Thanks.
  3989. Andrew
  3990.  
  3991.  
  3992. >From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  3993. >Reply-To: fractint@lists.xmission.com
  3994. >To: fractint@lists.xmission.com
  3995. >CC: philofractal@lists.fractalus.com
  3996. >Subject: (fractint) Re: C-FOTD  18-04-01  (Fractured Fractal [6])
  3997. >Date: Wed, 18 Apr 2001 00:08:41 -0500
  3998. >
  3999. >JimMuth@aol.com wrote:
  4000. > >
  4001. > > ....we turn once again to the MandelbrotBC formula....
  4002. > > ....but unfortunately I have lost track of the formula's
  4003. > > author.  I believe the author is Andrew Coppin, though
  4004. > > I'm not sure.
  4005. >
  4006. >Yes, it was Andrew that first started the conversation on "Branch Cuts"
  4007. >back on April 07, 2000.  Within about three to four days, he was able to
  4008. >come up with the following, as quoted from his email:
  4009. >
  4010. >_______________________________________________________________________
  4011. >
  4012. >
  4013. >I now have two working formulas:
  4014. >
  4015. >---BEGIN
  4016. >MandelbrotBC = { ; Z = Z^E + C
  4017. >   e=p1
  4018. >   p=real(p2)+PI
  4019. >   q=2*PI*trunc(p/(2*PI))
  4020. >   r=real(p2)-q
  4021. >   Z=C=Pixel:
  4022. >     Z=log(Z)
  4023. >     IF(imag(Z)>r)
  4024. >       Z=Z+flip(2*PI)
  4025. >     ENDIF
  4026. >     Z=exp(e*(Z+flip(q)))+C
  4027. >   |Z|<4
  4028. >}
  4029. >
  4030. >JuliaBC = { ; Z = Z^E + C
  4031. >   e=p1
  4032. >   p=real(p2)+PI
  4033. >   q=2*PI*trunc(p/(2*PI))
  4034. >   r=real(p2)-q
  4035. >   C=p3
  4036. >   Z=Pixel:
  4037. >     Z=log(Z)
  4038. >     IF(imag(Z)>r)
  4039. >       Z=Z+flip(2*PI)
  4040. >     ENDIF
  4041. >     Z=exp(e*(Z+flip(q)))+C
  4042. >   |Z|<4
  4043. >}
  4044. >---END
  4045. >
  4046. >Plug these into the evolver, with real(p1) changing from 2 to 3 along
  4047. >the X axis and real(p2) changine from -6 to +6 along the Y axis and you
  4048. >have a real treat of an image (depending on the other parameters; I used
  4049. >p3=-1).  Now, if I can just remember how to do that IsMand() stuff...
  4050. >
  4051. >
  4052. >_______________________________________________________________________
  4053. >
  4054. >
  4055. >Sincerely,
  4056. >P.N.L.
  4057. >--------------------------------------------------------------
  4058. >http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  4059. >
  4060. >--------------------------------------------------------------
  4061. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  4062. >Post Message:   fractint@lists.xmission.com
  4063. >Get Commands:   majordomo@lists.xmission.com "help"
  4064. >Administrator:  twegner@fractint.org
  4065. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4066.  
  4067. _________________________________________________________________________
  4068. Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
  4069.  
  4070.  
  4071. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4072. Post Message:   fractint@lists.xmission.com
  4073. Get Commands:   majordomo@lists.xmission.com "help"
  4074. Administrator:  twegner@fractint.org
  4075. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4076.  
  4077.  
  4078. -------------------------------------------------------------------------------
  4079.  
  4080. From: "Zorba the Hutt" <zorbathut@uswest.net>
  4081. Subject: (fractint) The specter of schoolwork, and really really big fractals
  4082. Date: 18 Apr 2001 16:33:04 -0400
  4083.  
  4084.  
  4085. Finally I managed to beat down the looming demon of Far Too Much Homework
  4086. That You've Been Putting Off, You Slacker, And Why Are We Paying For You To
  4087. Go To College Anyway If All You Do Is Play Computer Games? I Mean, It's Not
  4088. Like The Ones You Play Are Educational Or Anything, and managed to eke out
  4089. some time for myself, which I spent updating my Really Big Fractals page.
  4090. Today (this week? this month? this year?), I provide for you all those
  4091. Fractal-Swarm-inspired images that Sylvie Gallet posted a while back. Yes,
  4092. all of them. All 9. Done in beautiful 1600x1280, and do they ever look good.
  4093.  
  4094. And, sigh, I really should have asked *before* this, but if I ask, wait for
  4095. an answer, and *then* post 'em, I'll never get around to it. Sylvie, do you
  4096. mind if I put those up? They're all credited to you and everything :) I just
  4097. wanted to provide them for people who might not have the CPU power (or
  4098. desire) to render them on their own. If you say you do mind, I'll take 'em
  4099. off immediately, or if there's modifications you want me to make or
  4100. anything.
  4101.  
  4102. Anyway, the website is http://www.geocities.com/zorbathut - may you find a
  4103. new desktop wallpaper . . .
  4104.  
  4105. -Zorba
  4106.  
  4107.  
  4108. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4109. Post Message:   fractint@lists.xmission.com
  4110. Get Commands:   majordomo@lists.xmission.com "help"
  4111. Administrator:  twegner@fractint.org
  4112. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4113.  
  4114.  
  4115. -------------------------------------------------------------------------------
  4116.  
  4117. From: Programmer Dude <cjsonnack@mmm.com>
  4118. Subject: Re: (fractint) The specter of schoolwork, and really really big fractals
  4119. Date: 18 Apr 2001 15:53:44 -0500
  4120.  
  4121. Zorba the Hutt wrote:
  4122.  
  4123. > ...which I spent updating my Really Big Fractals page.
  4124.  
  4125. Cool!  Wonderful!!  Delightful!!!
  4126.  
  4127. Thanks!
  4128.  
  4129. p.s.
  4130. Unexpected Fractal's link is ge-broken.  ;-(
  4131.  
  4132. -- 
  4133. |_ CJSonnack <Chris@Sonnack.com> _____________| How's my programming? |
  4134. |_ http://www.Sonnack.com/ ___________________| Call: 1-800-DEV-NULL  |
  4135. |_____________________________________________|_______________________|
  4136.  
  4137. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4138. Post Message:   fractint@lists.xmission.com
  4139. Get Commands:   majordomo@lists.xmission.com "help"
  4140. Administrator:  twegner@fractint.org
  4141. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4142.  
  4143.  
  4144. -------------------------------------------------------------------------------
  4145.  
  4146. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  4147. Subject: (fractint) The specter of schoolwork, and really really big
  4148. Date: 18 Apr 2001 17:43:56 -0400
  4149.  
  4150. Hi Zorba,
  4151.  
  4152. >> And, sigh, I really should have asked *before* this, but if I ask, wai=
  4153. t
  4154. >> for an answer, and *then* post 'em, I'll never get around to it. Sylvi=
  4155. e,
  4156. >> do you mind if I put those up? They're all credited to you and
  4157. >> everything :) I just wanted to provide them for people who might not
  4158. >> have the CPU power (or desire) to render them on their own. If you say=
  4159.  
  4160. >> you do mind, I'll take 'em off immediately, or if there's modification=
  4161. s
  4162. >> you want me to make or anything.
  4163.  
  4164.   I am not favorable to making high resolution images available on the we=
  4165. b,
  4166. and I would definitely have preferred you to ask before doing it.  Since =
  4167. I
  4168. have a slow internet connection, I haven't downloaded any of them, but th=
  4169. e
  4170. size of some of the PNGs make me think that anti-aliasing made some of th=
  4171. em
  4172. lose their particular texture (at least two of them: 18 and 27).
  4173.   I'll make an exception and let you keep them but please, change the
  4174. copyright notice so that it makes clear people are not allowed to print
  4175. them, put them on a web site, etc.
  4176.  
  4177.   Best regards,
  4178.  
  4179.         - Sylvie
  4180.  
  4181. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4182. Post Message:   fractint@lists.xmission.com
  4183. Get Commands:   majordomo@lists.xmission.com "help"
  4184. Administrator:  twegner@fractint.org
  4185. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4186.  
  4187.  
  4188. -------------------------------------------------------------------------------
  4189.  
  4190. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  4191. Subject: Re: (fractint) Re: C-FOTD 18-04-01 (Fractured Fractal [6])
  4192. Date: 19 Apr 2001 00:16:05 -0500
  4193.  
  4194. Andrew Coppin wrote:
  4195. >
  4196. > Thankyou paul. 
  4197.  
  4198. Just thought credit should be mentioned where due.    :-)
  4199.  
  4200. >
  4201. > It seems only fair to mention that I had 
  4202. > help from others on this list thought... 
  4203. > (Wish I could remember whom, but I definitly
  4204. > had help!)
  4205.  
  4206. You first started discussing the "Branch Cuts" on Fri, 07 Apr 2000.  And
  4207. some of the individuals involved with that topic on the List were as
  4208. follows:
  4209.  
  4210.     Barry N. Merenoff (Collin Merenoff)
  4211.     Morgan L. Owens
  4212.     Tim Wegner
  4213.     Jim Muth
  4214.     Kenneth Childress
  4215.     Damien M. Jones 
  4216.  
  4217. This went on until Tue, 18 Apr 2000.  I am sure that the archives will
  4218. show the details of who did what.
  4219.  
  4220. P.N.L.
  4221. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  4222.  
  4223. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4224. Post Message:   fractint@lists.xmission.com
  4225. Get Commands:   majordomo@lists.xmission.com "help"
  4226. Administrator:  twegner@fractint.org
  4227. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4228.  
  4229.  
  4230. -------------------------------------------------------------------------------
  4231.  
  4232. From: JimMuth@aol.com
  4233. Subject: (fractint) C-FOTD  19-04-01  (Pi in the Sky [6])
  4234. Date: 19 Apr 2001 10:51:09 EDT
  4235.  
  4236.  
  4237. Classic FOTD -- April 19, 2001 (Rating 6)
  4238.  
  4239. Fractal visionaries and enthusiasts:
  4240.  
  4241. It's 9:30am and the FOTD is once again late.  But what's new 
  4242. about that?  I offer excuse number three -- that things were too 
  4243. busy here at Fractal Central Auxiliary to get the discussion 
  4244. written at the regular time.  Maybe I need to get a day or two 
  4245. ahead in my FOTD's.  That way I won't be late every time I have 
  4246. a busy day.  Of course, the problem with this solution is that 
  4247. I have little time to get ahead.
  4248.  
  4249. Today's image is a picture of a midget in the Z^(pi)+C fractal, 
  4250. as rendered by Andrew's MandelbrotBC formula.  After a moment's 
  4251. consideration, I rated the image a 6 and named it "Pi in the 
  4252. Sky".  At 4-1/2 minutes on an aging Pentium, it's not too 
  4253. difficult an image to render from the parameter file.
  4254.  
  4255. But for those who would rather not render, the GIF image is, or 
  4256. soon will be, posted to the WWW at Paul Lee's site at:
  4257.  
  4258.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  4259.  
  4260. and at Scott's site at:
  4261.  
  4262.           <http://home.swbell.net/sdboyd56/fotd/>
  4263.  
  4264. The intrepid fractal cats had a rough day, as very un-springlike 
  4265. cold enveloped the area.  The temperature of 42F (5.5C) was 
  4266. entirely too chilly for their sensitive ears, forcing them to 
  4267. sulk indoors all afternoon, while blaming me for the outside 
  4268. conditions.  I finally eased their moodiness by treating them to 
  4269. a meal of tuna fish.
  4270.  
  4271. When I checked my virtual mailbox first thing this morning, I 
  4272. found a very long letter telling me how to get rich quick.  The 
  4273. letter is one of those pyramid chain letters with a MLM twist, 
  4274. which claims one can get rich by sending money to other people.  
  4275. Having my name and address so widespread on the net, I have been 
  4276. receiving different versions of this same letter for years.  I 
  4277. usually delete it at once, but for some strange reason I decided 
  4278. this morning to skim through it.
  4279.  
  4280. The letter begins by telling me that it is the letter I've been 
  4281. hearing about so much in the news lately.  Now, I keep up pretty 
  4282. well with the news, but I have no recollection of ever hearing 
  4283. or reading about such a letter.  I suppose that a reader who 
  4284. might take the letter seriously is supposed to think that the 
  4285. letter was indeed in the news, but that he missed it.
  4286.  
  4287. Basically, the letter claims that one can become wealthy by 
  4288. doing nothing but sending money to others and having them send 
  4289. money back to you.  If this were true, everyone on earth should 
  4290. be a USA-style millionaire by this time, though I have no idea 
  4291. where the extra money could come from or how inflation could be 
  4292. kept under control once everyone was rich.  (Of course, we could 
  4293. blame the inflation on the political party in power.)
  4294.  
  4295. In my experience, one gets rich by starting out doing work for 
  4296. others and receiving money from them in return, not by starting 
  4297. by sending money to others.  In all my years of earning money 
  4298. working at real jobs, I have never started on a job by sending 
  4299. money to someone else in return for the privilege of working on 
  4300. their job.  But apparently, from the frequency with which I 
  4301. receive this same letter, many are still out there who fail to 
  4302. understand this simple fact of life.
  4303.  
  4304. Well, I seem to have gotten off the fractal topic.  My intent 
  4305. was to discuss the current state of the Fractint program and the 
  4306. possibilities for its future development.  This will be my topic 
  4307. when the next FOTD appears in only 12 hours or so.
  4308.  
  4309. It's now time to start the day's rush.  Until next time, take 
  4310. care, and I'm sorry Jonathan Roarke.
  4311.  
  4312.  
  4313. Jim Muth
  4314. jamth@mindspring.com
  4315.  
  4316.  
  4317. START 20.0 PAR-FORMULA FILE================================
  4318.  
  4319. Pi_in_the_Sky      { ; time=0:04:37.66--SF5 on a p200
  4320.   reset=2001 type=formula formulafile=branchct.frm
  4321.   formulaname=MandelbrotBC passes=1
  4322.   center-mag=-0.9197872859930445/-0.1300422309794571\
  4323.   /5.421884e+007/1/-25 params=3.14159265358979/0/32/0
  4324.   float=y maxiter=2400 inside=0
  4325.   logmap=103 periodicity=10
  4326.   colors=000zszzszztzzuzzvyzwvzxszyqzynyzkyziszfnyej\
  4327.   sceob_j_XeZRaYNXXIQSDKQ8EN37K03J2DO3KS4UY6aa8geAog\
  4328.   BvkDznHwjKsfOocSj_XfX_bUcYQgUMjQJaSISVHKXHIZFH_FFa\
  4329.   EEbEDeDBfD8gD7iB6kB4mA3nA2oA8q8Fq7Kr7Rr6Xr6Yn7Yj8Z\
  4330.   fAZbA_ZB_VDaRDaNEbJFbHFfJHiMImOJoRJsSKvVMzYMz_NzbO\
  4331.   zcOziUwmZqqckuifyn_zsVzyQzzayjmmSybBwbDvbEubHsbIrb\
  4332.   JqbM72u60w60yD0zI3zN7zSBzZFzcJziNznRzsUzuYwuaqueju\
  4333.   icukZsg_sc_s__rXarUarQaqMbqIbqFboBco7co3co0ccBXUMO\
  4334.   JXI8fA0o36n4Dn6Jm6Qm7Xm7So6Qq4Ns3Ju2Hv0Ey0Bz07z04z\
  4335.   02z00z00z02v03q04k36f47a78X8ARBBMDDHFEBHF6JH0KI0NI\
  4336.   0OH0NH0MH0KH0JF3IF6HF8FFBEEEDEHBEJAEM8DO7DR6DU4DX4\
  4337.   DY0vZ2r_0oa0mb0ic0fe0cf0_g0Yi0Vj0Rk0Om0Mn0Io0Fq00r\
  4338.   z0sw0us0vn0wj2ye3za4zX4zS6zN7zJ8zEAzABz4Dz00zv0zk2\
  4339.   za4zR7zHAz6vzMqzJmzHgzEczBZz8rz0vz0yz0zz0vz0qz6kzB\
  4340.   fzIbzNYzSSzZNzcJziEzo8zu3zz0zz4zzAzzFzyJzwOzuUzsYz\
  4341.   qbzogzmmzkqzivzgzzezzzzzz
  4342.   }
  4343.  
  4344.  
  4345. frm:MandelbrotBC  { ; Formula by Andrew Coppin
  4346.   e=p1
  4347.   p=real(p2)+PI
  4348.   q=2*PI*trunc(p/(2*PI))
  4349.   r=real(p2)-q
  4350.   Z=C=Pixel:
  4351.     Z=log(Z)
  4352.     IF(imag(Z)>r)
  4353.       Z=Z+flip(2*PI)
  4354.     ENDIF
  4355.     Z=exp(e*(Z+flip(q)))+C
  4356.   |Z|<100
  4357. }
  4358.  
  4359. END 20.0 PAR-FORMULA FILE==================================
  4360.  
  4361. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4362. Post Message:   fractint@lists.xmission.com
  4363. Get Commands:   majordomo@lists.xmission.com "help"
  4364. Administrator:  twegner@fractint.org
  4365. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4366.  
  4367.  
  4368. -------------------------------------------------------------------------------
  4369.  
  4370. From: JimMuth@aol.com
  4371. Subject: (fractint) C-FOTD  19-04-01  (Pi in the Sky [6])
  4372. Date: 19 Apr 2001 10:51:09 EDT
  4373.  
  4374.  
  4375. Classic FOTD -- April 19, 2001 (Rating 6)
  4376.  
  4377. Fractal visionaries and enthusiasts:
  4378.  
  4379. It's 9:30am and the FOTD is once again late.  But what's new 
  4380. about that?  I offer excuse number three -- that things were too 
  4381. busy here at Fractal Central Auxiliary to get the discussion 
  4382. written at the regular time.  Maybe I need to get a day or two 
  4383. ahead in my FOTD's.  That way I won't be late every time I have 
  4384. a busy day.  Of course, the problem with this solution is that 
  4385. I have little time to get ahead.
  4386.  
  4387. Today's image is a picture of a midget in the Z^(pi)+C fractal, 
  4388. as rendered by Andrew's MandelbrotBC formula.  After a moment's 
  4389. consideration, I rated the image a 6 and named it "Pi in the 
  4390. Sky".  At 4-1/2 minutes on an aging Pentium, it's not too 
  4391. difficult an image to render from the parameter file.
  4392.  
  4393. But for those who would rather not render, the GIF image is, or 
  4394. soon will be, posted to the WWW at Paul Lee's site at:
  4395.  
  4396.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  4397.  
  4398. and at Scott's site at:
  4399.  
  4400.           <http://home.swbell.net/sdboyd56/fotd/>
  4401.  
  4402. The intrepid fractal cats had a rough day, as very un-springlike 
  4403. cold enveloped the area.  The temperature of 42F (5.5C) was 
  4404. entirely too chilly for their sensitive ears, forcing them to 
  4405. sulk indoors all afternoon, while blaming me for the outside 
  4406. conditions.  I finally eased their moodiness by treating them to 
  4407. a meal of tuna fish.
  4408.  
  4409. When I checked my virtual mailbox first thing this morning, I 
  4410. found a very long letter telling me how to get rich quick.  The 
  4411. letter is one of those pyramid chain letters with a MLM twist, 
  4412. which claims one can get rich by sending money to other people.  
  4413. Having my name and address so widespread on the net, I have been 
  4414. receiving different versions of this same letter for years.  I 
  4415. usually delete it at once, but for some strange reason I decided 
  4416. this morning to skim through it.
  4417.  
  4418. The letter begins by telling me that it is the letter I've been 
  4419. hearing about so much in the news lately.  Now, I keep up pretty 
  4420. well with the news, but I have no recollection of ever hearing 
  4421. or reading about such a letter.  I suppose that a reader who 
  4422. might take the letter seriously is supposed to think that the 
  4423. letter was indeed in the news, but that he missed it.
  4424.  
  4425. Basically, the letter claims that one can become wealthy by 
  4426. doing nothing but sending money to others and having them send 
  4427. money back to you.  If this were true, everyone on earth should 
  4428. be a USA-style millionaire by this time, though I have no idea 
  4429. where the extra money could come from or how inflation could be 
  4430. kept under control once everyone was rich.  (Of course, we could 
  4431. blame the inflation on the political party in power.)
  4432.  
  4433. In my experience, one gets rich by starting out doing work for 
  4434. others and receiving money from them in return, not by starting 
  4435. by sending money to others.  In all my years of earning money 
  4436. working at real jobs, I have never started on a job by sending 
  4437. money to someone else in return for the privilege of working on 
  4438. their job.  But apparently, from the frequency with which I 
  4439. receive this same letter, many are still out there who fail to 
  4440. understand this simple fact of life.
  4441.  
  4442. Well, I seem to have gotten off the fractal topic.  My intent 
  4443. was to discuss the current state of the Fractint program and the 
  4444. possibilities for its future development.  This will be my topic 
  4445. when the next FOTD appears in only 12 hours or so.
  4446.  
  4447. It's now time to start the day's rush.  Until next time, take 
  4448. care, and I'm sorry Jonathan Roarke.
  4449.  
  4450.  
  4451. Jim Muth
  4452. jamth@mindspring.com
  4453.  
  4454.  
  4455. START 20.0 PAR-FORMULA FILE================================
  4456.  
  4457. Pi_in_the_Sky      { ; time=0:04:37.66--SF5 on a p200
  4458.   reset=2001 type=formula formulafile=branchct.frm
  4459.   formulaname=MandelbrotBC passes=1
  4460.   center-mag=-0.9197872859930445/-0.1300422309794571\
  4461.   /5.421884e+007/1/-25 params=3.14159265358979/0/32/0
  4462.   float=y maxiter=2400 inside=0
  4463.   logmap=103 periodicity=10
  4464.   colors=000zszzszztzzuzzvyzwvzxszyqzynyzkyziszfnyej\
  4465.   sceob_j_XeZRaYNXXIQSDKQ8EN37K03J2DO3KS4UY6aa8geAog\
  4466.   BvkDznHwjKsfOocSj_XfX_bUcYQgUMjQJaSISVHKXHIZFH_FFa\
  4467.   EEbEDeDBfD8gD7iB6kB4mA3nA2oA8q8Fq7Kr7Rr6Xr6Yn7Yj8Z\
  4468.   fAZbA_ZB_VDaRDaNEbJFbHFfJHiMImOJoRJsSKvVMzYMz_NzbO\
  4469.   zcOziUwmZqqckuifyn_zsVzyQzzayjmmSybBwbDvbEubHsbIrb\
  4470.   JqbM72u60w60yD0zI3zN7zSBzZFzcJziNznRzsUzuYwuaqueju\
  4471.   icukZsg_sc_s__rXarUarQaqMbqIbqFboBco7co3co0ccBXUMO\
  4472.   JXI8fA0o36n4Dn6Jm6Qm7Xm7So6Qq4Ns3Ju2Hv0Ey0Bz07z04z\
  4473.   02z00z00z02v03q04k36f47a78X8ARBBMDDHFEBHF6JH0KI0NI\
  4474.   0OH0NH0MH0KH0JF3IF6HF8FFBEEEDEHBEJAEM8DO7DR6DU4DX4\
  4475.   DY0vZ2r_0oa0mb0ic0fe0cf0_g0Yi0Vj0Rk0Om0Mn0Io0Fq00r\
  4476.   z0sw0us0vn0wj2ye3za4zX4zS6zN7zJ8zEAzABz4Dz00zv0zk2\
  4477.   za4zR7zHAz6vzMqzJmzHgzEczBZz8rz0vz0yz0zz0vz0qz6kzB\
  4478.   fzIbzNYzSSzZNzcJziEzo8zu3zz0zz4zzAzzFzyJzwOzuUzsYz\
  4479.   qbzogzmmzkqzivzgzzezzzzzz
  4480.   }
  4481.  
  4482.  
  4483. frm:MandelbrotBC  { ; Formula by Andrew Coppin
  4484.   e=p1
  4485.   p=real(p2)+PI
  4486.   q=2*PI*trunc(p/(2*PI))
  4487.   r=real(p2)-q
  4488.   Z=C=Pixel:
  4489.     Z=log(Z)
  4490.     IF(imag(Z)>r)
  4491.       Z=Z+flip(2*PI)
  4492.     ENDIF
  4493.     Z=exp(e*(Z+flip(q)))+C
  4494.   |Z|<100
  4495. }
  4496.  
  4497. END 20.0 PAR-FORMULA FILE==================================
  4498.  
  4499. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4500. Post Message:   fractint@lists.xmission.com
  4501. Get Commands:   majordomo@lists.xmission.com "help"
  4502. Administrator:  twegner@fractint.org
  4503. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4504.  
  4505. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4506. Post Message:   fractint@lists.xmission.com
  4507. Get Commands:   majordomo@lists.xmission.com "help"
  4508. Administrator:  twegner@fractint.org
  4509. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4510.  
  4511.  
  4512. -------------------------------------------------------------------------------
  4513.  
  4514. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  4515. Subject: (fractint) The specter of schoolwork, and really really big
  4516. Date: 19 Apr 2001 18:22:45 -0400
  4517.  
  4518. Hi Zorba,
  4519.  
  4520.   All of the images are different from their Fractint version, and in lot=
  4521. s
  4522. of them, UF replaced the nice texture with banding so, I'd like you to
  4523. remove them or redo them with Fractint (maybe in a standard 1600x1200
  4524. format).
  4525.  
  4526.   Cheers,
  4527.  
  4528.         - Sylvie
  4529.  
  4530. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4531. Post Message:   fractint@lists.xmission.com
  4532. Get Commands:   majordomo@lists.xmission.com "help"
  4533. Administrator:  twegner@fractint.org
  4534. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4535.  
  4536.  
  4537. -------------------------------------------------------------------------------
  4538.  
  4539. From: "Zorba the Hutt" <zorbathut@uswest.net>
  4540. Subject: Re: (fractint) The specter of schoolwork, and really really big  fractals
  4541. Date: 19 Apr 2001 21:30:27 -0400
  4542.  
  4543.  
  4544. Done. I don't know why they're different - I remember I checked some of
  4545. them, and they were the same, or at least I thought they were. Perhaps it's
  4546. a fractint difference also. Anyway, they're gone now - really sorry about
  4547. the annoyance ^^;;
  4548.  
  4549. -Zorba
  4550.  
  4551. ----- Original Message -----
  4552. Sent: Thursday, April 19, 2001 6:22 PM
  4553. fractals
  4554.  
  4555.  
  4556. Hi Zorba,
  4557.  
  4558.   All of the images are different from their Fractint version, and in lots
  4559. of them, UF replaced the nice texture with banding so, I'd like you to
  4560. remove them or redo them with Fractint (maybe in a standard 1600x1200
  4561. format).
  4562.  
  4563.   Cheers,
  4564.  
  4565.         - Sylvie
  4566.  
  4567. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4568. Post Message:   fractint@lists.xmission.com
  4569. Get Commands:   majordomo@lists.xmission.com "help"
  4570. Administrator:  twegner@fractint.org
  4571. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4572.  
  4573.  
  4574.  
  4575. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4576. Post Message:   fractint@lists.xmission.com
  4577. Get Commands:   majordomo@lists.xmission.com "help"
  4578. Administrator:  twegner@fractint.org
  4579. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4580.  
  4581.  
  4582. -------------------------------------------------------------------------------
  4583.  
  4584. From: JimMuth@aol.com
  4585. Subject: (fractint) C-FOTD  20-04-01  (Fairy Gardens [6])
  4586. Date: 19 Apr 2001 22:35:37 EDT
  4587.  
  4588.  
  4589. Classic FOTD -- April 20, 2001 (Rating 6)
  4590.  
  4591. Fractal visionaries and enthusiasts:
  4592.  
  4593. Do fairies, elves, gnomes, sylphs, etc. exist?  Of course they 
  4594. do.  Every culture on earth is rich with stories and legends of 
  4595. fairies.  But since fairies, just like dragons, do indeed exist, 
  4596. are they then real?  The answer to that question depends on the 
  4597. meaning one gives to the word 'real'.  Not yet being in my deep 
  4598. philosophical mode, I'll not at this time state my opinion of 
  4599. the meaning of the word 'real', but if fairies do not dwell in 
  4600. the intricacies of the garden-like scene of today's fractal, 
  4601. what then does?
  4602.  
  4603. The formula that drew the image, TowerMinExp04a, is one I rarely 
  4604. use.  It is but one in a remote series of 26 such formulae, 
  4605. which pile up the exponents of Z into exponent towers.  The four 
  4606. functions in today's formula merely add variety.
  4607.  
  4608. I named the image "Fairy Garden" when a lawn fairy flew past the 
  4609. window while I was trying to think of a name.  The image is a 
  4610. bit too busy and fragmented for a very high rating, but the 6, 
  4611. which is a little above average, is satisfactory.  As long as my 
  4612. FOTD's rate above a 5, I'm satisfied with them.
  4613.  
  4614. I'll not divulge at this time whether I believe in magical 
  4615. things such as fairies, and yes even dragons.  I will state 
  4616. however that I believe in some things that many consider weird 
  4617. or downright kooky.  My beliefs are not limited by the 
  4618. discoveries of science, nor by common sense or reason, though I 
  4619. certainly do occasionally use these attributes.
  4620.  
  4621. The parameter file of today's image, which is attached to the 
  4622. bottom of this letter, renders in 2-1/2 minutes.  For extra 
  4623. convenience, the GIF image file is or soon will be posted to the 
  4624. W.W.Web at the URL:
  4625.  
  4626.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  4627.  
  4628. and at:
  4629.  
  4630.           <http://home.swbell.net/sdboyd56/fotd/>
  4631.  
  4632. I read recently that the venerable Fractint fractal generating 
  4633. program is over the hill, on its last lap, abandoned by all but 
  4634. a few backward fractalists in favor of more advanced fractal 
  4635. generating programs with glittery advanced features such as 
  4636. true-color, multiple layers, transforms, etc.
  4637.  
  4638. Well, one would never guess it here at Fractal Central, where 
  4639. the old warhorse program continues to do what it was designed to 
  4640. do -- find fractals.  It's not that I have no other programs -- 
  4641. three other fractal generating programs are on my drive.  But I 
  4642. rarely use them.  Other than true-color, which is Fractint's 
  4643. greatest lack, I feel that the other features of the state-of-
  4644. the-art programs are leading us from the basic idea of fractals. 
  4645. We are drifting from a "look what I found" attitude to a "look 
  4646. Ma, I'm an artist" attitude.  When the fractalist does more work 
  4647. on an image than the numbers, perhaps the resulting image should 
  4648. be called something like computer art, rather than fractal art.
  4649.  
  4650. I guess I have never been able to make the switch from admiring 
  4651. the things the numbers have done to admiring the things I have 
  4652. done.  Maybe my reluctance to embrace the newer programs is due 
  4653. to the fact that I had been working with graphic programs such 
  4654. as Photoshop long before the same image manipulating features 
  4655. appeared included in fractal programs, and I therefore failed to 
  4656. be impressed with such features.  (Of course, the features are 
  4657. far less expensive when part of the actual fractal program.)
  4658.  
  4659. I also find myself amused at the extreme concern on the fractal-
  4660. art list about copyright infringement.  Fractals are fun -- 
  4661. they're philosophical, mystical and scientific at the same time. 
  4662. They're not a means of becoming wealthy.  Do we really think 
  4663. that someone is going to steal our fractals and get rich from 
  4664. our efforts?  If anyone were planning to do this, they certainly 
  4665. would not post their stolen goods on the Web for the whole world 
  4666. to see.
  4667.  
  4668. I started the FOTD almost exactly 4 years ago for the fun of it. 
  4669. I continue the FOTD 4 years later for the fun of it.  If it were 
  4670. not fun, I would have grown bored with the effort years ago and 
  4671. stopped posting.  But I have no intention of ending the FOTD in 
  4672. the foreseeable future, because I know that finding fractals 
  4673. will be as much fun in 2005 as it is in 2001 and was in 1997.
  4674.  
  4675. The fractal weather today was a big improvement over yesterday.  
  4676. A warm sun brought the temperature up to 61F (16C), and brought 
  4677. out the fractal cats into the yard for an afternoon's romp in 
  4678. the new grass.
  4679.  
  4680. The rush is easing somewhat, but there's still lots to be done.  
  4681. Between other stuff I'll find time for another FOTD in 24 hours. 
  4682. Until then, take care, and watch out for the fairies as you 
  4683. trim your newly greened lawn.
  4684.  
  4685.  
  4686. Jim Muth
  4687. jamth@mindspring.com
  4688.  
  4689.  
  4690. START 20.0 PAR-FORMULA FILE================================
  4691.  
  4692. Fairy_Gardens      { ; time=0:02:30.77--SF5 on a P200
  4693.   reset=2001 type=formula formulafile=tower.frm
  4694.   formulaname=TowerMinExp04a function=sqrt/sinh/acos\
  4695.   h/tanh passes=1 center-mag=1.39458/-1.16573e-015/3\
  4696.   .617023/1.0776/90 params=3.91/0/3.75/0/-3.215/0
  4697.   float=y maxiter=250 inside=bof60 
  4698.   logmap=yes periodicity=10
  4699.   colors=000zzzVLRD9Q00N00P00R00T01V13X34Y46_67a89c9\
  4700.   AeBCfCDhEFjFGlHInJJoKLqMMsNOuPPwQQxPPuOOrNNoMMlLLj\
  4701.   KKgJJdIIaII_HHXGGUFFREEODDMCCJBBGAADAAB7A95A82A70A\
  4702.   50A40A30900A20B40C50D70E90FA0GC0HE1IF2JH3KJ4LK5MM6\
  4703.   NO7OP8PR9QTARUBSWCTYDTZJWYPYYV`Y`bXfeXkgXheWecVcbU\
  4704.   ``UY_TWYSTXRQVROUQLSPIQPGPODNNAMM8KM5JL2IK0IK1KO2N\
  4705.   S3QW4T_5Wb6Zf7aj8dn7fp8gq8fq8dq8bq9_q9Xq9Vq9TqARqA\
  4706.   PqAMqAKqBIqBGqBEqBBqC9qC7qC5qD1sC3qC5pC7oC9nCBmCCl\
  4707.   CEkCGjCIhCKgCLfCNeCPdCRcCTbDT`CUaBVaAWaAXa9Ya8Za8Z\
  4708.   a7_b6`b5ab5bb4cb3db3db2ec1fc0gc0hc0ic0jc0jc0eb0`a0\
  4709.   X`0S_0N_0JZ0EY09X07X05X26Y36Y47Z67Z77_88_A8`B9`C9`\
  4710.   E9aFAaGAbHBbJBcKBcLCcNCdODdPDeRDeSEfTEfTEfTEfTFcTF\
  4711.   `TFYTFVTFSTEPTEMTEJTDGTDETDFUCFTCGSCGQBGPBHOBHNBHP\
  4712.   AHQAHR9HS9HT9HU8HW8HX8HY7HZ7H_7H`6Ha6Hc6Hd5He5Hf5H\
  4713.   g4Hh4Hi4Hh1Kg0Mh0Ng0Og0Pg0Qg3Rg5Sg7TgAUgCUfEVfGWfJ\
  4714.   XfLYfNZfQ_fS`fU`eWagXVjYT
  4715.   }
  4716.  
  4717. frm:TowerMinExp04a {; Jim Muth
  4718. z=pixel, c=p2+(p3*pixel):
  4719. z=z^fn1(z^fn2(-z^fn3(z^fn4(-z+p1))))+c,
  4720. |z| <= 100
  4721. }
  4722.  
  4723. END 20.0 PAR-FORMULA FILE==================================
  4724.  
  4725. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4726. Post Message:   fractint@lists.xmission.com
  4727. Get Commands:   majordomo@lists.xmission.com "help"
  4728. Administrator:  twegner@fractint.org
  4729. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4730.  
  4731.  
  4732. -------------------------------------------------------------------------------
  4733.  
  4734. From: erdal mazlum <erdalmazlum@yahoo.com>
  4735. Subject: Re: (fractint) C-FOTD  19-04-01  (Pi in the Sky [6])
  4736. Date: 19 Apr 2001 22:28:51 -0700 (PDT)
  4737.  
  4738. hi jim,
  4739.  
  4740. your comment about the letter is pretty cool, and FOTD
  4741. ofcourse... have a nice day!
  4742.  
  4743. erdal.
  4744.  
  4745. --- JimMuth@aol.com wrote:
  4746. > Classic FOTD -- April 19, 2001 (Rating 6)
  4747. > Fractal visionaries and enthusiasts:
  4748. > It's 9:30am and the FOTD is once again late.  But
  4749. > what's new 
  4750. > about that?  I offer excuse number three -- that
  4751. > things were too 
  4752. > busy here at Fractal Central Auxiliary to get the
  4753. > discussion 
  4754. > written at the regular time.  Maybe I need to get a
  4755. > day or two 
  4756. > ahead in my FOTD's.  That way I won't be late every
  4757. > time I have 
  4758. > a busy day.  Of course, the problem with this
  4759. > solution is that 
  4760. > I have little time to get ahead.
  4761. > Today's image is a picture of a midget in the
  4762. > Z^(pi)+C fractal, 
  4763. > as rendered by Andrew's MandelbrotBC formula.  After
  4764. > a moment's 
  4765. > consideration, I rated the image a 6 and named it
  4766. > "Pi in the 
  4767. > Sky".  At 4-1/2 minutes on an aging Pentium, it's
  4768. > not too 
  4769. > difficult an image to render from the parameter
  4770. > file.
  4771. > But for those who would rather not render, the GIF
  4772. > image is, or 
  4773. > soon will be, posted to the WWW at Paul Lee's site
  4774. > at:
  4775. >          
  4776. > <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  4777. > and at Scott's site at:
  4778. >           <http://home.swbell.net/sdboyd56/fotd/>
  4779. > The intrepid fractal cats had a rough day, as very
  4780. > un-springlike 
  4781. > cold enveloped the area.  The temperature of 42F
  4782. > (5.5C) was 
  4783. > entirely too chilly for their sensitive ears,
  4784. > forcing them to 
  4785. > sulk indoors all afternoon, while blaming me for the
  4786. > outside 
  4787. > conditions.  I finally eased their moodiness by
  4788. > treating them to 
  4789. > a meal of tuna fish.
  4790. > When I checked my virtual mailbox first thing this
  4791. > morning, I 
  4792. > found a very long letter telling me how to get rich
  4793. > quick.  The 
  4794. > letter is one of those pyramid chain letters with a
  4795. > MLM twist, 
  4796. > which claims one can get rich by sending money to
  4797. > other people.  
  4798. > Having my name and address so widespread on the net,
  4799. > I have been 
  4800. > receiving different versions of this same letter for
  4801. > years.  I 
  4802. > usually delete it at once, but for some strange
  4803. > reason I decided 
  4804. > this morning to skim through it.
  4805. > The letter begins by telling me that it is the
  4806. > letter I've been 
  4807. > hearing about so much in the news lately.  Now, I
  4808. > keep up pretty 
  4809. > well with the news, but I have no recollection of
  4810. > ever hearing 
  4811. > or reading about such a letter.  I suppose that a
  4812. > reader who 
  4813. > might take the letter seriously is supposed to think
  4814. > that the 
  4815. > letter was indeed in the news, but that he missed
  4816. > it.
  4817. > Basically, the letter claims that one can become
  4818. > wealthy by 
  4819. > doing nothing but sending money to others and having
  4820. > them send 
  4821. > money back to you.  If this were true, everyone on
  4822. > earth should 
  4823. > be a USA-style millionaire by this time, though I
  4824. > have no idea 
  4825. > where the extra money could come from or how
  4826. > inflation could be 
  4827. > kept under control once everyone was rich.  (Of
  4828. > course, we could 
  4829. > blame the inflation on the political party in
  4830. > power.)
  4831. > In my experience, one gets rich by starting out
  4832. > doing work for 
  4833. > others and receiving money from them in return, not
  4834. > by starting 
  4835. > by sending money to others.  In all my years of
  4836. > earning money 
  4837. > working at real jobs, I have never started on a job
  4838. > by sending 
  4839. > money to someone else in return for the privilege of
  4840. > working on 
  4841. > their job.  But apparently, from the frequency with
  4842. > which I 
  4843. > receive this same letter, many are still out there
  4844. > who fail to 
  4845. > understand this simple fact of life.
  4846. > Well, I seem to have gotten off the fractal topic. 
  4847. > My intent 
  4848. > was to discuss the current state of the Fractint
  4849. > program and the 
  4850. > possibilities for its future development.  This will
  4851. > be my topic 
  4852. > when the next FOTD appears in only 12 hours or so.
  4853. > It's now time to start the day's rush.  Until next
  4854. > time, take 
  4855. > care, and I'm sorry Jonathan Roarke.
  4856. > Jim Muth
  4857. > jamth@mindspring.com
  4858. > START 20.0 PAR-FORMULA
  4859. > FILE================================
  4860. > Pi_in_the_Sky      { ; time=0:04:37.66--SF5 on a
  4861. > p200
  4862. >   reset=2001 type=formula formulafile=branchct.frm
  4863. >   formulaname=MandelbrotBC passes=1
  4864. >  
  4865. > center-mag=-0.9197872859930445/-0.1300422309794571\
  4866. >   /5.421884e+007/1/-25
  4867. > params=3.14159265358979/0/32/0
  4868. >   float=y maxiter=2400 inside=0
  4869. >   logmap=103 periodicity=10
  4870. >  
  4871. > colors=000zszzszztzzuzzvyzwvzxszyqzynyzkyziszfnyej\
  4872. >  
  4873. > sceob_j_XeZRaYNXXIQSDKQ8EN37K03J2DO3KS4UY6aa8geAog\
  4874. >  
  4875. > BvkDznHwjKsfOocSj_XfX_bUcYQgUMjQJaSISVHKXHIZFH_FFa\
  4876. >  
  4877. > EEbEDeDBfD8gD7iB6kB4mA3nA2oA8q8Fq7Kr7Rr6Xr6Yn7Yj8Z\
  4878. >  
  4879. > fAZbA_ZB_VDaRDaNEbJFbHFfJHiMImOJoRJsSKvVMzYMz_NzbO\
  4880. >  
  4881. > zcOziUwmZqqckuifyn_zsVzyQzzayjmmSybBwbDvbEubHsbIrb\
  4882. >  
  4883. > JqbM72u60w60yD0zI3zN7zSBzZFzcJziNznRzsUzuYwuaqueju\
  4884. >  
  4885. > icukZsg_sc_s__rXarUarQaqMbqIbqFboBco7co3co0ccBXUMO\
  4886. >  
  4887. > JXI8fA0o36n4Dn6Jm6Qm7Xm7So6Qq4Ns3Ju2Hv0Ey0Bz07z04z\
  4888. >  
  4889. > 02z00z00z02v03q04k36f47a78X8ARBBMDDHFEBHF6JH0KI0NI\
  4890. >  
  4891. > 0OH0NH0MH0KH0JF3IF6HF8FFBEEEDEHBEJAEM8DO7DR6DU4DX4\
  4892. >  
  4893. > DY0vZ2r_0oa0mb0ic0fe0cf0_g0Yi0Vj0Rk0Om0Mn0Io0Fq00r\
  4894. >  
  4895. > z0sw0us0vn0wj2ye3za4zX4zS6zN7zJ8zEAzABz4Dz00zv0zk2\
  4896. >  
  4897. > za4zR7zHAz6vzMqzJmzHgzEczBZz8rz0vz0yz0zz0vz0qz6kzB\
  4898. >  
  4899. > fzIbzNYzSSzZNzcJziEzo8zu3zz0zz4zzAzzFzyJzwOzuUzsYz\
  4900. >   qbzogzmmzkqzivzgzzezzzzzz
  4901. >   }
  4902. > frm:MandelbrotBC  { ; Formula by Andrew Coppin
  4903. >   e=p1
  4904. >   p=real(p2)+PI
  4905. >   q=2*PI*trunc(p/(2*PI))
  4906. >   r=real(p2)-q
  4907. >   Z=C=Pixel:
  4908. >     Z=log(Z)
  4909. >     IF(imag(Z)>r)
  4910. >       Z=Z+flip(2*PI)
  4911. >     ENDIF
  4912. >     Z=exp(e*(Z+flip(q)))+C
  4913. >   |Z|<100
  4914. > }
  4915. > END 20.0 PAR-FORMULA
  4916. > FILE==================================
  4917. >
  4918. > Thanks for using Fractint, The Fractals and Fractint
  4919. > Discussion List
  4920. > Post Message:   fractint@lists.xmission.com
  4921. > Get Commands:   majordomo@lists.xmission.com "help"
  4922. > Administrator:  twegner@fractint.org
  4923. === message truncated ===
  4924.  
  4925.  
  4926. __________________________________________________
  4927. Do You Yahoo!?
  4928. Yahoo! Auctions - buy the things you want at great prices
  4929. http://auctions.yahoo.com/
  4930.  
  4931. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4932. Post Message:   fractint@lists.xmission.com
  4933. Get Commands:   majordomo@lists.xmission.com "help"
  4934. Administrator:  twegner@fractint.org
  4935. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4936.  
  4937.  
  4938. -------------------------------------------------------------------------------
  4939.  
  4940. From: JimMuth@aol.com
  4941. Subject: (fractint) C-FOTD  21-04-01  (Oriental Lanterns [7])
  4942. Date: 20 Apr 2001 22:24:43 EDT
  4943.  
  4944.  
  4945. Classic FOTD -- April 21, 2001 (Rating 7)
  4946.  
  4947. Fractal visionaries and enthusiasts:
  4948.  
  4949. The day grew far busier far sooner than I had expected, and then 
  4950. the fairies returned to their fairy nests.  Nothing remained for 
  4951. me to do but tackle the work, finish it as quickly as possible, 
  4952. and see what kind of a fractal I could scrounge up from the 
  4953. depths of infinity.
  4954.  
  4955. I did my scrounging in the fractal created by the unassuming 
  4956. formula 1.25Z^(-20)+15Z^(-1.23)+(1/C), which consists of an 
  4957. eastward-facing Mandeloid with many spurious bays and valleys.  
  4958. The scene of today's midget is at the tip of the stem shooting 
  4959. out from a rudimentary bud on the unusually smooth north shore 
  4960. of the largest bay.
  4961.  
  4962. I named the final picture "Oriental Lanterns" when I noticed 
  4963. that the orangish square features vaguely resemble those festive 
  4964. decorative lanterns.  Because of the unusually brilliant color 
  4965. palette, I rated the image at a 7.  Whether I'll still rate it a 
  4966. 7 next week at this time remains to be seen.
  4967.  
  4968. The attached parameter file renders in just over 4 minutes on a 
  4969. somewhat tired old Pentium 200mhz machine.  It will render 
  4970. significantly faster on a fresh young PentiumIV machine.  For 
  4971. those who fail to enjoy the effort of running parameter files, 
  4972. the finished GIF image file is available on the Web at:
  4973.  
  4974.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  4975.  
  4976. and at:
  4977.  
  4978.           <http://home.swbell.net/sdboyd56/fotd/>
  4979.  
  4980. The fractal weather today turned cloudy, but the temperature 
  4981. reached 69F (20.5C), allowing the fractal cats a good 
  4982. afternoon's romp in the balmy outdoors.  When a neighborhood 
  4983. stray intruded, the dynamic duo almost got into a fight with the 
  4984. intruder, but common sense prevailed, and the duo managed to 
  4985. stay out of trouble all afternoon.
  4986.  
  4987. My urge to philosophize is rising, but so is the pile of work to 
  4988. be done.  And only two days ago I thought the rush was near an 
  4989. end.  One of these weeks I'll manage to get caught up, but this 
  4990. week isn't the one.  So until next time, which will come in 24 
  4991. hours plus or minus 2 hours, take care, and relish your 
  4992. fractals, but don't add onions, or you'll be in a pickle.
  4993.  
  4994.  
  4995. Jim Muth
  4996. jamth@mindspring.com
  4997.  
  4998.  
  4999. START 20.0 PAR-FORMULA FILE================================
  5000.  
  5001. Oriental_Lanterns  { ; time=0:04:20.78--SF5 on a p200
  5002.   reset=2001 type=formula formulafile=critical.frm
  5003.   formulaname=MandelbrotMix4 function=recip passes=1
  5004.   center-mag=+0.381370015722773/+0.65420816277382/6.\
  5005.   862245e+007/1/112.5 params=1.25/-20/15/-1.23/0/800
  5006.   float=y maxiter=1300 inside=0
  5007.   logmap=54 periodicity=10
  5008.   colors=00010010010010010S100100100100100100C0EH0SE\
  5009.   0e90g40j10m00p04r0Cu0Mx0Uz0ez0mz0xz0zz0zz0zz0pz0bz\
  5010.   4SzEHzM4zY0zg0zr0zz0zz0zu0ze0u00190K00100000000000\
  5011.   0000000600E40PP0Y_0ej0mu0up0zm0zj0ze0zb4z_CzYKz_Hz\
  5012.   _Ez_Cz_9z_6z_4z_1z_0z_0z_0z_0z_0z_0z_0rb0gb0_b1Pe6\
  5013.   EeC6eH0eM0gS0gY0gb0gg0jj0mm0pp0pr0rr0uu0xx0xz0zz0z\
  5014.   z0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz6pgSbMjP4zC0z00z10z\
  5015.   40z60z90zC0zE0zH0zK0zM0xP0uS0rU0pY0m_0jb0ge0eg0bj0\
  5016.   _m0Yp0Ur0Su0Px0Px0Uz0_z0bz1gz9mzHpzMuzUzzbzzjzzrzz\
  5017.   zzzzzzzzzzzzzzzzzzzzzzzrzzrzzrzzrrxrjpr_jrSerU_rYU\
  5018.   r_PrbKreErg9rj4rm0rp0rr0ru0ru0rm0re0r_0rS0rM0rE0u9\
  5019.   0z10z00mS0ju0jz0mz0mz0pz0pz0rz4rz9uzEuzKuzPxzUxz_z\
  5020.   zezzjzzpzzuzzzzzzzzzzzzzzzzzzzxzzxzzzzuzzuzzxzzzzz\
  5021.   zzxzzuzzpzzjzzgzzbzz_zzgzzmzzrzuzzbzzMzz4zz0zz0zz0\
  5022.   zz0zz0zz0rz9jzMbz_UzmUzpYzpYzrYzu_zu_zx_zxbzzbzzez\
  5023.   zezzgzzjzzmzzpzzrzzrzzrzz
  5024.   }
  5025.  
  5026. frm:MandelbrotMix4 {; Jim Muth
  5027. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  5028. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  5029. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  5030. z=k*((a*(z^b))+(d*(z^f)))+c,
  5031. |z| < l
  5032. }
  5033.  
  5034. END 20.0 PAR-FORMULA FILE==================================
  5035.  
  5036. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5037. Post Message:   fractint@lists.xmission.com
  5038. Get Commands:   majordomo@lists.xmission.com "help"
  5039. Administrator:  twegner@fractint.org
  5040. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5041.  
  5042.  
  5043. -------------------------------------------------------------------------------
  5044.  
  5045. From: Jim Muth <jamth@mindspring.com>
  5046. Subject: (fractint) C-FOTD  22-04-01  (Minibrot with Aura [7])
  5047. Date: 21 Apr 2001 22:18:20 -0400 (EDT)
  5048.  
  5049.  
  5050. Classic FOTD -- April 22, 2001 (Rating 7)
  5051.  
  5052. Fractal visionaries and enthusiasts:
  5053.  
  5054. The hazy blue glow surrounding today's tiny Minibrot reminds me 
  5055. of the mystical aura that is sometimes claimed to surround the 
  5056. human body, and is said to be especially brilliant around the 
  5057. heads of saints and holy people.  This resemblance inspired the 
  5058. name "Minibrot with Aura".  Since I'm not yet in my mystical or 
  5059. philosophical mode, I'll not speculate as to whether such an 
  5060. ethereal glow actually exists around the human body, and can 
  5061. actually be seen by those with extrasensory vision, but if no 
  5062. such thing exists, a lot of hallucinating people or liars are 
  5063. out there.
  5064.  
  5065. One needs no psychic ability to see the aura in today's image.  
  5066. It was produced by the formula Z^(-1.5)+0.0001*(Z^(-150))+(1/C). 
  5067. The sickle-shaped elements are typical features in the images 
  5068. that result when different portions of high and low powers of Z 
  5069. are combined.
  5070.  
  5071. After much indecision, I settled on a rating of 7 for today's 
  5072. image, with its soft colors and sharp contrasts.  The parameter 
  5073. file renders in a little over 10 minutes on a tired but still 
  5074. functional Pentium 200mhz machine.  The GIF image file downloads 
  5075. in a fraction of that time.  For those who choose the download, 
  5076. the file may be found on the Web, posted to Paul's site at:
  5077.  
  5078.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  5079.  
  5080. and to Scott's site at:
  5081.  
  5082.           <http://home.swbell.net/sdboyd56/fotd/>
  5083.  
  5084. But give Paul and Scott an hour or so to post the image.
  5085.  
  5086. The fractal weather today here at Fractal Central was sunny in 
  5087. the morning and much warmer, but it became cloudy in the 
  5088. afternoon, with a few drops of rain.  The temperature of 75F 
  5089. (24C) had the fractal cats in the yard most all day, twitching 
  5090. their ears whenever a drop of rain hit them.
  5091.  
  5092. As for me, I see that it's time to shut down the fractal shoppe 
  5093. and call it a night.  If I can find a trashy enough old sci-fi 
  5094. movie to watch, the day will be complete.  If not, I'll watch a 
  5095. Dr. Who show.  Until tomorrow or Monday morning, take care, and 
  5096. just because you can't see something doesn't mean that it's not 
  5097. there.
  5098.  
  5099.  
  5100. Jim Muth
  5101. jamth@mindspring.com
  5102.  
  5103.  
  5104. START 20.0 PAR-FORMULA FILE================================
  5105.  
  5106. Minibrot_with_Aura { ; time=0:10:18.08--SF5 on a p200
  5107.   reset=2001 type=formula formulafile=critical.frm
  5108.   formulaname=MandelbrotMix4 function=recip passes=1
  5109.   center-mag=+3.22503694025169900/+0.092233759045437\
  5110.   49/3.857046e+010/1/64.992/-0.026
  5111.   params=1/-1.5/0.0001/-150/0/300 float=y
  5112.   maxiter=1500 inside=0 logmap=-220 periodicity=10
  5113.   colors=000A0FA0FA0FA0FA0FA1FA2FA3EA4EA5DA6DA7CA8CA\
  5114.   9BAAAABEACAAD6AE2AF3AI4AL5AN6AQ7AT8AV9PYAU`BUbCceD\
  5115.   hhEmjFq`poZlnYilXekVfiUghTigSkiRmjRokRqlRsmRunRwoR\
  5116.   yqRzrRzsRzqRzoRzmRzmRzmUznXzo_zpbzqdzJH8JRCGaFCmJ9\
  5117.   vMCsPEqSHnVJlXMi_OgbRddTbgW_jYYldWbjUToSJuQ9zO0zM4\
  5118.   vL7rKAnIEjHHfGKbEO_DRXCUUAYR9`O8cL6gI5jF4mC3pF7oHA\
  5119.   oKEoMHnPKnROnURmWVmZYm``mYZkWYjUXhRWgPVeNUdLTbIRaG\
  5120.   Q_EPZBOX9NW7MU5LT7OS9RSAURCXRE_RFbQHeQJhQKkPMnPOqP\
  5121.   PtORwOSzOUzNVzNWzNYzMZzM_zMazLbzLczL`zRYzXVzaSzgPz\
  5122.   lMzrJzwNzsQzpTzlWziZzfazbdz_gzXjzTmzQpzNozQnzSmzUm\
  5123.   zXlzZkz`jzcjzeizghzjgzlgznfzqezsezubzs`zqZzoXznVzl\
  5124.   TzjRziPzgNzeLzcJzbHz`FzZDzYEz_FzaGzcHzdIzfJzhKzjLz\
  5125.   kMzmNzoOzqOzrRzqUzqWzqZzq`zqczqezphzpjzpmzpozprzpt\
  5126.   zpIzXWzSizOwzKszNozPkzShzUdzW`zZYz`UzbQzeNzgJzjFzl\
  5127.   Czn8zq4zs1zu5zr8zoCzmFzjJzgMzeQzbTz_XzY_zVczSfzQhz\
  5128.   RjzTkzUmzWozXpzZrz_sz`6ze
  5129.   }
  5130.  
  5131. frm:MandelbrotMix4 {; Jim Muth
  5132. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  5133. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  5134. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  5135. z=k*((a*(z^b))+(d*(z^f)))+c,
  5136. |z| < l
  5137. }
  5138.  
  5139. END 20.0 PAR-FORMULA FILE==================================
  5140.  
  5141.  
  5142. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5143. Post Message:   fractint@lists.xmission.com
  5144. Get Commands:   majordomo@lists.xmission.com "help"
  5145. Administrator:  twegner@fractint.org
  5146. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5147.  
  5148.  
  5149. -------------------------------------------------------------------------------
  5150.  
  5151. From: JimMuth@aol.com
  5152. Subject: (fractint) C-FOTD  23-04-01  (Swirls [4])
  5153. Date: 23 Apr 2001 10:36:06 EDT
  5154.  
  5155.  
  5156. Classic FOTD -- April 23, 2001 (Rating 4)
  5157.  
  5158. Fractal visionaries and enthusiasts:
  5159.  
  5160. Today's fractal rates a 4, though I feel that it has a higher 
  5161. rating in it, which I could develop if I had time to tweak the 
  5162. colors some more.  But the FOTD is already as late as it has 
  5163. ever been and I've got a busy day ahead of me, so the image, 
  5164. which I have named "Swirls", will have to stand as it is.
  5165.  
  5166. The parameter file renders in 2 minutes, making running it as 
  5167. convenient as downloading the completed GIF image.  Those who 
  5168. would rather download the image will find the file at:
  5169.  
  5170.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  5171.  
  5172. and at:
  5173.  
  5174.           <http://home.swbell.net/sdboyd56/fotd/>
  5175.  
  5176. allowing Paul and Scott time to post the file of course.
  5177.  
  5178. The fractal weather today, (Sunday the 22nd), was like 
  5179. mid-summer, with hot sun and a temperature of 86F (30C), which 
  5180. lured not only the fractal cats, but me also, into the outdoors. 
  5181. This explains today's lateness.
  5182.  
  5183. That's it for today.  Until next time, take care, and be happy.
  5184.  
  5185.  
  5186. Jim Muth
  5187. jamth@mindspring.com
  5188.  
  5189.  
  5190. START 20.0 PAR-FORMULA FILE================================
  5191.  
  5192. Swirls             { ; time=0:01:50.78--SF5 on a P200
  5193.   reset=2001 type=formula formulafile=critical.frm
  5194.   formulaname=MandelbrotMix4 function=recip passes=1
  5195.   center-mag=+4.830750037059846/-2.891827230043619/1\
  5196.   126735/1/-35 params=0.01/-100/100/-1.1/-0.95/300
  5197.   float=y maxiter=400 inside=0
  5198.   logmap=16 periodicity=10
  5199.   colors=0000DR7Mc8FQ6GQAHTEIVIJYMJ_QKbULdXLf`MidNkh\
  5200.   OnlOppPstQuwQwuNrtLmsJhqHdpF_oDVmBRl9Mk7Hj5Di4Gh4J\
  5201.   h4Mg4Pg3Rf3Uf3Xe3_e2ad2dd2gc2jc2lbBhbJdbRaaZYafVan\
  5202.   RavO_oLZhIXaFWWCXXGXXJXYMYYPYYTYZWZZZZ_aZ_e__h_`k_\
  5203.   `n_`qijirtass`sr`tq`tp`up_uo_un_vm_vl_wlZwkZxjZxiZ\
  5204.   xiZtfXpdVlbTh_RdYQ`WOXTMTRKPPJLMHHKFDID9GCbg5dd6fa\
  5205.   7gZ7iW8jU8lR9mO9oLApJArGBsDBuACv8CpEEjJGdOIZTJUYLO\
  5206.   bNIgOClQ6qS1vT3uR4uQ5uP6tN8tM9tLAsJBsIDsHErFFrEGrD\
  5207.   JsCLsBNsAPs9Rs9Ts8Wt7Yt6_t6at5ct4et3gt3bp8YmDUmHPm\
  5208.   MLmRGmVCm_7md3mh6mg9mgCmfFmfImeLmeOmeRmdUndXoc_pcb\
  5209.   qc`rcZrcfr`mrYgsUbtRXuOSvLMwIHxFByC6z91z64z86z98zB\
  5210.   BzCDzEFzFIzHKzIMzKPzLRzNTzOWzQYzR_zTazUYzPUzKTzLTz\
  5211.   LTzMTzMTzNTzNTzNTzOTzOTzPTzPTzPTzQTzQTzRTzRTzRTzST\
  5212.   zSTzTTzTTzTUzUUzUVzUVzUVzUWzUWzUWzVXzVXzVXzVYzVYzV\
  5213.   YzVWzUVzTUzSSzSRzRQzQOzQNzPMzOKzOJzNIzMHzLFzLEzKDz\
  5214.   JBzJAzI9zH9zs9zv9zx9zz8zr
  5215.   }
  5216.  
  5217. frm:MandelbrotMix4 {; Jim Muth
  5218. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  5219. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  5220. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  5221. z=k*((a*(z^b))+(d*(z^f)))+c,
  5222. |z| < l
  5223. }
  5224.  
  5225. END 20.0 PAR-FORMULA FILE==================================
  5226.  
  5227. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5228. Post Message:   fractint@lists.xmission.com
  5229. Get Commands:   majordomo@lists.xmission.com "help"
  5230. Administrator:  twegner@fractint.org
  5231. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5232.  
  5233.  
  5234. -------------------------------------------------------------------------------
  5235.  
  5236. From: JimMuth@aol.com
  5237. Subject: (fractint) C-FOTD  24-04-01  (Windmills of Chaos [6])
  5238. Date: 23 Apr 2001 21:52:34 EDT
  5239.  
  5240.  
  5241. Classic FOTD -- April 24, 2001 (Rating 6)
  5242.  
  5243. Fractal visionaries and enthusiasts:
  5244.  
  5245. What kind of fractal does the formula Z^0+C or 1+C create?  It 
  5246. creates no fractal at all, just an empty circle.  What type of 
  5247. fractal then does Z^(0.05)+C create?  In this case the empty 
  5248. circle is lopsided, with no evidence of the typical fractal 
  5249. chaos.  But take Z^2, subtract Z^0.05 from it, and then add C, 
  5250. and an interesting fractal does appear.
  5251.  
  5252. I'll not try to describe the indescribable figure, but the 
  5253. oversized thing can be seen by entering the parameters 
  5254. -1, 0.05, 1, 2, 0, 0 into the M-Mix4 formula and letting it 
  5255. iterate.  Today's midget lies in a prominent valley on the north 
  5256. side of this fractal.
  5257.  
  5258. I named the image "Windmills of Chaos" when I noticed that the 
  5259. four open spirals toward the corners vaguely resemble windmill 
  5260. blades.  And of course the chaos is there as always, lying in 
  5261. vaguely organized form all through the picture.  
  5262.  
  5263. With a render time of just under 5 minutes, running the 
  5264. parameter file is a bit annoying.  A better choice is to give 
  5265. Paul and Scott a chance to post the GIF file of the image to 
  5266. their web sites at:
  5267.  
  5268.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  5269.  
  5270. and at:
  5271.  
  5272.           <http://home.swbell.net/sdboyd56/fotd/>
  5273.  
  5274. and download the image from there.
  5275.  
  5276. The fractal weather today was very summer-like.  In fact the 
  5277. temperature of 90F (32C) felt a bit too warm.  The fractal cats 
  5278. enjoyed the warmth however, as they stretched to their full 
  5279. cat-lengths on the porch most of the afternoon.
  5280.  
  5281. As for me, I'm about finished for the day.  It's been another 
  5282. busy one, but I'll be here again tomorrow, with more fractal 
  5283. goodies.  Until then, take care, and be at ease.
  5284.  
  5285.  
  5286. Jim Muth
  5287. jamth@mindspring.com
  5288.  
  5289.  
  5290. START 20.0 PAR-FORMULA FILE================================
  5291.  
  5292. Windmills_of_Chaos { ; time=0:04:45.45--SF5 on a P200
  5293.   reset=2001 type=formula formulafile=critical.frm
  5294.   formulaname=MandelbrotMix4 function=recip passes=1
  5295.   center-mag=+0.64915135165492830/-0.619948053295606\
  5296.   6/1320520/1/-134.999 params=-1/0.05/1/2/0/0 float=y
  5297.   maxiter=500 inside=0 logmap=78 periodicity=10
  5298.   colors=000d1gd1ge2hf3ig4jh5ki6li7lh8if8dd8`b9W`9SZ\
  5299.   ANXAJVAETBARB5PB1V9F_7Td9fi6tjNokSklXgk_`hZZdXV`UR\
  5300.   WQMSNIOJEJG9FC5B91CB2CC2DD3DE3EF3EG4FH4FJ5GK5GL5HM\
  5301.   6HN6KO7PP7UQ7ZOAcNChLEmPHrUJvZLzaNwZOrUPmPQhNRcPSa\
  5302.   QSXTYTWbPZgKalGdqCgvDhsDhpDimDijDigEjdEjaEkZEkWEmT\
  5303.   FrQFwNFzKFwHFsFHoMIkSJjZKidLhkMgqNgwPisQjoRlkSmhUo\
  5304.   dVp`WrXXsUVoXTkZSgaQccO_fNWhLSkJOmIKpGGrECuD9wCCuC\
  5305.   EtBHrBJqBMpAOnARmATl9Wj9Yi9_hI`PO`9QbFSdLUeRVgWXia\
  5306.   Zjg`lmamrdkpfjohimjgllfjneimbol`tkZyi_uh`qg`mfajeb\
  5307.   fcbbbc_acW`dS_ePYeLXfHWgEVgAUh6Th3WaCZWL`PTcJafCjh\
  5308.   6rf8seAsdCscEsaGs`Is_KsZMsXOsWQsVSsUTsXVpZWm`YjbZh\
  5309.   d_efabhb`jcYleVnfSpgQriNtjKvkIicUXWeKOpQJhWFaaBVf7\
  5310.   Od8Rb8T`9VZ9XXA_VAaTAcRBePBhNCjLClKCnIFhHHcGKZFMTE\
  5311.   PODRJCUDBW8AY3FZ2J_2N`2Ra2Vb2Zc1be1fg1ji1nk1jm8goE\
  5312.   dqKarQZsWWtaTugQvmNwsKxyNyuPzqRznTzjVzfXzc_z`azXcz\
  5313.   TezPgzLizIdzG_zFqzKpzKpzK
  5314.   }
  5315.  
  5316. frm:MandelbrotMix4 {; Jim Muth
  5317. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  5318. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  5319. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  5320. z=k*((a*(z^b))+(d*(z^f)))+c,
  5321. |z| < l
  5322. }
  5323.  
  5324. END 20.0 PAR-FORMULA FILE==================================
  5325.  
  5326. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5327. Post Message:   fractint@lists.xmission.com
  5328. Get Commands:   majordomo@lists.xmission.com "help"
  5329. Administrator:  twegner@fractint.org
  5330. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5331.  
  5332.  
  5333. -------------------------------------------------------------------------------
  5334.  
  5335. From: "Edward Barton" <bartonedward@hotmail.com>
  5336. Subject: Re: (fractint) C-FOTD
  5337. Date: 24 Apr 2001 11:34:08 +0200
  5338.  
  5339. Jim Muth,
  5340. Throughout the short time I have been part of this discussion list, I have 
  5341. noticed that in your FOTDs, you continually state that a faster rendering 
  5342. speeds are to be searched for, even if that means getting a new computer.
  5343. I don't mean to sound like I am criticising you, but I ask you to remember 
  5344. what the waiting time was when fractals were discovered, as well as the 
  5345. quality of the resulting image, and remember that the more interesting 
  5346. fractal images are those which are hidden deep inside the pattern of a 
  5347. fractal, and so take significantly longer to render.
  5348.  
  5349. Edward Barton
  5350.  
  5351. BTW: Despite the tradition of waiting for a week for a fractal, I do so wish 
  5352. that I didn't have to.  I use my Pentium 133 for other things as well, and 
  5353. during the rendering, I can do nothing.
  5354. _________________________________________________________________________
  5355. Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
  5356.  
  5357.  
  5358. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5359. Post Message:   fractint@lists.xmission.com
  5360. Get Commands:   majordomo@lists.xmission.com "help"
  5361. Administrator:  twegner@fractint.org
  5362. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5363.  
  5364.  
  5365. -------------------------------------------------------------------------------
  5366.  
  5367. From: Jim Muth <jamth@mindspring.com>
  5368. Subject: (fractint) Re: C-FOTD
  5369. Date: 24 Apr 2001 09:31:04 -0400 (EDT)
  5370.  
  5371. At 11:34 AM 4/24/01 +0200, you wrote:
  5372.  
  5373. >Jim Muth,
  5374. >Throughout the short time I have been part of this discussion list, I have 
  5375. >noticed that in your FOTDs, you continually state that a faster rendering 
  5376. >speeds are to be searched for, even if that means getting a new computer.
  5377.  
  5378. When one is working with fractals, it is obvious that CPU speed is 
  5379. important.  I do not need to state the fact.  When I do state it, I am 
  5380. merely repeating the obvious.  I have no memory of stating that one 
  5381. should go out and spend money they cannot afford on a new computer, though 
  5382. I suppose it could be implied in my words.
  5383.  
  5384. >I don't mean to sound like I am criticising you, 
  5385.  
  5386. Your post reads more like a letter of frustration than one of criticism.
  5387.  
  5388. >but I ask you to remember 
  5389. >what the waiting time was when fractals were discovered, as well as the 
  5390. >quality of the resulting image,
  5391.  
  5392. I was there, and I remember well the overnight waits to see a fractal 
  5393. that we now see in a few minutes.
  5394.  
  5395. >and remember that the more interesting 
  5396. >fractal images are those which are hidden deep inside the pattern of a 
  5397. >fractal, and so take significantly longer to render.
  5398.  
  5399. True!  This is where I search for my FOTD's.
  5400.  
  5401.  
  5402. >Edward Barton
  5403. >
  5404. >BTW: Despite the tradition of waiting for a week for a fractal, I do so wish 
  5405. >that I didn't have to.  I use my Pentium 133 for other things as well, and 
  5406. >during the rendering, I can do nothing.
  5407.  
  5408. Yes, sometimes the wait does become annoying.
  5409.  
  5410. FOTD coming in 15 hours.
  5411.  
  5412. Jim Muth
  5413.  
  5414.  
  5415. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5416. Post Message:   fractint@lists.xmission.com
  5417. Get Commands:   majordomo@lists.xmission.com "help"
  5418. Administrator:  twegner@fractint.org
  5419. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5420.  
  5421.  
  5422. -------------------------------------------------------------------------------
  5423.  
  5424. From: O Bd <jazzrule@winning.com>
  5425. Subject: (fractint) Targa Output
  5426. Date: 24 Apr 2001 13:39:04 -0400 (EDT)
  5427.  
  5428. Hi! I've been trying to get a Targa output file but the file seems to be
  5429. created in the wrong format. Instead of an image I get one that's sort of
  5430. looking like a slinky!!!
  5431.  
  5432. Is there a way to fix this?
  5433.  
  5434. Or am I using the wrong version? Im using 19.2
  5435.  
  5436. Any help will be appreciated.
  5437.  
  5438. Thanks
  5439.  
  5440. O Bd.
  5441.  
  5442. The No.1 Utah Jazz fan in England
  5443.  
  5444.  
  5445. ______________________________________________
  5446. FREE Personalized Email at Mail.com
  5447. Sign up at http://www.mail.com/?sr=signup
  5448.  
  5449. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5450. Post Message:   fractint@lists.xmission.com
  5451. Get Commands:   majordomo@lists.xmission.com "help"
  5452. Administrator:  twegner@fractint.org
  5453. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5454.  
  5455.  
  5456. -------------------------------------------------------------------------------
  5457.  
  5458. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  5459. Subject: Re: (fractint) Targa Output
  5460. Date: 24 Apr 2001 14:16:26 -0500
  5461.  
  5462. O Bd wrote:
  5463. >
  5464. > Hi! I've been trying to get a Targa output 
  5465. > file but the file seems to be created in 
  5466. > the wrong format.  Instead of an image I get 
  5467. > one that's sort of looking like a slinky!!!
  5468. > Is there a way to fix this?
  5469.  
  5470. Are you trying to do 3-D transforms??  And are you doing any Overlays?? 
  5471. Have you set any of the Light Source Parameters??
  5472.  
  5473. >
  5474. > Or am I using the wrong version?  Im using 19.2
  5475.  
  5476. The most current version being developed is 20.1.07 and may be acquired
  5477. from the Development Team's web site:
  5478.  
  5479.      http://www.fractint.org/
  5480.  
  5481. But the latest released version of Fractint is 20.0 and is available
  5482. from the Spanky Fractal Database location:
  5483.  
  5484.      http://spanky.triumf.ca/www/fractint/fractint.html
  5485.  
  5486. > Any help will be appreciated.
  5487.  
  5488. What program are you using to open the Targa file that was created??
  5489.  
  5490.  
  5491. Sincerely,
  5492. P.N.L.
  5493. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  5494.  
  5495. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5496. Post Message:   fractint@lists.xmission.com
  5497. Get Commands:   majordomo@lists.xmission.com "help"
  5498. Administrator:  twegner@fractint.org
  5499. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5500.  
  5501.  
  5502. -------------------------------------------------------------------------------
  5503.  
  5504. From: "Jonathan Osuch" <osuchj@qwest.net>
  5505. Subject: Re: (fractint) Targa Output
  5506. Date: 24 Apr 2001 20:07:33 -0500
  5507.  
  5508. > But the latest released version of Fractint is 20.0 and is available
  5509. > from the Spanky Fractal Database location:
  5510.  
  5511. I believe you will find that the Targa output was broken in version 20.0.
  5512. It's been fixed in the developer's version.
  5513.  
  5514. Jonathan
  5515.  
  5516.  
  5517.  
  5518. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5519. Post Message:   fractint@lists.xmission.com
  5520. Get Commands:   majordomo@lists.xmission.com "help"
  5521. Administrator:  twegner@fractint.org
  5522. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5523.  
  5524.  
  5525. -------------------------------------------------------------------------------
  5526.  
  5527. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  5528. Subject: Re: (fractint) Targa Output
  5529. Date: 24 Apr 2001 23:11:51 -0500
  5530.  
  5531. Jonathan Osuch wrote:
  5532. >
  5533. > I believe you will find that the Targa 
  5534. > output was broken in version 20.0.
  5535. > It's been fixed in the developer's version.
  5536. >
  5537.  
  5538. Yes, I knew some Patches had been applied, just did not go through all
  5539. of the notes to see exactly what version/release/mod-level the repairs
  5540. were made at.
  5541.  
  5542. Hopefully "O Bd" will choose to upgrade from the 19.2 level that is
  5543. being used by him/her, and use the 20.1.07 level.  And maybe do some
  5544. further testing for you guys within the area of Targa files.
  5545.  
  5546. Sincerely,
  5547. P.N.L.
  5548. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  5549.  
  5550. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5551. Post Message:   fractint@lists.xmission.com
  5552. Get Commands:   majordomo@lists.xmission.com "help"
  5553. Administrator:  twegner@fractint.org
  5554. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5555.  
  5556.  
  5557. -------------------------------------------------------------------------------
  5558.  
  5559. From: "Andrew Coppin" <orphi69@hotmail.com>
  5560. Subject: Re: (fractint) Re: C-FOTD 18-04-01 (Fractured Fractal [6])
  5561. Date: 25 Apr 2001 11:51:43 -0000
  5562.  
  5563. >From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  5564. >Reply-To: fractint@lists.xmission.com
  5565. >To: fractint@lists.xmission.com
  5566. >Subject: Re: (fractint) Re: C-FOTD 18-04-01 (Fractured Fractal [6])
  5567. >Date: Thu, 19 Apr 2001 00:16:05 -0500
  5568. >
  5569. >Andrew Coppin wrote:
  5570. > >
  5571. > > Thankyou paul.
  5572. >
  5573. >Just thought credit should be mentioned where due.    :-)
  5574. >
  5575. > >
  5576. > > It seems only fair to mention that I had
  5577. > > help from others on this list thought...
  5578. > > (Wish I could remember whom, but I definitly
  5579. > > had help!)
  5580. >
  5581. >You first started discussing the "Branch Cuts" on Fri, 07 Apr 2000.  And
  5582. >some of the individuals involved with that topic on the List were as
  5583. >follows:
  5584. >
  5585. >     Barry N. Merenoff (Collin Merenoff)
  5586. >     Morgan L. Owens
  5587. >     Tim Wegner
  5588. >     Jim Muth
  5589. >     Kenneth Childress
  5590. >     Damien M. Jones
  5591. >
  5592. >This went on until Tue, 18 Apr 2000.  I am sure that the archives will
  5593. >show the details of who did what.
  5594.  
  5595. Just spend an hour trolling through the FractInt archives. Gee! I really 
  5596. must do this more often!!!
  5597.  
  5598. The archives show that Morgan provided his usuall deep insights, and Jim 
  5599. produced a couple of top-notch FotDs with the resulting formula, but the 
  5600. formula itself basically came from Mr. Merenoff (with a type-error 
  5601. correction form Kenneth).
  5602.  
  5603. Basically, I posted a formula that was partially broken, thus:
  5604. >From: "Andrew Coppin" <orphi69@hotmail.com>
  5605. >Subject: (fractint) Branch Cuts
  5606. >Date: 10 Apr 2000 10:22:48 GMT
  5607. >
  5608. >So log(Z) is a cork screw, and you have to take a 360 degree slice of >it. 
  5609. >Hmmm... This formula (I think) varies the slice taken, but only by >another 
  5610. >360 degrees. If k is below -3 then you get what the formula parser 
  5611. > >normally does. If you now raise k, you get a nice branch cut shift... 
  5612. >until you >reach +3, and thereafter there is no further change. Any ideas 
  5613. >how to >correct this?
  5614. >
  5615. >--BEGIN
  5616. >comment
  5617. >{
  5618. >  Andrew Orphi Coppin, 10 May 2000AD
  5619. >}
  5620. >
  5621. >BrotBC = { ; Z^2.5 + C
  5622. >           ; real(p1) = phase shift.
  5623. >
  5624. >  p = real(p1)
  5625. >  Z = C = Pixel:
  5626. >    Z = log(Z)
  5627. >    IF(imag(Z) > p) Z = Z + flip(2*PI) ENDIF
  5628. >    Z = exp(2.5*Z) + C
  5629. >  |Z| < 4
  5630. >}
  5631. >--END
  5632. Later that day, the following message appeared:
  5633. >From: Barry N Merenoff <110144.2274@compuserve.com>
  5634. >Subject: (fractint) Branch Cuts
  5635. >Date: 10 Apr 2000 08:31:09 -0400
  5636. >
  5637. >Andrew, try this:
  5638. >
  5639. >p=3Dreal(p1)+PI
  5640. >q=3D2*PI*floor(p/(2*PI))
  5641. >r=3Dreal(p1)-q
  5642. >Z=3DC=3DPixel:
  5643. >Z=3Dlog(Z)
  5644. >IF(imag(Z)>p) Z=3DZ+flip(2*PI) ENDIF
  5645. >Z=3Dexp(2.5*(Z+flip(q)))+C
  5646. >|Z|<4
  5647. >}
  5648. >
  5649. >Note: I don't know if Fractint has a floor function, but it should >have
  5650. >something equivalent to it.
  5651. >
  5652. >Sincerely,
  5653. >        Collin Merenoff
  5654. As said, the formula was corrected (the "IF(imag(Z)>p)" should actually be 
  5655. "IF(imag(z)>r)"). And then I posted the message Paul quoted, which is 
  5656. basically the same but with different variable names. (But still, Jim posted 
  5657. half a dozen FotDs with my name on 'em. And why not? I *thought* of it!)
  5658.  
  5659. Interestingly, the archive also shows that this is the thread that 
  5660. eventually lead to the addition of extra .FRM parameters in a developer's 
  5661. patch (can't remember which number tho).
  5662.  
  5663. Also during this period there was some cool descussion on why the Mandelbrot 
  5664. set pops up everywhere. And I asked if fractint's parser could have an arg() 
  5665. function added. (It never happened!) There was some talk from Tim about 
  5666. making movable branch-cuts an integral feature of fractint (which also never 
  5667. happened).
  5668.  
  5669. Thanks.
  5670. Andrew.
  5671.  
  5672. PS. Hey Morgan... What the hell _are_ "sheets in the Riemann surface"?
  5673.  
  5674. _________________________________________________________________________
  5675. Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
  5676.  
  5677.  
  5678. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5679. Post Message:   fractint@lists.xmission.com
  5680. Get Commands:   majordomo@lists.xmission.com "help"
  5681. Administrator:  twegner@fractint.org
  5682. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5683.  
  5684.  
  5685. -------------------------------------------------------------------------------
  5686.  
  5687. From: JimMuth@aol.com
  5688. Subject: (fractint) C-FOTD  25-04-01  (OOOF! [3])
  5689. Date: 25 Apr 2001 09:20:35 EDT
  5690.  
  5691.  
  5692. Classic FOTD -- April 25, 2001 (Rating 3)
  5693.  
  5694. Fractal visionaries and enthusiasts:
  5695.  
  5696. Yes, I'm late again today with the FOTD.  It's getting to be a 
  5697. habit.  My excuse is the same old one which needs no repetition.
  5698.  
  5699. Today's fractal image, which looks like a rotten melon with a 
  5700. face drawn on it, being squashed, fairly cries "OOOF!".  So this 
  5701. is what I named it.  Normally, I avoid images that resemble 
  5702. funny faces, but today's picture is so ridiculous that I had no 
  5703. choice but to declare it FOTD for April 25.  I displayed my 
  5704. disgust with comedy fractals by rating the image a lowly 3.
  5705.  
  5706. The formula behind the image is Z^2+C -- the Mandelbrot formula. 
  5707. The mouth of the squashed melon-head is actually a Mandel-midget 
  5708. on the tip of the longest northwest filament shooting out from 
  5709. the fifth bud along the negative tail of the M-set.  The midget 
  5710. is so distorted because it has been sliced in a different 
  5711. direction through the 4-dimensional Julibrot, which is the 
  5712. assemblage of all Julia sets and all perturbed Mandelbrot sets.
  5713.  
  5714. Though the Mandelbrot formula drew the image, the image is not 
  5715. part of any Mandelbrot set.  Nor is it part of any Julia set.  
  5716. It is kind of a hybrid, with both Mandelbrot and Julia 
  5717. characteristics, and a few entirely new characteristics, such as 
  5718. the stretching effect, thrown in for extra measure.
  5719.  
  5720. I seem to have forgotten the Julibrot and the fourth dimension 
  5721. since becoming involved with the M-Mix4 formula and its 
  5722. limitless variety of midgets.  But perhaps it's time to get back 
  5723. to basics as well as the unknown, and nothing is more unknown 
  5724. than the fourth dimension.
  5725.  
  5726. Since the FOTD is so,late, the parameter file is the fastest in 
  5727. many months, rendering in less than a minute on a 200mhz 
  5728. Pentium.  It will take longer than that to reach the GIF image, 
  5729. which is posted to:
  5730.  
  5731.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  5732.  
  5733. and to:
  5734.  
  5735.           <http://home.swbell.net/sdboyd56/fotd/>
  5736.  
  5737. The fractal weather was very warm again today.  The cats, 
  5738. comfort seekers that they are, took full advantage of the 86F 
  5739. (30C) temperature, by spending the entire afternoon lounging in 
  5740. the yard.
  5741.  
  5742. That's it for today.  It's time to rev up the fractal shoppe and 
  5743. get busy with other things.  Until next time, take care, and 
  5744. life is never so good that it can't get better.
  5745.  
  5746.  
  5747. Jim Muth
  5748. jamth@mindspring.com
  5749.  
  5750.  
  5751. START 20.0 PAR-FORMULA FILE================================
  5752.  
  5753. OOOF               { ; time=0:00:54.58--SF5 on a p200
  5754.   reset=2001 type=formula formulafile=multirot.frm
  5755.   formulaname=multirot-xz-yw passes=b
  5756.   center-mag=-0.00000000002107355/-0.000000000029447\
  5757.   31/8.638531e+009/14.687/-180/35.229
  5758.   params=45/45/-1.4041038040019/0.00422258114480\
  5759.   08/-1.4041038040019/0.0042225811448008 float=y
  5760.   maxiter=600 inside=255 logmap=147 periodicity=10
  5761.   colors=000Eg`JgbOgdSgfXgh`gjeglignfijckg`ldYnaVpYS\
  5762.   qVPsSMtPVrJbpD_rFXsGUtIRvJOwLMxMKpQIiTGaXFV_DNbBGf\
  5763.   98i81lYQN`UQbYTdaWgdZihakldmogelgZjgShgLfgEdg7bg0`\
  5764.   gFcMTf091V74X67Z5A`4Db3Gd2Jf1MgJaYDaP7aG1a7TF6UO9U\
  5765.   WBUdEUlGUtIQjTM`bIRmFIwNLqVNlbQfjSaqUXpSVpRTpPRpOP\
  5766.   pNOjLLeJI`HFWFCQD9LB6G93B7195Y9ak8Vj7Pj6Ji6DiCKcHQ\
  5767.   YNWTSaNXgIfbVoYgxUskdr_nrcgkfaeiW_lPUoJOrDIu7CkCQa\
  5768.   GcbLebQfcVhcZidckdhlemneqofiofaogUogMogFoaLmWQkRVj\
  5769.   L_hGdgI`cLY_NUWQQRSNNVJJXGFaJZfLrZLqRLpKLoMQpNVpO_\
  5770.   pPdpQipRnpSspWrkZqfbpaepYioTlnOpmJsmFklJckNXkQPjUH\
  5771.   iYAi`QfdddgsbjVac6`X5_S5_N5ZI4ZD4Y84Y3BVIHSXOPkUNz\
  5772.   ZRsbUlfXej_ZnbSteEzh1daqUysYwmauhesbhqYloTpmNtkIwj\
  5773.   DsbBpV9mO8iG6f84c13kPrmRlnSgpTaqUXsWStXMvYHwZCuVBt\
  5774.   RAsN9rJ8qF7pB6o85k58h2Ae0CaBPZM`WXlaThgPdmM`sIXxFU\
  5775.   ZPM9ZEAaFAcFBeGBgGCfEDeDEeBFdAGd8Hc7Ic6HZ7HV7GR76h\
  5776.   l4ilGcdRYYaSQlMJwHCgQL000
  5777.   }
  5778.  
  5779. frm:multirot-XZ-YW {; Jim Muth
  5780. ; 0,0=para, 90,0=obl, 0,90=elip, 90,90=rect
  5781. e=exp(flip(real(p1*.01745329251994))),
  5782. f=exp(flip(imag(p1*.01745329251994))),
  5783. z=f*real(pixel)+p2, c=e*imag(pixel)+p3:
  5784. z=sqr(z)+c,
  5785. |z| <= 36  }
  5786.  
  5787. END 20.0 PAR-FORMULA FILE==================================
  5788.  
  5789. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5790. Post Message:   fractint@lists.xmission.com
  5791. Get Commands:   majordomo@lists.xmission.com "help"
  5792. Administrator:  twegner@fractint.org
  5793. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5794.  
  5795.  
  5796. -------------------------------------------------------------------------------
  5797.  
  5798. From: JimMuth@aol.com
  5799. Subject: (fractint) C-FOTD  26-04-01  (Baubles [6])
  5800. Date: 26 Apr 2001 00:40:06 EDT
  5801.  
  5802.  
  5803. Classic FOTD -- April 26, 2001 (Rating 6)
  5804.  
  5805. Fractal visionaries and enthusiasts:
  5806.  
  5807. Today's fractal formula takes Z^(-11.5), adds 4 times as much 
  5808. Z^(-1.15), then adds the reciprocal of C.  Adding 1/C instead of 
  5809. the usual C turns a fractal inside-out.  The Mandelbrot set, 
  5810. instead of appearing as a lake in an infinite continent, appears 
  5811. as an island in an infinite lake.
  5812.  
  5813. But fractals created by negative powers of Z normally appear as 
  5814. islands in infinite lakes, so turning these fractals inside-out 
  5815. changes them into lakes surrounded by infinite continents.  
  5816. Combining two different negative powers of Z in an inside-out 
  5817. fractal and initializing Z to a critical value produces a 
  5818. fractal with quadratic midgets.  This is the type of fractal 
  5819. that is the parent of today's scene.
  5820.  
  5821. This parent fractal is a huge thing filled with circular 
  5822. features resembling zippers, with a size exceeding even the full 
  5823. outzoom capability of the Fractint program.  Today's midget lies 
  5824. in an area rich with these zipper-circles.
  5825.  
  5826. I named the image "Baubles".  The name came to mind after I 
  5827. spent 1/2 hour with the image on the screen, doing other tasks 
  5828. and thinking of nothing better.  I rated the image an above-
  5829. average 6.
  5830.  
  5831. The parameter file renders in under 6 minutes, which is slow 
  5832. enough to make a download of the GIF image file the better 
  5833. choice.  That download will ba available within the hour at:
  5834.  
  5835.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  5836.  
  5837. and at:
  5838.  
  5839.           <http://home.swbell.net/sdboyd56/fotd/>
  5840.  
  5841. The fractal weather today here at Fractal central was cloudy and 
  5842. much cooler than yesterday.  The temperature of 52F (11C) was 
  5843. just cool enough to keep the fractal cats confined to their 
  5844. windows, where they sit to watch the outside when they can't 
  5845. actually be out there.
  5846.  
  5847. It's now time to call it a night. . . It's a night! . . . Until 
  5848. next time, which, within an accuracy of 67 percent, will arrive 
  5849. in 24 hours, take care, and life as well as cats are better with 
  5850. fractals.
  5851.  
  5852.  
  5853. Jim Muth
  5854. jamth@mindspring.com
  5855.  
  5856.  
  5857. START 20.0 PAR-FORMULA FILE================================
  5858.  
  5859. Baubles            { ; time=0:05:53.56--SF5 on a P200
  5860.   reset=2001 type=formula formulafile=critical.frm
  5861.   formulaname=MandelbrotMix4 function=recip passes=1
  5862.   center-mag=456.568/-70.8747/1.353355/1/132.499
  5863.   params=1/-11.5/4/-1.15/0/300 float=y maxiter=1200
  5864.   inside=0 logmap=55 periodicity=0
  5865.   colors=00020K30N60S80V90YA0bD0eE0kG0oH0tN6vSCwYHyb\
  5866.   NzgUzmYzrbzwgzzkzymzzvzztzptyerwVrtKppAoo0kk0jj0gg\
  5867.   2ce8bcD``H__NYYUXV_XUeVSjUPpSNwQMzPJzNHzNGzPMzPQzP\
  5868.   XzP`zPgwPkvPprSkpVhoYem`bjc_heXghUekQboN`rK_tHYwEV\
  5869.   zCUz9Sz6Qz3Pz2Pv0Po0Pj0Nc0NY0NS0NN0QMPNQUMVXK_`Jcc\
  5870.   HhhGmkErpDwtCzyAzz9zz8zzEzzKzzSzzYvzcrzkmzrhzzczz_\
  5871.   zzXzz`zzewzjozogzt_zwSzzKzzDzz6zz0zz0zz0yz0pz0gz0_\
  5872.   z0Qz0Jz0Az03z00z00z00z00z00z00z00z20z50z80z90zH0zP\
  5873.   5wXAreGomMjvQgzY_weUpmMjvGczA_tGXkMUcSQXYNPcKHjJKg\
  5874.   GNcEQbCU_AXX9_V6`S5cQ2gN0jK0mJ0pG0rE0tD0vC0vA0w90w\
  5875.   80y60y50z30z20z00z00w02r06o0Aj0Ge0Kb0PY0VV0_Q2cM2j\
  5876.   J2oE2tA2z82z32z02zEHvUXchkNyz8zz0zz0zz0zz2zz5zz8zz\
  5877.   AwzDvzGrzJpzMmzPkzSUzbDzm0zy0zz8zcXzAwz0kz0bz0Sz0J\
  5878.   z0Hz8HzHGzUGzcDz`Az_8zY6zXAzUEzQHzPMzMQzJUzHYzEbzC\
  5879.   ezAjz8oz5rz3wz0zz0vz5rzAozGjzMgzSczXezUgzSgzPhzNhz\
  5880.   KjzJjzHkzEmzDmzAoz9oz6pz5
  5881.   }
  5882.  
  5883. frm:MandelbrotMix4 {; Jim Muth
  5884. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  5885. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  5886. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  5887. z=k*((a*(z^b))+(d*(z^f)))+c,
  5888. |z| < l
  5889. }
  5890.  
  5891. END 20.0 PAR-FORMULA FILE==================================
  5892.  
  5893. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5894. Post Message:   fractint@lists.xmission.com
  5895. Get Commands:   majordomo@lists.xmission.com "help"
  5896. Administrator:  twegner@fractint.org
  5897. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5898.  
  5899.  
  5900. -------------------------------------------------------------------------------
  5901.  
  5902. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  5903. Subject: (fractint) Web Based Archives
  5904. Date: 26 Apr 2001 14:31:24 -0500
  5905.  
  5906. Greetings,
  5907.  
  5908. This information is for those that do not know how to use the Usenet
  5909. Newsgroups or may have problems using them.  Since some of the other web
  5910. based Usenet Newsgroup Archives are either no longer available or not
  5911. functioning (such as NailNews), another one has become available:  ETIN
  5912. Technologies
  5913.  
  5914. Chronologically relevant searching of messages.  Browsing of text and
  5915. binary newsgroups.  Posting available.  Free, Public, Complete, and
  5916. Anonymous.
  5917.  
  5918. Text messages are archived and retained permanently.  Binaries are
  5919. retained 10 to 20 days.
  5920.  
  5921. Here are the direct URLs for fractal related NGs:
  5922.  
  5923. A.B.P.F.
  5924.     http://www.etin.com/?folder=alt%2Ebinaries%2Epictures%2Efractals
  5925. A.F.P.
  5926.     http://www.etin.com/?folder=alt%2Efractals%2Epictures
  5927. A.F.
  5928.     http://www.etin.com/?folder=alt%2Efractals
  5929. S.F.
  5930.     http://www.etin.com/?folder=sci%2Efractals
  5931. A.B.F-A.
  5932.     (this one is not available)
  5933.  
  5934.  
  5935. Sincerely,
  5936. P.N.L.
  5937. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  5938.  
  5939. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5940. Post Message:   fractint@lists.xmission.com
  5941. Get Commands:   majordomo@lists.xmission.com "help"
  5942. Administrator:  twegner@fractint.org
  5943. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5944.  
  5945.  
  5946. -------------------------------------------------------------------------------
  5947.  
  5948. From: "Rupert Millard" <rupertam@hotmail.com>
  5949. Subject: (fractint) Sinusoidal gradient maker
  5950. Date: 27 Apr 2001 07:40:42 -0000
  5951.  
  5952. Hello everybody!
  5953.  
  5954. It seems that Polynomial gradient maker was a bit boring for you colourful 
  5955. lot - So I've made Sinusoidal gradient maker.
  5956.  
  5957. This program is the same as polynomial gradient maker, except that it puts 
  5958. sine waves in the red, green and blue channels, instead of polynomials.
  5959.  
  5960. You can see the page and donwload the program at:
  5961. http://www.geocities.com/kangarupert/sinu_grad_maker.html
  5962.  
  5963. From,
  5964.  
  5965. Rupert
  5966. _________________________________________________________________________
  5967. Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
  5968.  
  5969.  
  5970. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5971. Post Message:   fractint@lists.xmission.com
  5972. Get Commands:   majordomo@lists.xmission.com "help"
  5973. Administrator:  twegner@fractint.org
  5974. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5975.  
  5976.  
  5977. -------------------------------------------------------------------------------
  5978.  
  5979. From: "Thierry B." <oulala@chez.com>
  5980. Subject: Re: (fractint) Sinusoidal gradient maker
  5981. Date: 27 Apr 2001 08:03:58 +0000
  5982.  
  5983. Rupert Millard wrote:
  5984. > This program is the same as polynomial gradient maker, except that it puts
  5985. > sine waves in the red, green and blue channels, instead of polynomials.
  5986. > You can see the page and donwload the program at:
  5987. > http://www.geocities.com/kangarupert/sinu_grad_maker.html
  5988.  
  5989.     Same thing, but in fortran with a web interface
  5990.     http://la.buvette.org/fractales/palette.html
  5991.  
  5992. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5993. Post Message:   fractint@lists.xmission.com
  5994. Get Commands:   majordomo@lists.xmission.com "help"
  5995. Administrator:  twegner@fractint.org
  5996. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5997.  
  5998.  
  5999. -------------------------------------------------------------------------------
  6000.  
  6001. From: Jim Muth <jamth@mindspring.com>
  6002. Subject: (fractint) C-FOTD  27-04-01  (Object Around Midget [5])
  6003. Date: 27 Apr 2001 08:29:52 -0400 (EDT)
  6004.  
  6005.  
  6006. Classic FOTD -- April 27, 2001 (Rating 5)
  6007.  
  6008. Fractal visionaries and enthusiasts:
  6009.  
  6010. As I pondered today's image, I was reminded of nothing in 
  6011. particular.  The decorations around the midget do resemble 
  6012. several computer animations I have seen.  And they sometimes 
  6013. impressed me as the tentacles of some fantastic monster lurking 
  6014. on the sea floor.  But all these impressions are so vague that I 
  6015. named the image with the very simple and non-descriptive name, 
  6016. "Object Around Midget".
  6017.  
  6018. The MandelbrotBC formula is responsible for the image, which is 
  6019. part of the infinite Z^(sqrt2)+C fractal.  This fractal is my 
  6020. most frequently explored with an exponent of Z between 1 and 2 
  6021. because in this fractal the midgets are easier to find than in 
  6022. most fractals lying in this exponent range.
  6023.  
  6024. Confining explorations to the fractal created by only one 
  6025. exponent between 1 and 2 is not limiting, since when drawn by 
  6026. the MandelbrotBC formula, the fractal is infinite in surface 
  6027. extent as well as depth and variety.
  6028.  
  6029. On my 200mhz Pentium the image takes almost 3/4 of an hour to 
  6030. render.  It will therefore be an hour or so before it is 
  6031. available on the Web at:
  6032.  
  6033.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  6034.  
  6035. and at:
  6036.  
  6037.           <http://home.swbell.net/sdboyd56/fotd/>
  6038.  
  6039. The fractal weather today (actually yesterday, April 26) was 
  6040. just about average for this location at this time of year, with 
  6041. warm sun and a temperature of 65F (18C).  These conditions had 
  6042. the fractal cats in the yard most of the afternoon, acting like 
  6043. kittens.  Such behavior is most undignified for cats of their 
  6044. venerable age of 9 years.
  6045.  
  6046. As for me, it's past 8:15am, and I've got a busy day before me.  
  6047. So until next time, take care, and enjoy the flowers of Spring 
  6048. of the leaves of Autumn.
  6049.  
  6050.  
  6051. Jim Muth
  6052. jamth@mindspring.com
  6053.  
  6054.  
  6055. START 20.0 PAR-FORMULA FILE================================
  6056.  
  6057. ObjectAroundMidget { ; time=0:43:53.22--SF5 on a P200
  6058.   reset=2001 type=formula formulafile=branchct.frm
  6059.   formulaname=MandelbrotBC passes=1 center-mag=-0.15\
  6060.   578257934389980/+1.535940899307265/4.223478e+008/1\
  6061.   /12.5 params=1.414213562373/0/0/0 float=y
  6062.   maxiter=6000 inside=0 logmap=-1150 periodicity=10
  6063.   colors=000SaZOfUHiRDnM8qJ2vE0yB0x80rZ0mU0hP0cM1`H4\
  6064.   YE8ZADd6Hi2Mp0Pt0Op0Ml0Ki0Jf0Ha0GZ0EW0DS0BP0MfOXvn\
  6065.   RkiK`dEP`AEX44S00O00K00J00H00G00E04D08B1DA2G82K74P\
  6066.   66U46X47`G8aR8ccAdnBfzBhzD`zDSqEKhEEZG7PG0GG07K0EO\
  6067.   4KRARUEXXKc`PicWpf`vdkzcvzazz`zzXzzWzzSzzRzzOzzMxz\
  6068.   KuxHqvGnsDkqBhnAflRWhhKdnAhu0ky0nx0ix0fx4ax7ZxBUxG\
  6069.   RxKMxOJxSExXBx`8vXDvUGvRKuPOuMSuJWsG`sEcsBhq8kq6pq\
  6070.   4sp1xp0zp0zp0zzK`zOZzRZzUXzXXz`WzcWxfUviUslUppSnsS\
  6071.   kvRhyRfzPczPazPazUZzSXzRWzPSzORzMPzMOzKKzJJyHHyGGy\
  6072.   GRlJ``MiOPsBSz0Wz0Zp6hWMpBcx0uz0qz0py0nx2mu4msAmnG\
  6073.   mkMmhRmdXmacmXhmUnmRumOymKcmnJmzMmzOmzPmzSmzUmzWmz\
  6074.   Zmz`mzamzdnzfqzhuzixz0zD0zE4zGBzHJzHRzJZzKfzMnzMqz\
  6075.   PuzSxzUzzXzzZzzazzcXz0az0dz0hz0kz0nz0qz0uz0xz0sz0n\
  6076.   z0iz0dz0az0Xz0Sz0Oz0Jz0Gz0Bz07z02z00z01zG1zX2zn2zz\
  6077.   1zv0zl0zc0zW0zM0zD0z40z00z06z2Bz6Hz8OzBUzEazHhzKnz\
  6078.   OuzRzzUzzX7z0Bz4hziczfZza
  6079.   }
  6080.  
  6081. frm:MandelbrotBC   { ; Inspired by Andrew Coppin
  6082.   e=p1
  6083.   p=real(p2)+PI
  6084.   q=2*PI*trunc(p/(2*PI))
  6085.   r=real(p2)-q
  6086.   Z=C=Pixel:
  6087.     Z=log(Z)
  6088.     IF(imag(Z)>r)
  6089.       Z=Z+flip(2*PI)
  6090.     ENDIF
  6091.     Z=exp(e*(Z+flip(q)))+C
  6092.   |Z|<100
  6093. }
  6094.  
  6095. END 20.0 PAR-FORMULA FILE==================================
  6096.  
  6097.  
  6098. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6099. Post Message:   fractint@lists.xmission.com
  6100. Get Commands:   majordomo@lists.xmission.com "help"
  6101. Administrator:  twegner@fractint.org
  6102. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6103.  
  6104.  
  6105. -------------------------------------------------------------------------------
  6106.  
  6107. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  6108. Subject: Re: (fractint) Re: C-FOTD 18-04-01 (Fractured Fractal [6])
  6109. Date: 28 Apr 2001 17:07:15 +1200
  6110.  
  6111. At 23:51 25/04/2001, Andrew Coppin wrote:
  6112.  
  6113. >PS. Hey Morgan... What the hell _are_ "sheets in the Riemann surface"?
  6114.  
  6115. One of the hassles involved with many functions is that they are many-
  6116. valued (and hence, strictly speaking, not functions at all). Even the
  6117. humble square root is guilty of this - z^(1/2) usually has two values.
  6118. And as for log(z), or arcsin(z)...
  6119.  
  6120. What would be nice is if there were some way of turning these many-
  6121. valued functions into single-valued functions. Bermhard Riemann came up
  6122. with a geometrical stunt that did just this by replacing the complex
  6123. plane with a suitable generalisation (mathematicians just loooove to
  6124. generalise things).
  6125.  
  6126. His idea was to separate each value of the function by placing it on a
  6127. separate "sheet", which on its own looks like an entire complex plane.
  6128. For example, if the values of z^(1/2) for a given z were a_z and -a_z,
  6129. then a_z would go on one sheet and -a_z would go on another. Then you
  6130. could take one sheet and say that the values on it are _the_ values of
  6131. the function. To drop down into real arithmetic for a second, this is
  6132. analogous to saying that _the_ values of the square root function are
  6133. the nonnegative ones.
  6134.  
  6135. A function may require more than one sheet. The log(z) function, as
  6136. immortalised in the MandelbrotBC formula, has an infinite number of
  6137. sheets, since log(z) usually produces an infinite number of values for a
  6138. given z (if w is one such value, then so are w+2pi, w+4pi, w+6pi...,
  6139. among others).
  6140.  
  6141. But of course there is more to it than just slapping down extra layers
  6142. on the complex plane like tracing paper. For a start, there are often
  6143. points where the sheets merge (such as the point z=0 for the function
  6144. z^(1/2)). Also significant is the question of where the function moves
  6145. from one sheet to another. After all, if this is supposed to be a nice
  6146. continuous function, you don't want to introduce a nasty discontinuous
  6147. artefact by suddenly jumping from one sheet to another.
  6148.  
  6149. So you want to stitch all these sheets together in some way into a
  6150. single continuous surface, and it is exactly this that Riemann
  6151. described.
  6152.  
  6153. Let's take the log function as an example, mainly because that way the
  6154. MandelbrotBC formula is available to play with. The log function goes
  6155. blecchh at z=0, so we'll stick with nonzero complex numbers. As I said,
  6156. if log(z)=w, then log(z)=w+2npi, for any integer n. So w and w+2pi,
  6157. w+4pi, w-2pi, w-4pi, w+158pi, ... are all on separate sheets (which we
  6158. can index by n, if we are so inclined). The surface is sort of helical.
  6159. We start on the ground floor (n=0), and we can walk around the origin
  6160. until we've made a complete circle, whereupon we find ourselves on the
  6161. first floor (n=1). Another complete circle and we're on the second floor
  6162. (n=2). Going the other way from the ground floor we find ourselves on
  6163. the first basement level (n=-1), then the second basement (n=-2), and so
  6164. on in that direction.
  6165.  
  6166. But where precisely do we change floors? What the Riemann surface shows
  6167. is that such a question is more a matter of convention than anything to
  6168. do with the property of the log() function itself. We could draw a line
  6169. out along the positive real axis (on each sheet) and say "Here is where
  6170. we change sheets", but we could just as easily draw it along the negative
  6171. real axis, or either imaginary axis or anything in between. Wherever you
  6172. place it, you can extract a sheet out of the surface that covers the
  6173. entire complex plane (except of course for the origin) by cutting along
  6174. your chosen axis on any sheet and an adjacent sheet.
  6175.  
  6176. It should be pretty obvious that these lines I've been talking about are
  6177. the branch cuts. Conventionally, the log() function is cut along the
  6178. negative real axis. So is the square root function, for that matter,
  6179. while the arctangent function is cut along the negative imaginary axis
  6180. starting at 0-i and extending downwards towards -infinity.
  6181.  
  6182. To provide a bit of a summary, I'll describe the Riemann surface of the
  6183. z^(1/2) function. Since this function is at most two-valued (the only
  6184. exception being of course z=0, which has one value), the Riemann surface
  6185. is made by stitching two sheets together. Laying them atop each other,
  6186. we see that they have to actually meet at z=0 (because they have the
  6187. same value there). Now, what do the two values of z^(1/2) have in
  6188. common? They're negations of each other, of course, which on the complex
  6189. plane is equivalent to rotation about the origin of 180 degrees (or
  6190. more appropriately, pi radians). So if we were to start at one value and
  6191. walk around the origin and arrive back at our starting point, we'd
  6192. find ourselves on the other sheet. Another walk around and we really
  6193. will be back where we started. We can manage this by cutting the sheets
  6194. as follows. Starting at the origin, we cut a slit out to infinity
  6195. (conventionally as I mentioned above), join the lower edge of the lower
  6196. sheet to the upper edge of the upper sheet, and the upper edge of the
  6197. lower sheet to the lower edge of the upper sheet. Don't worry if this
  6198. violates your three-dimensional imagery - it's not a stunt that can be
  6199. pulled off in 3D without the optical illusion of the two sheets
  6200. apparently interpenetrating. And there's the surface. The (illusory)
  6201. crossover line along the axis can be waved and wiggled about all over
  6202. the complex plane - as long as one end remains rooted at the origin -
  6203. and every such wave and wiggle can be used to define a branch cut for
  6204. separating the surface back into sheets again.
  6205.  
  6206. Its precisely the positioning of the branch cut for the log() function
  6207. that is explored by the MandelbrotBC formula. If you build an animation
  6208. where you steadily increase the branch cut parameter, you can almost see
  6209. the spiral staircase effect as you climb higher and higher.
  6210.  
  6211. See also:http://library.wolfram.com/examples/riemannsurface/
  6212.  
  6213. Morgan L. Owens
  6214. "I _had_ to ask..."
  6215.  
  6216.  
  6217. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6218. Post Message:   fractint@lists.xmission.com
  6219. Get Commands:   majordomo@lists.xmission.com "help"
  6220. Administrator:  twegner@fractint.org
  6221. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6222.  
  6223.  
  6224. -------------------------------------------------------------------------------
  6225.  
  6226. From: Jim Muth <jamth@mindspring.com>
  6227. Subject: (fractint) C-FOTD  28-04-01  (Semi-Chaos [4])
  6228. Date: 28 Apr 2001 08:39:43 -0400 (EDT)
  6229.  
  6230.  
  6231. Classic FOTD -- April 28, 2001 (Rating 4)
  6232.  
  6233. Fractal visionaries and enthusiasts:
  6234.  
  6235. Today's image is of a type that I rather enjoy exploring -- 
  6236. chaotic, yet filled with just enough patches of order and 
  6237. theme-sections to make it interesting.  I named the image 
  6238. "Semi-Chaos" mostly as a description.
  6239.  
  6240. The midget in today's image is of the order 1.618..., and, for a 
  6241. change, is not at the dead center of the frame.  Actually, the 
  6242. midget is an added attraction, the main interest lying in the 
  6243. fragmentary elements scattered throughout the scene.
  6244.  
  6245. Since I find only minor artistic merit in the image, and only a 
  6246. modicum of math interest, I could rate it no higher than a 4.  
  6247. But it's still worth a look, if only to see what a Z^1.618+C 
  6248. Mandeloid midget looks like.
  6249.  
  6250. The MandelbrotBC formula, which is rather a committee project, 
  6251. once again did the work of rendering the image.  The render was 
  6252. completed in 13-1/2 minutes on a 200mhz Pentium.
  6253.  
  6254. The GIF image, already rendered, will soon be available on the 
  6255. Web at:
  6256.  
  6257.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  6258.  
  6259. and at:
  6260.  
  6261.           <http://home.swbell.net/sdboyd56/fotd/>
  6262.  
  6263. The all-important fractal weather was quite pleasant today.  The 
  6264. cats approved of the warm sunshine and temperature of 77F (25C), 
  6265. and showed their approval by sleeping on the porch most of the 
  6266. afternoon.
  6267.  
  6268. While searching this evening for today's fractal, my mind 
  6269. drifted into heavy philosophical speculation, and I pondered 
  6270. about gravity and dark matter.  The problem is that the outer 
  6271. parts of the galaxies are rotating too fast to be caused by the 
  6272. gravity created by the visible matter of the galaxies.  To 
  6273. account for this discrepancy, astronomers have hypothesized that 
  6274. the galaxies are filled with large amounts of undetectable 
  6275. material they have named dark matter, and this unseen material 
  6276. is causing the excess gravitational acceleration.  But this 
  6277. explanation is not satisfactory, since if the matter cannot be 
  6278. detected, it will be most difficult if not impossible to confirm 
  6279. its existence.
  6280.  
  6281. There may be another possible way of accounting for the excess 
  6282. rotational velocity, and this is to assume that, like so many 
  6283. other natural phenomena, the Newtonian law of gravity is valid 
  6284. only within a limited range, which includes our scale of 
  6285. experience in everyday life, as well as the solar system.  But 
  6286. perhaps, beyond this scale, gravity is quantized, and there is a 
  6287. minimum possible gravitational acceleration.
  6288.  
  6289. If this is the case, then the outer parts of the galaxies would 
  6290. be subject to this minimum acceleration, which, being greater 
  6291. than the Newtonian laws of gravity would produce, would cause 
  6292. the excess velocities observed in the outer parts of the 
  6293. galaxies.  I'll not speculate on how this might affect the 
  6294. ultimate fate of the universe.  
  6295.  
  6296. Since this alternate explanation is so obvious, it must have 
  6297. already been thought of by many astronomers, and probably 
  6298. discarded because it contains a fatal flaw.  But it did supply 
  6299. me an hour or so of diversion while working on a dull routine 
  6300. job.  Perhaps I'll continue this line of speculation on the 
  6301. philofractal list in the next FOTD.
  6302.  
  6303. I now see that it's post time, so until tomorrow, take care, and 
  6304. could the big bang turn into a big bust?
  6305.  
  6306.  
  6307. Jim Muth
  6308. jamth@mindspring.com
  6309.  
  6310.  
  6311. START 20.0 PAR-FORMULA FILE================================
  6312.  
  6313. Semi-Chaos         { ; time=0:13:37.34--SF5 on a P200
  6314.   reset=2001 type=formula formulafile=semikaos.par
  6315.   formulaname=MandelbrotBC passes=1
  6316.   center-mag=-0.501937/-0.59952/582.5136/1/49.999
  6317.   params=1.618034/0/122/0 float=y maxiter=30000
  6318.   inside=0 logmap=145 periodicity=10
  6319.   colors=00050U4DU2DU0FU0FU00U05U0AU0Fc5KmCPpKVnR_kY\
  6320.   didiekndss`zy_zzWzzVzzSzzPzzNzzMzwKzsIzpHzlFzgCwdA\
  6321.   u`9qY7pS5lP4kM2gH0eD0bA0`70Y20W00S00P00R00R00R00R0\
  6322.   0R00R00R00R00R00R00R00R00R00R00R00S00S00S00S00S00S\
  6323.   00S00S00S00S00S20S20S20S22S42S42V44V44V44V55V55V55\
  6324.   V57V77V77V79V79V99V9AV9AV9AW44V57V79V9AV9CSADSCFSD\
  6325.   HSDISFKRHNRHPRIRRKSRMVPMWPNYPP_PR`PRbNSeNVgNYiN`kN\
  6326.   dlMgnMipMkqMls_qseuu`quYnuWguN`wP`wP_wP_wR_wRYyRYy\
  6327.   SYySWySWyVWzVVzVVzWVzWSzWSzYSzYRzYRz_Rz_Pz_Pz`Pz`P\
  6328.   z`NzbNzbNzbMzdMzdMzdKzeKzeKzeIzgIzgIzgHziHziHziFzk\
  6329.   FzkFzkDzlDzlDzlCznCznCznAzpAzpAzs7zq9zqAzsCzsDzsFz\
  6330.   sHzuIyuKuuMqwNpwPlwRiySeyVbyW`zYYz_Vz`Rz_Kz`MzbNzb\
  6331.   PzdRzeSzeVzgVziWziYzk_zk`zlbzndzndzpezqgzqizskzslz\
  6332.   unzwnzwpzyqzzszzuzzwzzwzzszzpzzlzzkzzizzgzzgzzgzzg\
  6333.   zzgzzgzzgzzgzzgzzgzzgzzgzzgzzgzzgzzgzzgzzgzzgzzgzz\
  6334.   gzzgzzgzzgzzgzzgzzgzzgzzg
  6335.   }
  6336.  
  6337. frm:MandelbrotBC   { ; Formula by Andrew Coppin
  6338.   e=p1
  6339.   p=real(p2)+PI
  6340.   q=2*PI*trunc(p/(2*PI))
  6341.   r=real(p2)-q
  6342.   Z=C=Pixel:
  6343.     Z=log(Z)
  6344.     IF(imag(Z)>r)
  6345.       Z=Z+flip(2*PI)
  6346.     ENDIF
  6347.     Z=exp(e*(Z+flip(q)))+C
  6348.   |Z|<100
  6349. }
  6350.  
  6351. END 20.0 PAR-FORMULA FILE==================================
  6352.  
  6353.  
  6354. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6355. Post Message:   fractint@lists.xmission.com
  6356. Get Commands:   majordomo@lists.xmission.com "help"
  6357. Administrator:  twegner@fractint.org
  6358. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6359.  
  6360.  
  6361. -------------------------------------------------------------------------------
  6362.  
  6363. From: Jim Muth <jamth@mindspring.com>
  6364. Subject: (fractint) Re: C-FOTD 18-04-01
  6365. Date: 28 Apr 2001 08:45:26 -0400 (EDT)
  6366.  
  6367. At 05:07 PM 4/28/01 +1200, Morgan Owens wrote:
  6368. >At 23:51 25/04/2001, Andrew Coppin wrote:
  6369. >
  6370. >>PS. Hey Morgan... What the hell _are_ "sheets in the Riemann surface"?
  6371.  
  6372. <long reply from Morgan explaining branch cuts snipped>
  6373.  
  6374. Great explanation Morgan!  This is the first time I've actually 
  6375. understood exactly what the branch-cut discontinuities are.
  6376.  
  6377. Jim M.
  6378.  
  6379.  
  6380. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6381. Post Message:   fractint@lists.xmission.com
  6382. Get Commands:   majordomo@lists.xmission.com "help"
  6383. Administrator:  twegner@fractint.org
  6384. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6385.  
  6386.  
  6387. -------------------------------------------------------------------------------
  6388.  
  6389. From: DeBow Freed <bmc1@airmail.net>
  6390. Subject: Re: (fractint) Re: C-FOTD 18-04-01 (Fractured Fractal [6])
  6391. Date: 28 Apr 2001 08:17:02 -0500
  6392.  
  6393. Cheers to Morgan from the peanut gallery, too.
  6394.  
  6395. "Morgan L. Owens" wrote:
  6396.  
  6397. > At 23:51 25/04/2001, Andrew Coppin wrote:
  6398. >
  6399. > >PS. Hey Morgan... What the hell _are_ "sheets in the Riemann surface"?
  6400. >
  6401. > One of the hassles involved with many functions is that they are many-
  6402. > valued (and hence, strictly speaking, not functions at all). Even the
  6403. > humble square root is guilty of this - z^(1/2) usually has two values.
  6404. > And as for log(z), or arcsin(z)...
  6405. >
  6406. > What would be nice is if there were some way of turning these many-
  6407. > valued functions into single-valued functions. Bermhard Riemann came up
  6408. > with a geometrical stunt that did just this by replacing the complex
  6409. > plane with a suitable generalisation (mathematicians just loooove to
  6410. > generalise things).
  6411. >
  6412. > His idea was to separate each value of the function by placing it on a
  6413. > separate "sheet", which on its own looks like an entire complex plane.
  6414. > For example, if the values of z^(1/2) for a given z were a_z and -a_z,
  6415. > then a_z would go on one sheet and -a_z would go on another. Then you
  6416. > could take one sheet and say that the values on it are _the_ values of
  6417. > the function. To drop down into real arithmetic for a second, this is
  6418. > analogous to saying that _the_ values of the square root function are
  6419. > the nonnegative ones.
  6420. >
  6421. > A function may require more than one sheet. The log(z) function, as
  6422. > immortalised in the MandelbrotBC formula, has an infinite number of
  6423. > sheets, since log(z) usually produces an infinite number of values for a
  6424. > given z (if w is one such value, then so are w+2pi, w+4pi, w+6pi...,
  6425. > among others).
  6426. >
  6427. > But of course there is more to it than just slapping down extra layers
  6428. > on the complex plane like tracing paper. For a start, there are often
  6429. > points where the sheets merge (such as the point z=0 for the function
  6430. > z^(1/2)). Also significant is the question of where the function moves
  6431. > from one sheet to another. After all, if this is supposed to be a nice
  6432. > continuous function, you don't want to introduce a nasty discontinuous
  6433. > artefact by suddenly jumping from one sheet to another.
  6434. >
  6435. > So you want to stitch all these sheets together in some way into a
  6436. > single continuous surface, and it is exactly this that Riemann
  6437. > described.
  6438. >
  6439. > Let's take the log function as an example, mainly because that way the
  6440. > MandelbrotBC formula is available to play with. The log function goes
  6441. > blecchh at z=0, so we'll stick with nonzero complex numbers. As I said,
  6442. > if log(z)=w, then log(z)=w+2npi, for any integer n. So w and w+2pi,
  6443. > w+4pi, w-2pi, w-4pi, w+158pi, ... are all on separate sheets (which we
  6444. > can index by n, if we are so inclined). The surface is sort of helical.
  6445. > We start on the ground floor (n=0), and we can walk around the origin
  6446. > until we've made a complete circle, whereupon we find ourselves on the
  6447. > first floor (n=1). Another complete circle and we're on the second floor
  6448. > (n=2). Going the other way from the ground floor we find ourselves on
  6449. > the first basement level (n=-1), then the second basement (n=-2), and so
  6450. > on in that direction.
  6451. >
  6452. > But where precisely do we change floors? What the Riemann surface shows
  6453. > is that such a question is more a matter of convention than anything to
  6454. > do with the property of the log() function itself. We could draw a line
  6455. > out along the positive real axis (on each sheet) and say "Here is where
  6456. > we change sheets", but we could just as easily draw it along the negative
  6457. > real axis, or either imaginary axis or anything in between. Wherever you
  6458. > place it, you can extract a sheet out of the surface that covers the
  6459. > entire complex plane (except of course for the origin) by cutting along
  6460. > your chosen axis on any sheet and an adjacent sheet.
  6461. >
  6462. > It should be pretty obvious that these lines I've been talking about are
  6463. > the branch cuts. Conventionally, the log() function is cut along the
  6464. > negative real axis. So is the square root function, for that matter,
  6465. > while the arctangent function is cut along the negative imaginary axis
  6466. > starting at 0-i and extending downwards towards -infinity.
  6467. >
  6468. > To provide a bit of a summary, I'll describe the Riemann surface of the
  6469. > z^(1/2) function. Since this function is at most two-valued (the only
  6470. > exception being of course z=0, which has one value), the Riemann surface
  6471. > is made by stitching two sheets together. Laying them atop each other,
  6472. > we see that they have to actually meet at z=0 (because they have the
  6473. > same value there). Now, what do the two values of z^(1/2) have in
  6474. > common? They're negations of each other, of course, which on the complex
  6475. > plane is equivalent to rotation about the origin of 180 degrees (or
  6476. > more appropriately, pi radians). So if we were to start at one value and
  6477. > walk around the origin and arrive back at our starting point, we'd
  6478. > find ourselves on the other sheet. Another walk around and we really
  6479. > will be back where we started. We can manage this by cutting the sheets
  6480. > as follows. Starting at the origin, we cut a slit out to infinity
  6481. > (conventionally as I mentioned above), join the lower edge of the lower
  6482. > sheet to the upper edge of the upper sheet, and the upper edge of the
  6483. > lower sheet to the lower edge of the upper sheet. Don't worry if this
  6484. > violates your three-dimensional imagery - it's not a stunt that can be
  6485. > pulled off in 3D without the optical illusion of the two sheets
  6486. > apparently interpenetrating. And there's the surface. The (illusory)
  6487. > crossover line along the axis can be waved and wiggled about all over
  6488. > the complex plane - as long as one end remains rooted at the origin -
  6489. > and every such wave and wiggle can be used to define a branch cut for
  6490. > separating the surface back into sheets again.
  6491. >
  6492. > Its precisely the positioning of the branch cut for the log() function
  6493. > that is explored by the MandelbrotBC formula. If you build an animation
  6494. > where you steadily increase the branch cut parameter, you can almost see
  6495. > the spiral staircase effect as you climb higher and higher.
  6496. >
  6497. > See also:http://library.wolfram.com/examples/riemannsurface/
  6498. >
  6499. > Morgan L. Owens
  6500. > "I _had_ to ask..."
  6501. >
  6502. > --------------------------------------------------------------
  6503. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  6504. > Post Message:   fractint@lists.xmission.com
  6505. > Get Commands:   majordomo@lists.xmission.com "help"
  6506. > Administrator:  twegner@fractint.org
  6507. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6508.  
  6509.  
  6510. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6511. Post Message:   fractint@lists.xmission.com
  6512. Get Commands:   majordomo@lists.xmission.com "help"
  6513. Administrator:  twegner@fractint.org
  6514. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6515.  
  6516.  
  6517. -------------------------------------------------------------------------------
  6518.  
  6519. From: Jim Muth <jamth@mindspring.com>
  6520. Subject: (fractint) C-FOTD  29-04-01  (Veil-Nebula [6])
  6521. Date: 28 Apr 2001 21:32:04 -0400 (EDT)
  6522.  
  6523.  
  6524. Classic FOTD -- April 29, 2001 (Rating 6)
  6525.  
  6526. Fractal visionaries and enthusiasts:
  6527.  
  6528. In the constellation of Cygnus, which is directly overhead in 
  6529. the summer months at a latitude of 39N, there is a delicate 
  6530. nebula, the remnants of a supernova explosion that took place 
  6531. some 25,000 years ago.  It is called the Veil nebula.  
  6532.  
  6533. The delicate traceries surrounding today's midget remind me so 
  6534. much of that celestial sight that I named the image "Veil 
  6535. Nebula".  After naming it, I gave it a rating of 6, since it's 
  6536. not at all a bad picture, though the somewhat excessively 
  6537. intense colors keep it from a higher rating.
  6538.  
  6539. The image once again takes advantage of the MandelbrotBC 
  6540. formula, this time applied to the Z^2.003+C Mandeloid.  This is 
  6541. the fractal with that most curious rectangular object in the 
  6542. Julia set of the East Valley area of the prominent midget on the 
  6543. infinitely-divided negative stem.  I found today's scene when I 
  6544. went looking for that object in the JuliaBC formula, and failing 
  6545. to find it, turned instead to the MandelbrotBC formula to have 
  6546. some fun with the Mandel aspect.
  6547.  
  6548. Using Fractint's evolver feature, I located the section with the 
  6549. most interesting branch cuts and started exploring.  Within 10 
  6550. minutes I had found a whole nest of midgets just past the midget 
  6551. on the stem, a stem which in this case points in the positive 
  6552. direction.  Today's midget is a minor member of that nest.
  6553.  
  6554. With a render time of just over 2 minutes, the parameter file is 
  6555. probably the best way to view the scene.  But for those who 
  6556. enjoy travel, the file of the GIF image will soon be available 
  6557. on the WWW at:
  6558.  
  6559.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  6560.  
  6561. and at:
  6562.  
  6563.           <http://home.swbell.net/sdboyd56/fotd/>
  6564.  
  6565. The weather today, fractal weather that is, was near perfect.  
  6566. Only a slightly chilly temperature of 65F (18C) kept it from 
  6567. being absolutely perfect.  The fractal cats helped me enjoy the 
  6568. day by watching me trim the grass, keeping safely out of the way 
  6569. whenever the mower drew near.
  6570.  
  6571. Due to too much enjoyment, I had little time for idle 
  6572. philosophical pondering.  I ponder best while working on dull 
  6573. routine jobs or while waiting for fractals to generate.  I 
  6574. ponder very poorly while trimming lush wet grass with a lawn 
  6575. mower with a blade in need of sharpening.
  6576.  
  6577. But the next FOTD is only 27 hours away, 39 hours if I don't 
  6578. post it until Monday morning.  That is ample time in which to 
  6579. ponder.  To see whether or not I actually ponder, check then.
  6580.  
  6581. Until then, so long for now!
  6582.  
  6583.  
  6584. Jim Muth
  6585. jamth@mindspring.com
  6586.  
  6587.  
  6588. START 20.0 PAR-FORMULA FILE================================
  6589.  
  6590. Veil_Nebula        { ; time=0:02:12.54--SF5 on a P200
  6591.   reset=2001 type=formula formulafile=branchct.frm
  6592.   formulaname=MandelbrotBC passes=1 float=y
  6593.   center-mag=1.78204/0.00403291/4113.286/1/-99.999
  6594.   params=2.003/0/1040.877965636158/0 maxiter=1500
  6595.   inside=0 logmap=33 periodicity=10
  6596.   colors=000J0EL0EN0HP0KR0NU0QW0TY0W_0Zb0ad0df0gf0jh\
  6597.   0mh1pk5sk8unCwnHznJzpNzpRzsWzs_zudzuhzwnzwszwuzupz\
  6598.   skzphzndzkbwhYsfWndRhbPd_L_YJWYFPWCLU8HR7CP38N15L0\
  6599.   1J00H00F00C00C00A00A00A10A70AC0AJ3AP5AW8AbCAhHApJA\
  6600.   wNAzRAzUNzdYznhzzuzzzzzzwzzwzzuzzuzzuzzszzswzsuwps\
  6601.   wpnwpkunhunfunbsk_skYskWphUphPphNnfLnfJnfHhdAfb7db\
  6602.   3b_0__0WY0UY0RW0PW0NU0LU0PP0RL0UJ0WF0YC0_80b70d30f\
  6603.   10h00k00p00s00u00w00z00z00z00z00z00z00z00z00z00z00\
  6604.   z00z00z00w00u30s73sC8pHCnNHkRNhYRfYWdYbbYf_Yk_YpdY\
  6605.   hfYdhYYkYUnYNpYJsYCuY8wY3zY0zY0zY0zY0zY0zY0zY0zY0z\
  6606.   Y0zY0kY0WY0FY01Y00Y00Y00Y05Y0AY0HY0WYCkNRzCfz3wz0z\
  6607.   z0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0\
  6608.   zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz\
  6609.   0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0z\
  6610.   z0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0zz0\
  6611.   zz0zz0zz0zz0zz0zz0zz0zz0z
  6612.   }
  6613.  
  6614. frm:MandelbrotBC   { ; Formula by Andrew Coppin etal
  6615.   e=p1
  6616.   p=real(p2)+PI
  6617.   q=2*PI*trunc(p/(2*PI))
  6618.   r=real(p2)-q
  6619.   Z=C=Pixel:
  6620.     Z=log(Z)
  6621.     IF(imag(Z)>r)
  6622.       Z=Z+flip(2*PI)
  6623.     ENDIF
  6624.     Z=exp(e*(Z+flip(q)))+C
  6625.   |Z|<100
  6626. }
  6627.  
  6628. END 20.0 PAR-FORMULA FILE==================================
  6629.  
  6630.  
  6631. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6632. Post Message:   fractint@lists.xmission.com
  6633. Get Commands:   majordomo@lists.xmission.com "help"
  6634. Administrator:  twegner@fractint.org
  6635. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6636.  
  6637.  
  6638. -------------------------------------------------------------------------------
  6639.  
  6640. From: Guy Marson <guy.marson@mnhn.lu>
  6641. Subject: (fractint) evolver bug?
  6642. Date: 29 Apr 2001 19:40:55 +0200
  6643.  
  6644. Hi Fractinters,
  6645.  
  6646. in an .frm working with 4 functions (fn1-fn4) I need to play with fn1-fn3
  6647. but not with fn4. Fn4 is set to 'sinh' and has to stay so. Starting the
  6648. Evolver with the 'fn4=no' option (but set to 'sinh' in the Z-screen) all
  6649. the pictures are generated with 'fn4=sin' except the first one.. 
  6650.  
  6651. One more observation: I think that the first disabled function (in the
  6652. evolver) is always set to sin and not to the wanted function. E.g.:
  6653. fn1=random fn2=no fn3=no fn4=random then fn2 is set to 'sin' by the Evolver..
  6654.  
  6655. Is it a feature or a bug?
  6656.  
  6657.  
  6658. cheers,
  6659.  
  6660.  
  6661. Guy
  6662.  
  6663.  
  6664.  
  6665. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6666. Post Message:   fractint@lists.xmission.com
  6667. Get Commands:   majordomo@lists.xmission.com "help"
  6668. Administrator:  twegner@fractint.org
  6669. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6670.  
  6671.  
  6672. -------------------------------------------------------------------------------
  6673.  
  6674. From: "Jonathan Osuch" <osuchj@qwest.net>
  6675. Subject: Re: (fractint) evolver bug?
  6676. Date: 29 Apr 2001 17:01:58 -0500
  6677.  
  6678. Guy,
  6679.  
  6680. > Is it a feature or a bug?
  6681.  
  6682. I'll have a look after I've finished uploading the various files for
  6683. 20.1.08.
  6684.  
  6685. Jonathan
  6686.  
  6687.  
  6688.  
  6689. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6690. Post Message:   fractint@lists.xmission.com
  6691. Get Commands:   majordomo@lists.xmission.com "help"
  6692. Administrator:  twegner@fractint.org
  6693. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6694.  
  6695.  
  6696. -------------------------------------------------------------------------------
  6697.  
  6698. From: "Chris Curnow" <curnow@mail.telepac.pt>
  6699. Subject: (fractint) Acknowledgments due?
  6700. Date: 29 Apr 2001 23:54:55 +0100
  6701.  
  6702. This is a multi-part message in MIME format.
  6703.  
  6704. ------=_NextPart_000_0019_01C0D107.CA2B8580
  6705. Content-Type: text/plain;
  6706.     charset="iso-8859-1"
  6707. Content-Transfer-Encoding: quoted-printable
  6708.  
  6709. I have been interested in the various discussions regarding the =
  6710. proprietary rights to fractal images.  Poor old, (young), Zorba the Hutt =
  6711. who spent hours generating high resolution versions of fractals to =
  6712. delight others with slower machines, is then shamed into deleting them =
  6713. because they are the 'property' of the esteemed Sylvie Gallet, (may her =
  6714. .map files continue to delight us all).  On the other hand Jim Muth, =
  6715. absolutely correctly, goes to some pains to ensure that the MandelbrotBC =
  6716. formula is marked as 'belonging' to Andrew Coppin et al.
  6717.  
  6718. Surely fractal images, in the raw so to speak, are 'found' objects.  =
  6719. Acknowledgment is due to the creator of the formula; be it Mandelbrot =
  6720. himself.  The colouring scheme, however, is an aesthetic operation with =
  6721. two functions.  Firstly it is needed to display some features of the =
  6722. 'raw image' which may not be obvious, and secondly it serves to make the =
  6723. object a pleasing picture, (a piece of artwork).  So we all generate or =
  6724. download Jim's images every day looking for an aesthetic experience, the =
  6725. maths is fun but the image is king.  I have tried to better Jim's colour =
  6726. scheme usually with abysmal results, so Jim you're an artist (even if =
  6727. your Mum doesn't think so! 'C-FOTD 20-4-01')  On the other hand I've =
  6728. very often found a 'more interesting' area in one of Jim's FOTDs.  (That =
  6729. is, more interesting to me) - not something new that I have 'created'.
  6730.  
  6731. As for the 'new' sinusoidal map generation utility posted by Rupert =
  6732. Millard on 26th April.  A note of acknowledgment that he received the =
  6733. source code for the basic algorithm from me on 4th April would have been =
  6734. courteous, here I *do* have a proprietary interest :-)   I'm working on =
  6735. using the Bezier function to define the three R, G, & B curves but the =
  6736. maths is a bit steep so this utility program may be some time coming.  =
  6737. Any VB6 programmers interested in joining in the endeavour can contact =
  6738. me direct and I'll send the source code, (and problem list!), so far.
  6739.  
  6740. Regards,
  6741. Chris Curnow
  6742. curnow@mail.telepac.pt
  6743.  
  6744.  
  6745. ------=_NextPart_000_0019_01C0D107.CA2B8580
  6746. Content-Type: text/html;
  6747.     charset="iso-8859-1"
  6748. Content-Transfer-Encoding: quoted-printable
  6749.  
  6750. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  6751. <HTML><HEAD>
  6752. <META http-equiv=3DContent-Type content=3D"text/html; =
  6753. charset=3Diso-8859-1">
  6754. <META content=3D"MSHTML 5.50.4611.1300" name=3DGENERATOR>
  6755. <STYLE></STYLE>
  6756. </HEAD>
  6757. <BODY bgColor=3D#ffffff>
  6758. <DIV><FONT face=3D"Comic Sans MS" size=3D2>I have been interested in=20
  6759. the various discussions regarding the proprietary rights to fractal =
  6760.  
  6761. images.  Poor old, (young), Zorba the Hutt who spent hours =
  6762. generating high=20
  6763. resolution versions of fractals to delight others with slower machines, =
  6764. is then=20
  6765. shamed into deleting them because they are the 'property' of the =
  6766. esteemed Sylvie=20
  6767. Gallet, (may her .map files continue to delight us all).  On the =
  6768. other hand=20
  6769. Jim Muth, absolutely correctly, goes to some pains to ensure that the=20
  6770. MandelbrotBC formula is marked as 'belonging' to Andrew Coppin et=20
  6771. al.</FONT></DIV>
  6772. <DIV><FONT face=3D"Comic Sans MS" size=3D2></FONT> </DIV>
  6773. <DIV><FONT face=3D"Comic Sans MS" size=3D2>Surely fractal images, in the =
  6774. raw so to=20
  6775. speak, are 'found' objects.  Acknowledgment is due to the creator =
  6776. of the=20
  6777. formula; be it Mandelbrot himself.  The colouring scheme, however, =
  6778. is an=20
  6779. aesthetic operation with two functions.  Firstly it is needed to =
  6780. display=20
  6781. some features of the 'raw image' which may not be obvious, and secondly =
  6782. it=20
  6783. serves to make the object a pleasing picture, (a piece of =
  6784. artwork).  So we=20
  6785. all generate or download Jim's images every day looking for an aesthetic =
  6786.  
  6787. experience, the maths is fun but the image is king.  I have tried =
  6788. to better=20
  6789. Jim's colour scheme usually with abysmal results, so Jim you're an =
  6790. artist (even=20
  6791. if your Mum doesn't think so! 'C-FOTD 20-4-01')  On the other hand =
  6792. I've=20
  6793. very often found a 'more interesting' area in one of Jim's FOTDs.  =
  6794. (That=20
  6795. is, more interesting to me) - not something new that I have=20
  6796. 'created'.</FONT></DIV>
  6797. <DIV><FONT face=3D"Comic Sans MS" size=3D2></FONT> </DIV>
  6798. <DIV><FONT face=3D"Comic Sans MS" size=3D2>As for the 'new' sinusoidal =
  6799. map=20
  6800. generation utility posted by Rupert Millard on 26th April.  A note =
  6801. of=20
  6802. acknowledgment that he received the source code for the basic algorithm =
  6803. from me=20
  6804. on 4th April would have been courteous, here I *do* have a proprietary=20
  6805. interest :-)   I'm working on using the Bezier function =
  6806. to define=20
  6807. the three R, G, & B curves but the maths is a bit steep so this =
  6808. utility=20
  6809. program may be some time coming.  Any VB6 programmers interested in =
  6810. joining=20
  6811. in the endeavour can contact me direct and I'll send the source code, =
  6812. (and=20
  6813. problem list!), so far.</FONT></DIV>
  6814. <DIV><FONT face=3D"Comic Sans MS" size=3D2></FONT> </DIV>
  6815. <DIV><FONT face=3D"Comic Sans MS" size=3D2>Regards,</FONT></DIV>
  6816. <DIV><FONT face=3D"Comic Sans MS" size=3D2>Chris Curnow</FONT></DIV>
  6817. <DIV><FONT face=3D"Comic Sans MS" size=3D2><A=20
  6818. href=3D"mailto:curnow@mail.telepac.pt">curnow@mail.telepac.pt</A></FONT><=
  6819. /DIV>
  6820. <DIV><FONT face=3D"Comic Sans MS" =
  6821. size=3D2></FONT> </DIV></BODY></HTML>
  6822.  
  6823. ------=_NextPart_000_0019_01C0D107.CA2B8580--
  6824.  
  6825.  
  6826. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6827. Post Message:   fractint@lists.xmission.com
  6828. Get Commands:   majordomo@lists.xmission.com "help"
  6829. Administrator:  twegner@fractint.org
  6830. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6831.  
  6832.  
  6833. -------------------------------------------------------------------------------
  6834.  
  6835. From: "Jonathan Osuch" <osuchj@qwest.net>
  6836. Subject: (fractint) Fractint version 20.1.08
  6837. Date: 29 Apr 2001 18:20:26 -0500
  6838.  
  6839. Folks,
  6840.  
  6841. Fractint version 20.1.08 is now available at the developer's web site.
  6842. www.fractint.org
  6843.  
  6844. Features in this patch:
  6845. Added truecolor support to Fractint thanks to Bert Tyler.  While in a
  6846.   truecolor mode, the following features are disabled/changed:\
  6847.     Color Cycling\
  6848.     Palette Editor brings up the contents of the MAP directory\
  6849.     Saving the image still only produces a 256 color GIF\
  6850.  
  6851.   Removed Bert's truecolor test code used with the test fractal type.
  6852.  
  6853.   Updated Paul de Leeuw's contact information.
  6854.  
  6855. Jonathan
  6856.  
  6857.  
  6858.  
  6859. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6860. Post Message:   fractint@lists.xmission.com
  6861. Get Commands:   majordomo@lists.xmission.com "help"
  6862. Administrator:  twegner@fractint.org
  6863. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6864.  
  6865.  
  6866. -------------------------------------------------------------------------------
  6867.  
  6868. From: Lee Skinner <LeeHSkinner@compuserve.com>
  6869. Subject: (fractint) Acknowledgments due?
  6870. Date: 30 Apr 2001 09:05:32 -0400
  6871.  
  6872. Hi Chris,
  6873.  
  6874. >> Poor old, (young), Zorba the Hutt who spent hours generating high
  6875. resolution versions of fractals to delight others with slower machines, i=
  6876. s
  6877. then shamed into deleting them because they are the 'property' of the
  6878. esteemed Sylvie Gallet, (may her .map files continue to delight us all). =
  6879.  
  6880. <<
  6881.  
  6882. Fractint and Ultra Fractal do not always generate identical images from t=
  6883. he
  6884. same par file. In this case, Sylvie generated the images with Fractint an=
  6885. d
  6886. posted Fractint pars.  Zorba generated the hi-res images with UF instead =
  6887. of
  6888. Fractint - they appeared differently (having a different texture)than
  6889. Sylvie originally generated - and so she had them removed mainly for that=
  6890.  
  6891. reason - they were no longer her images, and so Zorba's saying that they
  6892. were her images was inaccurate.  Had he generated them with Fractint, she=
  6893.  
  6894. may have approved, assuming that her permission was obtained first.  I
  6895. don't think Zorba was aware of the differences when he posted them.
  6896.  
  6897. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6898. Post Message:   fractint@lists.xmission.com
  6899. Get Commands:   majordomo@lists.xmission.com "help"
  6900. Administrator:  twegner@fractint.org
  6901. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6902.  
  6903.  
  6904. -------------------------------------------------------------------------------
  6905.  
  6906. From: Lee Skinner <LeeHSkinner@compuserve.com>
  6907. Subject: (fractint) Fractint version 20.1.08
  6908. Date: 30 Apr 2001 09:05:33 -0400
  6909.  
  6910. Jonathan,
  6911.  
  6912. >> Fractint version 20.1.08 is now available at the developer's web site.=
  6913.  
  6914. >> Features in this patch:
  6915. >> Added truecolor support to Fractint thanks to Bert Tyler.  =
  6916.  
  6917.  
  6918. I presume that there is no way to save a true-color par file yet either.
  6919.  
  6920. Is there any mechanism yet for manipulating the true colors?
  6921.  
  6922. Lee
  6923.  
  6924. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6925. Post Message:   fractint@lists.xmission.com
  6926. Get Commands:   majordomo@lists.xmission.com "help"
  6927. Administrator:  twegner@fractint.org
  6928. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6929.  
  6930.  
  6931. -------------------------------------------------------------------------------
  6932.  
  6933. From: Jim Muth <jamth@mindspring.com>
  6934. Subject: (fractint) C-FOTD  30-04-01  (A Ghostly Spectre [4])
  6935. Date: 30 Apr 2001 10:01:42 -0400 (EDT)
  6936.  
  6937.  
  6938. Classic FOTD -- April 30, 2001 (Rating 4)
  6939.  
  6940. Fractal visionaries and enthusiasts:
  6941.  
  6942. Today's hasty fractal was created by the formula 
  6943. 2Z^(-2.1)-2Z^(-1.9)+(1/C).  I named it "A Ghostly Spectre" when 
  6944. I noticed that the seahorse-like detail surrounding the midget 
  6945. is clearly visible only when certain broad color palettes are 
  6946. applied to the image.  With a narrow color scheme such as F2, 
  6947. the detail vanishes and the image becomes a featureless screen 
  6948. full of fractal sand.
  6949.  
  6950. The location of today's image is in an elephant trunk in the 
  6951. East Valley area of a larger midget, which is resting in a 
  6952. chaotic part of the parent fractal.
  6953.  
  6954. I rated the image at a 4.  This is all I could give to a fractal 
  6955. that I found and colored with so little effort.  With a running 
  6956. time of exactly 15 minutes, the parameter file might not be the 
  6957. best way of viewing the image, which will be available for 
  6958. download and viewing in an hour or so at:
  6959.  
  6960.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  6961.  
  6962. and at:
  6963.  
  6964.           <http://home.swbell.net/sdboyd56/fotd/>
  6965.  
  6966. One of these days when things settle down, I'm going to gain 
  6967. convenient access to ABPF, and resume posting the images there.  
  6968. But so far I haven't had the chance to recover from the move of 
  6969. Fractal Central auxiliary.
  6970.  
  6971. With sunny skies and a temperature of 68F (20C), the fractal 
  6972. weather today was so good that I took the day off.  When I 
  6973. returned, the cats scolded me for not being there to let them 
  6974. out to enjoy the fine weather.  To soothe them, I gave them a 
  6975. treat of tuna and promised to do better next time.
  6976.  
  6977. And speaking of next time, it will come in about 13 hours.  
  6978. Until then, take care, and watch out for those fractal ghosts.
  6979.  
  6980.  
  6981. Jim Muth
  6982. jamth@mindspring.com
  6983.  
  6984.  
  6985. START 20.0 PAR-FORMULA FILE================================
  6986.  
  6987. A_Ghostly_Spectre  { ; time=0:15:00.01--SF5 on a P200
  6988.   reset=2001 type=formula formulafile=critical.frm
  6989.   formulaname=MandelbrotMix4 function=recip passes=1
  6990.   center-mag=+1.584484530091595/+1.150509782717139/7\
  6991.   774320/1/132.5 params=1/-2.1/-1/-1.9/1/300 float=y
  6992.   maxiter=1800 inside=0 logmap=205 periodicity=10
  6993.   colors=000i_zg_zg_zfYzfYzdYzdYzbWzbWzbWzaWzaVz_Vz_\
  6994.   VzYVzYTzXTzXTzSRzVTzVTzXTzXVzXVzYVzYVz_Wz_Wz_WzaWz\
  6995.   aYzbYzbYzbYzd_zd_zf_zf_zf`zg`zg`zi`zibzibzkbzkbzlc\
  6996.   zlczlczncznfznfzpfzphzqhzqhzqhzsizsizuizuizukzwkzw\
  6997.   kzxkzxnzxnzznzzozzpzzpzzqzzqzzszztzztzztzzwzzwzzwz\
  6998.   zxzzyzzzzzzzzzzzzzzxzzxzzvzzuzztzzszzpzzpzzpzzpzzn\
  6999.   zxnzxnzwnxumwumwsmusmsqksqkqpjpshsqfqpdpnbplank`ni\
  7000.   _lgZlfYkdXkbWiaVi_UgYTgXSfVRfSQdRPbPObONaMMaKL_JK_\
  7001.   JJYHIYFHXEGXCFVAEV8DS7CS6BR4AP29P18O07O07M07M07K07\
  7002.   K07J07J07H07H07F07H07F07F07F07F07E07E07E05E07C07C0\
  7003.   7C07C17C47A68A68A7BA8B8AD8CE8EE8FF7FF7HC7JE7KE7MG6\
  7004.   OG6PH6RK6RL4SO4VQ4XR4YU1_V1aY1b_1b`1db0fb0gc0if0kf\
  7005.   0lh0lh0ni0pk0qk0sm0um0wn0xp0xp0zr0zr0zs0zu0zu0zw0z\
  7006.   w0zx0zx0zx0zx0zx0zx0zx0zz0zz1zz1zz4zz4zz6zz6zz7zz7\
  7007.   zz8zz8zzAzzAzzAzzAzzAzzAzzAzzAzzAzzAzzAzzAzzAzzAzz\
  7008.   AzzAzzAzzAzzAzzAzzAzzAzzA
  7009.   }
  7010.  
  7011. frm:MandelbrotMix4 {; Jim Muth
  7012. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  7013. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  7014. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  7015. z=k*((a*(z^b))+(d*(z^f)))+c,
  7016. |z| < l
  7017. }
  7018.  
  7019. END 20.0 PAR-FORMULA FILE==================================
  7020.  
  7021.  
  7022. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7023. Post Message:   fractint@lists.xmission.com
  7024. Get Commands:   majordomo@lists.xmission.com "help"
  7025. Administrator:  twegner@fractint.org
  7026. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7027.  
  7028.  
  7029. -------------------------------------------------------------------------------
  7030.  
  7031. From: "Andrew Coppin" <orphi69@hotmail.com>
  7032. Subject: (fractint) Linux Fractint
  7033. Date: 30 Apr 2001 14:50:31 -0000
  7034.  
  7035. I don't know who did the Linux Fractint post, but HATS OFF TO THEM!
  7036.  
  7037. Yesterday, after wanting to have a Linux Fractint for AGES, I got someone to 
  7038. download the source for me. I let him compile it, thinking it would be a 
  7039. nightmare. The guy typed "make", half a million lines of text flew past, and 
  7040. an executable appeared. He executed it, and it just worked.
  7041.  
  7042. I would never have believed it if I hadn't seen it for myself!
  7043.  
  7044. BTW, this was on an Athlon 1GHz machine. Once I reached arbitary precition 
  7045. mode, it was *still* rapping off 2 lines per second! Man, I *want* his 
  7046. machine!!!
  7047.  
  7048. Once again, a big thanks to whoever it was who made this thing!
  7049.  
  7050. Thanks.
  7051. Andrew.
  7052.  
  7053. _________________________________________________________________________
  7054. Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
  7055.  
  7056.  
  7057. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7058. Post Message:   fractint@lists.xmission.com
  7059. Get Commands:   majordomo@lists.xmission.com "help"
  7060. Administrator:  twegner@fractint.org
  7061. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7062.  
  7063.  
  7064. -------------------------------------------------------------------------------
  7065.  
  7066. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  7067. Subject: (fractint) Acknowledgments due?
  7068. Date: 30 Apr 2001 12:12:43 -0400
  7069.  
  7070. Hi Chris,
  7071.  
  7072. >> Poor old, (young), Zorba the Hutt who spent hours generating high
  7073. >> resolution versions of fractals to delight others with slower machines=
  7074. ,
  7075. >> is then shamed into deleting them because they are the 'property' of t=
  7076. he
  7077. >> esteemed Sylvie Gallet,
  7078.  
  7079.   I can't let you say that I _shamed_ him into deleting these images.  He=
  7080. re
  7081. is what I wrote:
  7082.  
  7083. <<<<<<<<<<<<
  7084.   All of the images are different from their Fractint version, and in lot=
  7085. s
  7086. of them, UF replaced the nice texture with banding so, I'd like you to
  7087. remove them or redo them with Fractint (maybe in a standard 1600x1200
  7088. format).
  7089. >>>>>>>>>>>>
  7090.  
  7091.   Cheers,
  7092.  
  7093.         - Sylvie
  7094.  
  7095. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7096. Post Message:   fractint@lists.xmission.com
  7097. Get Commands:   majordomo@lists.xmission.com "help"
  7098. Administrator:  twegner@fractint.org
  7099. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7100.  
  7101.  
  7102. -------------------------------------------------------------------------------
  7103.  
  7104. From: Programmer Dude <cjsonnack@mmm.com>
  7105. Subject: Re: (fractint) Re: C-FOTD
  7106. Date: 30 Apr 2001 12:17:58 -0500
  7107.  
  7108. Jim Muth wrote:
  7109.  
  7110. > When one is working with fractals, it is obvious that CPU speed is
  7111. > important.  I do not need to state the fact.  When I do state it, I am
  7112. > merely repeating the obvious.  I have no memory of stating that one
  7113. > should go out and spend money they cannot afford on a new computer,
  7114. > though I suppose it could be implied in my words.
  7115.  
  7116. FWIW, I've never gotten that impression from any of your FOTDs.  As you
  7117. say, it's self-evident that a faster machine == faster rendering, but
  7118. I've never gotten the impression you were egging us on in any way.
  7119.  
  7120. -- 
  7121. |_ CJSonnack <Chris@Sonnack.com> _____________| How's my programming? |
  7122. |_ http://www.Sonnack.com/ ___________________| Call: 1-800-DEV-NULL  |
  7123. |_____________________________________________|_______________________|
  7124.  
  7125. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7126. Post Message:   fractint@lists.xmission.com
  7127. Get Commands:   majordomo@lists.xmission.com "help"
  7128. Administrator:  twegner@fractint.org
  7129. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7130.  
  7131.  
  7132. -------------------------------------------------------------------------------
  7133.  
  7134. From: "Chris Curnow" <curnow@mail.telepac.pt>
  7135. Subject: (fractint) No hard feelings
  7136. Date: 30 Apr 2001 22:52:36 +0100
  7137.  
  7138. This is a multi-part message in MIME format.
  7139.  
  7140. ------=_NextPart_000_008B_01C0D1C8.402980A0
  7141. Content-Type: text/plain;
  7142.     charset="iso-8859-1"
  7143. Content-Transfer-Encoding: quoted-printable
  7144.  
  7145. Oh dear!  I really put one of Jim's cats amongst the pigeons!
  7146. I owe Rupert Millard and Sylvie Gallet each a public apology. =20
  7147.  
  7148. Here it is Rupert.  I'm sorry for implying that you 'stole' anything. =20
  7149. But it's a real bummer when you spend umpty-tump hours trying to=20
  7150. design a decent user interface for a program written only to find a=20
  7151. similar program posted!  And, yes you're right; my program uses the=20
  7152. negative cos function to generate a sinusoidal curve.  (And it's not=20
  7153. as good an implementation as yours!)
  7154.  
  7155. I still think the Bezier function would transform these gradient type=20
  7156. of map generators.  Really no hard feelings from my side so I'll send=20
  7157. you the bit of source to your email address, (I may persuade you to=20
  7158. spend a few moments on the 'problems'!)
  7159.  
  7160. Sylvie, I didn't mean to imply that *you* were the one that shamed him.  =
  7161.  
  7162. (English is my native tongue but sometimes I have trouble with my =
  7163. worms!) =20
  7164. The point I was trying to make was that what Zorba had done, although=20
  7165. based on your work, was something different and therefore valid; and=20
  7166. yet, he felt that he should delete them.  The question still hangs =
  7167. there. =20
  7168. Why did he, or anybody, feel that his version was in any way 'inferior'=20
  7169. to the original?  Put it another way, how come Andy Warhole could=20
  7170. charge zillions for a picture of a can of Campbell's Soup?  Was the =
  7171. money=20
  7172. his, or the graphic designer who drew the original can label? =20
  7173.  
  7174. I suspect that Lee Skinner sums up the problem as I see it........
  7175.  
  7176. >Zorba generated the hi-res images with UF instead of
  7177. >Fractint - they appeared differently (having a different texture)than
  7178. >Sylvie originally generated - and so she had them removed mainly for =
  7179. that
  7180. >reason - they were no longer her images, and so Zorba's saying that =
  7181. they
  7182. >were her images was inaccurate.  Had he generated them with Fractint, =
  7183. she
  7184. >may have approved, assuming that her permission was obtained first.
  7185.  
  7186. Why ask for permission?  The images were different and "no longer her =
  7187. images"!
  7188. Zorba gave acknowledgement that the .par files had been produced by =
  7189. Sylvie=20
  7190. but he *did* feel that it was the right thing to delete them.  I really =
  7191. don't want=20
  7192. to put Zorba on the spot over this, so Zorba, if you're listening I'm =
  7193. not asking=20
  7194. you to reply!  I just don't understand; but then I'm probably being =
  7195. thick!
  7196.  
  7197. So..... any comments from the Fractint List on the premise that fractals =
  7198. are=20
  7199. 'found' objects, or is that a dead duck? =20
  7200. (Dead duck image copyrighted by Jan Vermeer (1623-75)=20
  7201. Still life  "Dead Duck with Kalashnikov")
  7202.  
  7203. Best regards,
  7204.  
  7205. Chris
  7206.  
  7207. ------=_NextPart_000_008B_01C0D1C8.402980A0
  7208. Content-Type: text/html;
  7209.     charset="iso-8859-1"
  7210. Content-Transfer-Encoding: quoted-printable
  7211.  
  7212. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  7213. <HTML><HEAD>
  7214. <META http-equiv=3DContent-Type content=3D"text/html; =
  7215. charset=3Diso-8859-1">
  7216. <META content=3D"MSHTML 5.50.4611.1300" name=3DGENERATOR>
  7217. <STYLE></STYLE>
  7218. </HEAD>
  7219. <BODY bgColor=3D#ffffff>
  7220. <DIV><FONT face=3D"Comic Sans MS" size=3D2>Oh dear!  I really put =
  7221. one of Jim's=20
  7222. cats amongst the pigeons!</FONT></DIV>
  7223. <DIV><FONT face=3D"Comic Sans MS" size=3D2>I owe Rupert Millard and =
  7224. Sylvie Gallet=20
  7225. each a public apology.  </FONT></DIV>
  7226. <DIV><FONT face=3D"Comic Sans MS" size=3D2></FONT> </DIV>
  7227. <DIV><FONT face=3D"Comic Sans MS" size=3D2>Here it is Rupert.  I'm =
  7228. sorry for=20
  7229. implying that you 'stole' anything.  </FONT></DIV>
  7230. <DIV><FONT face=3D"Comic Sans MS" size=3D2>But it's a real bummer when =
  7231. you spend=20
  7232. umpty-tump hours trying to </FONT></DIV>
  7233. <DIV><FONT face=3D"Comic Sans MS" size=3D2>design a decent user =
  7234. interface for a=20
  7235. program written only to find a </FONT></DIV>
  7236. <DIV><FONT face=3D"Comic Sans MS" size=3D2>similar program posted!  =
  7237. And, yes=20
  7238. you're right; my program uses the </FONT></DIV>
  7239. <DIV><FONT face=3D"Comic Sans MS" size=3D2>negative cos function to =
  7240. generate a=20
  7241. sinusoidal curve.  (And it's not </FONT></DIV>
  7242. <DIV><FONT face=3D"Comic Sans MS" size=3D2>as good an implementation as=20
  7243. yours!)</FONT></DIV>
  7244. <DIV><FONT face=3D"Comic Sans MS" size=3D2></FONT> </DIV>
  7245. <DIV><FONT face=3D"Comic Sans MS" size=3D2>I still think the Bezier =
  7246. function would=20
  7247. transform these gradient type </FONT></DIV>
  7248. <DIV><FONT face=3D"Comic Sans MS" size=3D2>of map generators.  =
  7249. Really no hard=20
  7250. feelings from my side so I'll send </FONT></DIV>
  7251. <DIV><FONT face=3D"Comic Sans MS" size=3D2>you the bit of source to your =
  7252. email=20
  7253. address, (I may persuade you to </FONT></DIV>
  7254. <DIV><FONT face=3D"Comic Sans MS" size=3D2>spend a few moments on the=20
  7255. 'problems'!)</FONT></DIV>
  7256. <DIV><FONT face=3D"Comic Sans MS" size=3D2></FONT> </DIV>
  7257. <DIV><FONT face=3D"Comic Sans MS" size=3D2>Sylvie, I didn't mean to =
  7258. imply that *you*=20
  7259. were the one that shamed him.  </FONT></DIV>
  7260. <DIV><FONT face=3D"Comic Sans MS" size=3D2>(English is my native tongue =
  7261. but=20
  7262. sometimes I have trouble with my worms!)  </FONT></DIV>
  7263. <DIV><FONT face=3D"Comic Sans MS" size=3D2>The point I was trying to =
  7264. make was that=20
  7265. what Zorba had done, although </FONT></DIV>
  7266. <DIV><FONT face=3D"Comic Sans MS" size=3D2>based on your work, was =
  7267. something=20
  7268. different and therefore valid; and </FONT></DIV>
  7269. <DIV><FONT face=3D"Comic Sans MS" size=3D2>yet, he felt that he should =
  7270. delete=20
  7271. them.  The question still hangs there.  </FONT></DIV>
  7272. <DIV><FONT face=3D"Comic Sans MS" size=3D2>Why did he, or anybody, feel =
  7273. that his=20
  7274. version was in any way 'inferior' </FONT></DIV>
  7275. <DIV><FONT face=3D"Comic Sans MS" size=3D2>to the original?  Put it =
  7276. another=20
  7277. way, how come Andy Warhole could </FONT></DIV>
  7278. <DIV><FONT face=3D"Comic Sans MS" size=3D2>charge zillions for a picture =
  7279. of a can of=20
  7280. Campbell's Soup?  Was the money </FONT></DIV>
  7281. <DIV><FONT face=3D"Comic Sans MS" size=3D2>his, or the graphic designer =
  7282. who drew the=20
  7283. original can label?  </FONT></DIV>
  7284. <DIV><FONT face=3D"Comic Sans MS" size=3D2></FONT> </DIV>
  7285. <DIV><FONT face=3D"Comic Sans MS" size=3D2>
  7286. <DIV><FONT face=3D"Comic Sans MS" size=3D2>I suspect that Lee Skinner =
  7287. sums up the=20
  7288. problem as I see it</FONT><FONT face=3D"Comic Sans MS"=20
  7289. size=3D2>........</FONT></DIV>
  7290. <DIV> </DIV>
  7291. <DIV>>Zorba generated the hi-res images with UF instead =
  7292. of<BR>>Fractint -=20
  7293. they appeared differently (having a different texture)than<BR>>Sylvie =
  7294.  
  7295. originally generated - and so she had them removed mainly for =
  7296. that<BR>>reason=20
  7297. - they were no longer her images, and so Zorba's saying that =
  7298. they<BR>>were=20
  7299. her images was inaccurate.  Had he generated them with Fractint,=20
  7300. she<BR>>may have approved, assuming that her permission was obtained=20
  7301. first.</DIV>
  7302. <DIV> </DIV>
  7303. <DIV>Why ask for permission?  The images were different and "no =
  7304. longer her=20
  7305. images"!</DIV>
  7306. <DIV>Zorba gave acknowledgement that the .par files had been produced by =
  7307. Sylvie=20
  7308. </DIV>
  7309. <DIV>but he *did* feel that it was the right thing to delete them.  =
  7310. I=20
  7311. really don't want </DIV>
  7312. <DIV>to put Zorba on the spot over this, so Zorba, if you're listening =
  7313. I'm not=20
  7314. asking </DIV>
  7315. <DIV>you to reply!  I just don't understand; but then I'm probably=20
  7316. being thick!</DIV>
  7317. <DIV> </DIV>
  7318. <DIV><FONT face=3D"Comic Sans MS" size=3D2>So..... any comments from the =
  7319. Fractint=20
  7320. List on the premise that fractals are </FONT></DIV>
  7321. <DIV><FONT face=3D"Comic Sans MS" size=3D2>'found' </FONT><FONT =
  7322. face=3D"Comic Sans MS"=20
  7323. size=3D2>objects, or is that a dead duck?  </FONT></DIV>
  7324. <DIV><FONT face=3D"Comic Sans MS" size=3D2>(Dead duck image copyrighted =
  7325. by Jan=20
  7326. Vermeer (1623-75) </FONT></DIV>
  7327. <DIV><FONT face=3D"Comic Sans MS" size=3D2>Still life  "Dead Duck =
  7328. with=20
  7329. Kalashnikov")</FONT></DIV>
  7330. <DIV><FONT face=3D"Comic Sans MS" =
  7331. size=3D2></FONT> </DIV></FONT></DIV>
  7332. <DIV><FONT face=3D"Comic Sans MS" size=3D2>Best regards,</FONT></DIV>
  7333. <DIV><FONT face=3D"Comic Sans MS" size=3D2></FONT> </DIV>
  7334. <DIV><FONT face=3D"Comic Sans MS" =
  7335. size=3D2>Chris</FONT></DIV></BODY></HTML>
  7336.  
  7337. ------=_NextPart_000_008B_01C0D1C8.402980A0--
  7338.  
  7339.  
  7340. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7341. Post Message:   fractint@lists.xmission.com
  7342. Get Commands:   majordomo@lists.xmission.com "help"
  7343. Administrator:  twegner@fractint.org
  7344. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7345.  
  7346.  
  7347. -------------------------------------------------------------------------------
  7348.  
  7349. From: Programmer Dude <cjsonnack@mmm.com>
  7350. Subject: Re: (fractint) No hard feelings
  7351. Date: 30 Apr 2001 17:18:09 -0500
  7352.  
  7353. Chris Curnow wrote:
  7354.  
  7355. > Why did he, or anybody, feel that his version was in any way 'inferior'
  7356. > to the original?
  7357.  
  7358. I shouldn't speak for someone else, but perhaps not "inferior" so much as
  7359. treading on private ground?  Like, you can run across someone's yard, but
  7360. if they indicate they don't like it, you respect that and don't?
  7361.  
  7362. Or closer to the copyright issue: is music "discovered" or invented?  You
  7363. *could* suggest that--mathematically--all songs (and books) already exist
  7364. as a permutation of a fairly basic set of "primatives" (notes/words).
  7365.  
  7366. But "discovering" a permutation that pleases others, ah, that's the ART!
  7367.  
  7368. > Put it another way, how come Andy Warhole could charge zillions for a
  7369. > picture of a can of Campbell's Soup?  Was the money his, or the graphic
  7370. > designer who drew the original can label?
  7371.  
  7372. (IMO obviously) His.  Warhol's art was in drawing our attention to the
  7373. presence of graphic art all around us in everyday life.  He was pointing
  7374. out that a (probably trained) artist created that soup can label.
  7375.  
  7376. THAT's why his work is worth gazillions and mine--if I aped it--ain't.
  7377.  
  7378. >> ...and so Zorba's saying that they were her images was inaccurate.
  7379. > Why ask for permission?  The images were different and "no longer her
  7380. > images"!
  7381.  
  7382. But she did the original legwork to "discover" the image and--in a moral
  7383. sense--has *some* sense of ownership which someone else might respect.
  7384.  
  7385. > So..... any comments from the Fractint List on the premise that
  7386. > fractals are 'found' objects, or is that a dead duck?
  7387.  
  7388. Considered a dead duck by many.
  7389.  
  7390. My vote: yeah, fractals are largely discovered, but the framing, coloring
  7391. (and these days, overlaying of multiple images) is clearly art, so I don't
  7392. see the answer being all Yes or all No.  To me, it's the amount of effort
  7393. and *personal* input by the "artist" that makes it art.
  7394.  
  7395. If I boot FractInt, zoom in randomly for a while, generate a random color
  7396. palette.... is that art?
  7397.  
  7398. If I boot FractInt, spend a bit of time finding an image that seems
  7399. pleasing to the eye, seems somewhat unique in my experience and then
  7400. spend time finding a color palette that brings out the best of the
  7401. fractal..... is THAT art?
  7402.  
  7403. -- 
  7404. |_ CJSonnack <Chris@Sonnack.com> _____________| How's my programming? |
  7405. |_ http://www.Sonnack.com/ ___________________| Call: 1-800-DEV-NULL  |
  7406. |_____________________________________________|_______________________|
  7407.  
  7408. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7409. Post Message:   fractint@lists.xmission.com
  7410. Get Commands:   majordomo@lists.xmission.com "help"
  7411. Administrator:  twegner@fractint.org
  7412. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7413.  
  7414.  
  7415. -------------------------------------------------------------------------------
  7416.  
  7417. From: Programmer Dude <cjsonnack@mmm.com>
  7418. Subject: Re: (fractint) Fractint version 20.1.08
  7419. Date: 30 Apr 2001 17:20:26 -0500
  7420.  
  7421. Jonathan Osuch wrote:
  7422.  
  7423. > Features in this patch:
  7424. > Added truecolor support...
  7425. > [....]
  7426. >     Saving the image still only produces a 256 color GIF
  7427.  
  7428. ???  So you can look, but not save?
  7429.  
  7430. Given that you've GOT an image and that free PNG libraries exist, I'm
  7431. curious why you can't save a t/c image?
  7432.  
  7433. Not raggin' on ya, just curious...
  7434.  
  7435. -- 
  7436. |_ CJSonnack <Chris@Sonnack.com> _____________| How's my programming? |
  7437. |_ http://www.Sonnack.com/ ___________________| Call: 1-800-DEV-NULL  |
  7438. |_____________________________________________|_______________________|
  7439.  
  7440. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7441. Post Message:   fractint@lists.xmission.com
  7442. Get Commands:   majordomo@lists.xmission.com "help"
  7443. Administrator:  twegner@fractint.org
  7444. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7445.  
  7446.  
  7447. -------------------------------------------------------------------------------
  7448.  
  7449. From: "Fernando Bresslau" <wnto@yahoo.com>
  7450. Subject: Re: (fractint) Fractint version 20.1.08
  7451. Date: 30 Apr 2001 20:08:29 -0300
  7452.  
  7453. isn┤t there a way of capturing the screen? maybe some third party software?
  7454. Fernando Bresslau, who hasn┤t tried it yet.
  7455. http://www.fractal.art.br
  7456.  
  7457.  
  7458. ----- Original Message -----
  7459. Sent: Monday, April 30, 2001 7:20 PM
  7460.  
  7461.  
  7462. > Jonathan Osuch wrote:
  7463. >
  7464. > > Features in this patch:
  7465. > > Added truecolor support...
  7466. > > [....]
  7467. > >     Saving the image still only produces a 256 color GIF
  7468. >
  7469. > ???  So you can look, but not save?
  7470. >
  7471. > Given that you've GOT an image and that free PNG libraries exist, I'm
  7472. > curious why you can't save a t/c image?
  7473. >
  7474. > Not raggin' on ya, just curious...
  7475. >
  7476. > --
  7477. > |_ CJSonnack <Chris@Sonnack.com> _____________| How's my programming? |
  7478. > |_ http://www.Sonnack.com/ ___________________| Call: 1-800-DEV-NULL  |
  7479. > |_____________________________________________|_______________________|
  7480. >
  7481. > --------------------------------------------------------------
  7482. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  7483. > Post Message:   fractint@lists.xmission.com
  7484. > Get Commands:   majordomo@lists.xmission.com "help"
  7485. > Administrator:  twegner@fractint.org
  7486. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7487.  
  7488.  
  7489. _________________________________________________________
  7490. Do You Yahoo!?
  7491. Get your free @yahoo.com address at http://mail.yahoo.com
  7492.  
  7493.  
  7494. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7495. Post Message:   fractint@lists.xmission.com
  7496. Get Commands:   majordomo@lists.xmission.com "help"
  7497. Administrator:  twegner@fractint.org
  7498. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7499.  
  7500.  
  7501. -------------------------------------------------------------------------------
  7502.  
  7503. From: "Jonathan Osuch" <osuchj@qwest.net>
  7504. Subject: Re: (fractint) Fractint version 20.1.08
  7505. Date: 30 Apr 2001 18:20:46 -0500
  7506.  
  7507. Chris,
  7508.  
  7509. > ???  So you can look, but not save?
  7510.  
  7511. Not exactly.  The images you can currently generate are still using the 256
  7512. color palette.  So, to save the image, the truecolor pixel on the screen is
  7513. read and converted to an index value into the 256 color palette.  This
  7514. conversion may make the saved image look different than if it were done
  7515. directly in a 256 color mode.
  7516.  
  7517. > Given that you've GOT an image and that free PNG libraries exist, I'm
  7518. > curious why you can't save a t/c image?
  7519.  
  7520. Memory.  Because of the memory model we are using (medium), we can't fit the
  7521. PNG libraries into Fractint.  There are solutions.  We have tried compiling
  7522. the Xfractint code using djgpp, but it needs work.  Any volunteers?  We have
  7523. the experimental code which incorporates the Allegro graphics package but no
  7524. way as yet to save images.  We could add the PNG libraries to Xfractint and
  7525. stop developing the DOS version.
  7526.  
  7527. We will eventually have to dump the current DOS source code, but would like
  7528. to at least have something place for Windows before we do this.
  7529.  
  7530. Jonathan
  7531.  
  7532.  
  7533.  
  7534. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7535. Post Message:   fractint@lists.xmission.com
  7536. Get Commands:   majordomo@lists.xmission.com "help"
  7537. Administrator:  twegner@fractint.org
  7538. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7539.  
  7540.  
  7541. -------------------------------------------------------------------------------
  7542.  
  7543. From: "Jonathan Osuch" <osuchj@qwest.net>
  7544. Subject: Re: (fractint) Fractint version 20.1.08
  7545. Date: 30 Apr 2001 18:02:36 -0500
  7546.  
  7547. Lee,
  7548.  
  7549. > I presume that there is no way to save a true-color par file yet either.
  7550.  
  7551. The images that can currently be generated still use the 256 color palette,
  7552. and will generate the corresponding PAR.  Once we add different coloring
  7553. schemes I don't see any way to generate a PAR that makes sense.  Depending
  7554. on how the coloring schemes are generated.
  7555.  
  7556. > Is there any mechanism yet for manipulating the true colors?
  7557.  
  7558. No.
  7559.  
  7560. Jonathan
  7561.  
  7562.  
  7563.  
  7564. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7565. Post Message:   fractint@lists.xmission.com
  7566. Get Commands:   majordomo@lists.xmission.com "help"
  7567. Administrator:  twegner@fractint.org
  7568. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7569.  
  7570.  
  7571. -------------------------------------------------------------------------------
  7572.  
  7573. From: Lee Skinner <LeeHSkinner@compuserve.com>
  7574. Subject: (fractint) Fractint version 20.1.08
  7575. Date: 30 Apr 2001 19:55:13 -0400
  7576.  
  7577. Jonathan,
  7578.  
  7579. >> I presume that there is no way to save a true-color par file yet
  7580. either.<<
  7581.  
  7582. > The images that can currently be generated still use the 256 color
  7583. palette, and will generate the corresponding PAR.  Once we add different
  7584. coloring schemes I don't see any way to generate a PAR that makes sense. =
  7585.  
  7586. Depending on how the coloring schemes are generated. <
  7587.  
  7588. I am not an Ultra Fractal user, but doesn't it generate par files of
  7589. true-color images?  (Perhaps some UF user could shed light on how this
  7590. might be implemented.)
  7591.  
  7592. Lee
  7593.  
  7594. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7595. Post Message:   fractint@lists.xmission.com
  7596. Get Commands:   majordomo@lists.xmission.com "help"
  7597. Administrator:  twegner@fractint.org
  7598. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7599.  
  7600.  
  7601. -------------------------------------------------------------------------------
  7602.  
  7603. From: Jim Muth <jamth@mindspring.com>
  7604. Subject: (fractint) C-FOTD  01-05-01  (Decorative Minibrot [6])
  7605. Date: 30 Apr 2001 23:01:26 -0400 (EDT)
  7606.  
  7607.  
  7608. Classic FOTD -- May 01, 2001 (Rating 6)
  7609.  
  7610. Fractal visionaries and enthusiasts:
  7611.  
  7612. Before attempting to run the parameter file of today's image, 
  7613. notice that it has been drawn by an updated version of the 
  7614. MandelbrotBC formula, which I have named MandelbrotBC1.  This 
  7615. new version is identical to the old version except that I have 
  7616. replaced the fixed <trunc> function with a variable function, 
  7617. and replaced the fixed bailout radius of 100 with a variable 
  7618. parameter entry.  Since I've lost all track of those who worked 
  7619. on this formula, I have credited it to 'several Fractint users'.
  7620.  
  7621. Today's image uses the <floor> function, which curiously enough 
  7622. draws exactly the same images as the <trunc> function.  I have 
  7623. not yet tested the various trig functions, though hopefully they 
  7624. will draw some interesting if not quite correct variations.  The 
  7625. variable bailout is useful mainly with negative-exponent 
  7626. fractals, which I have not yet worked with.
  7627.  
  7628. I also see that a developer's version of Fractint with 
  7629. rudimentary true-color capability is available, though at the 
  7630. present time, one can only see the image on the screen, say 
  7631. 'wow', stare at the image a while, and then shut down their 
  7632. computer.  It's a start, but before I switch the FOTD to a true-
  7633. color version of Fractint, the program will need the ability to 
  7634. cycle and change the colors, to save the image in true-color 
  7635. with data intact, and also to save the true-color image as a 
  7636. parameter file.  And there's also the possibility that my 
  7637. stripped-down computer, used only for finding fractals, will not 
  7638. be able to display true-color with its meager 1 meg of video 
  7639. memory.  But that's a problem I'll concern myself with if and 
  7640. when it arises.
  7641.  
  7642. Today's fractal is quite decorative, an attribute that inspired 
  7643. the name "Decorative Minibrot".  The irrational number entered 
  7644. as the real(p1) parameter may appear familiar.  Actually, it is 
  7645. familiar.  It is the square root of 3, a number I entered hoping 
  7646. to create midgets with 3-way symmetry.  As of yet, I have found 
  7647. no such midgets, though I did find today's midget, which bears a 
  7648. curiously close resemblance to a standard quadratic midget.  
  7649. Only the chopped-off main bud reveals the midget's true nature.
  7650.  
  7651. The parameter file is unusually fast, rendering in under two 
  7652. minutes.  Of course, the download, which may be found at:
  7653.  
  7654.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  7655.  
  7656. and at:
  7657.  
  7658.           <http://home.swbell.net/sdboyd56/fotd/>
  7659.  
  7660. is equally fast.  I leave it to the viewer what route to take.
  7661.  
  7662. The fractal weather today was clear as a crystal, with a 
  7663. temperature of 77F (25C), conditions that Thomas and Tippy, the 
  7664. fractal cats, consider ideal.  Since they were deprived yester-
  7665. day of their rightful time outdoors, I treated them to all the 
  7666. outdoor time they wanted today.  My only concern is about a fox 
  7667. that has been seen lately in the neighborhood.  The cats haven't 
  7668. confronted it yet, and I have no idea of what might happen if 
  7669. they meet.
  7670.  
  7671. But right now, the dynamic duo are sleeping in their beds, a 
  7672. sign that it's time for me to shut down the fractal shoppe and 
  7673. call it a night.  Until next time, take care, and if true-color 
  7674. is true, does that mean that 256-color is false?
  7675.  
  7676.  
  7677. Jim Muth
  7678. jamth@mindspring.com
  7679.  
  7680.  
  7681. START 20.0 PAR-FORMULA FILE================================
  7682.  
  7683. DecorativeMinibrot { ; time=0:01:52.60--SF5 on a P200
  7684.   reset=2001 type=formula formulafile=critical.frm
  7685.   formulaname=mandelbrotbc1 function=floor passes=1
  7686.   center-mag=-0.73763/0.15494/2498.371/1/-124.999
  7687.   params=1.732050807569/0/28.4/0 float=y maxiter=1000
  7688.   inside=0 logmap=36 periodicity=10
  7689.   colors=000mA9jBPnCHqDHtFDwGAzH5zH2zM4zS5zW7za8zeAz\
  7690.   jMzp_zzmzzzbsfFPO0D70ID1PK4YP8cWClaGrhIwmMriPmeUha\
  7691.   WcZ__VbVQfQOiMKmHGpDCuAAw45z12z00z11z42z83zC4zG4zK\
  7692.   5zO7zS8zW8y_AycByhCylClSPaAaQ0mS0pU2rU7sVCuWHvWMwY\
  7693.   SyZYzZazeVmjO_pIMpMLpPKpUKpWIp_HpbHQYP2SW1WS0ZO0bL\
  7694.   0eH0hD0lB0o70s40v10y00z00z00z0ovzpszrryrpwsouumsul\
  7695.   rvjpwhmwflyejzcizbfzaez_czZbzYazW_yVZwVYvUWuSVuSUs\
  7696.   QSrPQpOPoOOmMMlLLlLLhKMcKOaIPYIQUHSQHUMGVKGWGFYCFZ\
  7697.   AD_5Da2Cb0Cc0Be0Be0If0Pf0Wh1ch3ji4ri7sf8ueAvcCvbDw\
  7698.   aFyZGzYIzWKzVLzUMzSVzKbzDiz5rz0yz0wv3vsDupOulZsiir\
  7699.   furczsczscyucvucsvcpvcmwcjwchyceycbzc_zcYzcVzcUwcZ\
  7700.   sccpchycfzcfzc_zeUzfMzhHyiKsjMmlO0m02o04p27r3Bs4Du\
  7701.   5Hv8KwAMyBQzCUzFYzG_zHbzIZzFWzBSz8Pz4Lz1Iz0Fz0Cz0A\
  7702.   z0Dz2HzGKzUFzLAzD4z57zB8zFBzICzMFzOHzPKzPMzQPzQSzS\
  7703.   VzSYzU_zUbzVezVhzWizWjzUjzQlzPlzMmzLmzImzHozGpzFpz\
  7704.   DlzFWzHWzHVzIVzIVzKUzKbzY
  7705.   }
  7706.  
  7707. frm:MandelbrotBC1   { ; by several Fractint users
  7708.   e=p1, a=imag(p2)+100
  7709.   p=real(p2)+PI
  7710.   q=2*PI*fn1(p/(2*PI))
  7711.   r=real(p2)-q
  7712.   Z=C=Pixel:
  7713.     Z=log(Z)
  7714.     IF(imag(Z)>r)
  7715.       Z=Z+flip(2*PI)
  7716.     ENDIF
  7717.     Z=exp(e*(Z+flip(q)))+C
  7718.   |Z|<a
  7719. }
  7720.  
  7721. END 20.0 PAR-FORMULA FILE==================================
  7722.  
  7723.  
  7724. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7725. Post Message:   fractint@lists.xmission.com
  7726. Get Commands:   majordomo@lists.xmission.com "help"
  7727. Administrator:  twegner@fractint.org
  7728. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7729.  
  7730.  
  7731. -------------------------------------------------------------------------------
  7732.  
  7733. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  7734. Subject: (fractint) Re: [philofractal] C-FOTD  01-05-01  (Decorative Minibrot [6])
  7735. Date: 01 May 2001 17:23:57 +1200
  7736.  
  7737. At 15:01 01/05/2001, Jim Muth wrote:
  7738.  
  7739. >Classic FOTD -- May 01, 2001 (Rating 6)
  7740. >
  7741. >Fractal visionaries and enthusiasts:
  7742. >
  7743. >Today's image uses the <floor> function, which curiously enough
  7744. >draws exactly the same images as the <trunc> function.  I have
  7745. >not yet tested the various trig functions, though hopefully they
  7746. >will draw some interesting if not quite correct variations.  The
  7747. >variable bailout is useful mainly with negative-exponent
  7748. >fractals, which I have not yet worked with.
  7749.  
  7750. Not that surprising: trunc((28.4+PI)/(2*PI)) = floor((28.4+PI)/(2*PI)). The 
  7751. two functions differ in how they deal with negative numbers (trunc rounds 
  7752. towards 0, floor rounds towards -infinity).
  7753.  
  7754. Morgan L. Owens
  7755. "I remember when all we had to worry about was good old Int."
  7756.  
  7757.  
  7758.  
  7759. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7760. Post Message:   fractint@lists.xmission.com
  7761. Get Commands:   majordomo@lists.xmission.com "help"
  7762. Administrator:  twegner@fractint.org
  7763. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7764.  
  7765.