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

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #564
  4. Reply-To: fractint-digest
  5. Sender: owner-fractint-digest@lists.xmission.com
  6. Errors-To: owner-fractint-digest@lists.xmission.com
  7. Precedence: bulk
  8.  
  9.  
  10. fractint-digest         Saturday, May 19 2001         Volume 01 : Number 564
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Thu, 17 May 2001 10:26:43 -0500
  18. From: Programmer Dude <cjsonnack@mmm.com>
  19. Subject: Re: (fractint) float only version
  20.  
  21. > George Priest wrote:
  22.  
  23. > Could I install the float-only version in the same directory with the
  24. > regular version and rename it something like FractinF?
  25.  
  26. Well,... you should probably name it "FractFlo"....
  27.  
  28. - -- 
  29. |_ CJSonnack <Chris@Sonnack.com> _____________| How's my programming? |
  30. |_ http://www.Sonnack.com/ ___________________| Call: 1-800-DEV-NULL  |
  31. |_____________________________________________|_______________________|
  32.  
  33. - --------------------------------------------------------------
  34. Thanks for using Fractint, The Fractals and Fractint Discussion List
  35. Post Message:   fractint@lists.xmission.com
  36. Get Commands:   majordomo@lists.xmission.com "help"
  37. Administrator:  twegner@fractint.org
  38. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  39.  
  40. ------------------------------
  41.  
  42. Date: Thu, 17 May 2001 15:33:13 +0000
  43. From: "Thierry B." <oulala@chez.com>
  44. Subject: Re: (fractint) float only version
  45.  
  46. Programmer Dude wrote:
  47. > > George Priest wrote:
  48. > > Could I install the float-only version in the same directory with the
  49. > > regular version and rename it something like FractinF?
  50. > Well,... you should probably name it "FractFlo"....
  51.  
  52.     what a good idea ! my girl-friend was named Flo !
  53.     http://la.buvette.org/images/photos/flo.euh
  54.  
  55.  
  56. - -- 
  57. Thierry, 42++
  58.  
  59. - --------------------------------------------------------------
  60. Thanks for using Fractint, The Fractals and Fractint Discussion List
  61. Post Message:   fractint@lists.xmission.com
  62. Get Commands:   majordomo@lists.xmission.com "help"
  63. Administrator:  twegner@fractint.org
  64. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  65.  
  66. ------------------------------
  67.  
  68. Date: Thu, 17 May 2001 17:41:23 +0200
  69. From: =?iso-8859-1?Q?Francisco_Andeyro_Garc=EDa?= <arkion@arkion.es>
  70. Subject: (fractint) Hi, little problem with first formulas...
  71.  
  72. Dear Friends:
  73.  
  74. My name is Francisco Andeyro. I'm a student at the polytechnic of Madrid,
  75. and a fractal and mathematics enthusiast, like you all.
  76.  
  77. I'm doing some research in Graphic cryptography, with some algorithms,
  78. similar to automatas. All technical info is avaible at:
  79.  
  80. http://www.arkion.es
  81.  
  82. But the problem i have, has nothing to do with that. I'm doing my first
  83. steps in managing formula fractals. As a first simple exercise i decided to
  84. write a formula file for representing a simple Mandelbrot:
  85.  
  86. MandelPrueba {;Quicote
  87. z0=c=pixel
  88. z=z*z+c
  89. }
  90.  
  91. And it draws something very similar to a mandel, but irregular and broken;
  92. and i got really surprised when i turn on Floating Point... and i obtained
  93. an empty blue screen...
  94.  
  95. I've run also
  96.  
  97. MandelPrueba {;Quicote
  98. z0=c=pixel
  99. z=z*z+c
  100. |z|<4
  101. }
  102.  
  103. With similar result.
  104.  
  105. I'm sure that it has an obvious explanation, ...but i'm young and
  106. unexperinced... Please help me
  107.  
  108. I'm using Fractint 20.0.
  109.  
  110. Thanks in advance.
  111.  
  112. - --------------------------------------------------------------
  113. Thanks for using Fractint, The Fractals and Fractint Discussion List
  114. Post Message:   fractint@lists.xmission.com
  115. Get Commands:   majordomo@lists.xmission.com "help"
  116. Administrator:  twegner@fractint.org
  117. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  118.  
  119. ------------------------------
  120.  
  121. Date: Thu, 17 May 2001 13:29:50 -0400
  122. From: George Martin <GGMARTIN@compuserve.com>
  123. Subject: (fractint) Hi, little problem with first formulas...
  124.  
  125. MandelPrueba {;Quicote
  126. z0=3Dc=3Dpixel
  127. z=3Dz*z+c
  128. }
  129.  
  130. This formula lacks the "bailout" line at the end. Also, you do not need =
  131.  
  132. a separate variable (z0) in the initialization. Finally, the initializati=
  133. on
  134. section should be separated from the main body of the formula with a ":".=
  135.  
  136. The complete formula
  137.  
  138. Mandelbrot {
  139. z =3D c =3D pixel:
  140. z =3D z*z + c
  141. |z| < 4
  142. }
  143.  
  144. George Martin  =
  145.  
  146.  
  147. - --------------------------------------------------------------
  148. Thanks for using Fractint, The Fractals and Fractint Discussion List
  149. Post Message:   fractint@lists.xmission.com
  150. Get Commands:   majordomo@lists.xmission.com "help"
  151. Administrator:  twegner@fractint.org
  152. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  153.  
  154. ------------------------------
  155.  
  156. Date: Thu, 17 May 2001 22:50:09 +0200
  157. From: Guy Marson <guy.marson@mnhn.lu>
  158. Subject: Re: (fractint) Hi, little problem with first formulas...
  159.  
  160. At 17:41 17/05/01 +0200, you wrote:
  161. >Dear Friends:
  162.  
  163. Try it this way:
  164.  
  165. **********************************************=20
  166.  
  167. MandelPrueba {;Quicote
  168. z=3Dc=3Dpixel
  169.  
  170. ;the ':' is a must..
  171.  
  172. :
  173.  
  174. z=3Dz*z+c
  175.  
  176. and a bailout condition:=20
  177. =A6z=A6<=3D4
  178. }
  179.  
  180. ***********************************
  181.  
  182.  
  183. >
  184. >And it draws something very similar to a mandel, but irregular and broken;
  185. >and i got really surprised when i turn on Floating Point... and i obtained
  186. >an empty blue screen...
  187. >
  188. >I've run also
  189. >
  190. >MandelPrueba {;Quicote
  191. >z0=3Dc=3Dpixel
  192. >z=3Dz*z+c
  193. >|z|<4
  194. >}
  195. >
  196. >With similar result.
  197. >
  198. >I'm sure that it has an obvious explanation, ...but i'm young and
  199. >unexperinced... Please help me
  200. >
  201. >I'm using Fractint 20.0.
  202. >
  203. >Thanks in advance.
  204. >
  205.  
  206.  
  207. cheers,=20
  208.  
  209.  
  210.  
  211. Guy
  212.  
  213. - --------------------------------------------------------------
  214. Thanks for using Fractint, The Fractals and Fractint Discussion List
  215. Post Message:   fractint@lists.xmission.com
  216. Get Commands:   majordomo@lists.xmission.com "help"
  217. Administrator:  twegner@fractint.org
  218. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  219.  
  220. ------------------------------
  221.  
  222. Date: Tue, 15 May 2001 16:26:08 -0400
  223. From: "Multiple Bogeys" <neo_1061@hotmail.com>
  224. Subject: Re: (fractint) C-FOTD 28-04-01 (Semi-Chaos [4])
  225.  
  226. - ------=_NextPart_001_0000_01C0DD5B.BFB8DDE0
  227. Content-Type: text/plain; charset="iso-8859-1"
  228. Content-Transfer-Encoding: quoted-printable
  229.  
  230. > Some astronomers have suggested that dark matter might be located in
  231. > (and I love this term) MACHOS (MAssive Cometary Halo ObjectS).  That
  232. > is, really, really big snowballs.  With rocks in them.  ;-)
  233.  
  234. MAssive Compact Halo Objects, actually. And besides cometoids, they can b=
  235. e rogue planets, brown dwarfs, no-longer-luminous collapsed stars (cooled=
  236.  white dwarf, cooled neutron star, black hole far from other mass).
  237.  
  238. Also, the mainstream, inflationary cosmology requires some non-baryonic d=
  239. ark matter.
  240.  
  241. Incidentally, wouldn't it be a hoot if globular clusters turned out to be=
  242.  *artifacts*? Think of it -- scads of energy, and if they have no or slow=
  243.  FTL (e.g. weeks to cross a light year) their systems are all close toget=
  244. her. Massive engineering feat though. Now, you know what would be even mo=
  245. re impressive? If some ubercivilizations have locked up their globular cl=
  246. usters in dyson shells. Makes the usual dyson shell look like a shanty on=
  247.  the side of the highway by comparison. And the result is dark matter, wi=
  248. th maybe the odd infrared glow somewhere.
  249.  
  250. Intriguingly, these clusters are in slow gravitational collapse. An inter=
  251. esting possibility is that this is what someone did in order to open worm=
  252. holes for intergalactic travel... the stars fall into the center, some gr=
  253. avitational magic, presto! Open a bridge to Andromeda. Anyone doing somet=
  254. hing like that takes a *looong* view. Probably have to be uploads then.<b=
  255. r clear=3Dall><hr>Get Your Private, Free E-mail from MSN Hotmail at <a hr=
  256. ef=3D"http://www.hotmail.com">http://www.hotmail.com</a>.<br></p>
  257.  
  258. - ------=_NextPart_001_0000_01C0DD5B.BFB8DDE0
  259. Content-Type: text/html; charset="iso-8859-1"
  260. Content-Transfer-Encoding: quoted-printable
  261.  
  262. <HTML><BODY STYLE=3D"font:10pt verdana; border:none;"><DIV>> Some astr=
  263. onomers have suggested that dark matter might be located in<BR>> (and =
  264. I love this term) MACHOS (MAssive Cometary Halo ObjectS).  That<BR>&=
  265. gt; is, really, really big snowballs.  With rocks in them.  ;-)=
  266. <BR></DIV> <DIV>MAssive Compact Halo Objects, actually. And besides comet=
  267. oids, they can be rogue planets, brown dwarfs, no-longer-luminous collaps=
  268. ed stars (cooled white dwarf, cooled neutron star, black hole far from ot=
  269. her mass).</DIV> <DIV> </DIV> <DIV>Also, the mainstream, inflationar=
  270. y cosmology requires some non-baryonic dark matter.</DIV> <DIV> </DI=
  271. V> <DIV>Incidentally, wouldn't it be a hoot if globular clusters turned o=
  272. ut to be *artifacts*? Think of it -- scads of energy, and if they have no=
  273.  or slow FTL (e.g. weeks to cross a light year) their systems are all clo=
  274. se together. Massive engineering feat though. Now, you know what would be=
  275.  even more impressive? If some ubercivilizations have locked up their glo=
  276. bular clusters in dyson shells. Makes the usual dyson shell look like a s=
  277. hanty on the side of the highway by comparison. And the result is dark ma=
  278. tter, with maybe the odd infrared glow somewhere.</DIV> <DIV> </DIV>=
  279.  <DIV>Intriguingly, these clusters are in slow gravitational collapse. An=
  280.  interesting possibility is that this is what someone did in order to ope=
  281. n wormholes for intergalactic travel... the stars fall into the center, s=
  282. ome gravitational magic, presto! Open a bridge to Andromeda. Anyone doing=
  283.  something like that takes a *looong* view. Probably have to be uploads t=
  284. hen.</DIV></BODY></HTML><DIV><BR><br clear=3Dall><hr>Get Your Private, Fr=
  285. ee E-mail from MSN Hotmail at <a href=3D"http://www.hotmail.com">http://w=
  286. ww.hotmail.com</a>.<br></p></DIV>
  287.  
  288. - ------=_NextPart_001_0000_01C0DD5B.BFB8DDE0--
  289.  
  290. - --------------------------------------------------------------
  291. Thanks for using Fractint, The Fractals and Fractint Discussion List
  292. Post Message:   fractint@lists.xmission.com
  293. Get Commands:   majordomo@lists.xmission.com "help"
  294. Administrator:  twegner@fractint.org
  295. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  296.  
  297. - --------------------------------------------------------------
  298. Thanks for using Fractint, The Fractals and Fractint Discussion List
  299. Post Message:   fractint@lists.xmission.com
  300. Get Commands:   majordomo@lists.xmission.com "help"
  301. Administrator:  twegner@fractint.org
  302. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  303.  
  304. ------------------------------
  305.  
  306. Date: Tue, 15 May 2001 17:41:08 -0400
  307. From: "Multiple Bogeys" <neo_1061@hotmail.com>
  308. Subject: Re: (fractint) C-FOTD 08-05-01 (A Riot of Color [6])
  309.  
  310. - ------=_NextPart_001_0003_01C0DD66.39CB4780
  311. Content-Type: text/plain; charset="iso-8859-1"
  312. Content-Transfer-Encoding: quoted-printable
  313.  
  314. >Classic FOTD -- May 08, 2001 (Rating 6)
  315.                                                      ^
  316. You misspelled '8'.
  317.  
  318. Keep up the good work! :-)<br clear=3Dall><hr>Get Your Private, Free E-ma=
  319. il from MSN Hotmail at <a href=3D"http://www.hotmail.com">http://www.hotm=
  320. ail.com</a>.<br></p>
  321.  
  322. - ------=_NextPart_001_0003_01C0DD66.39CB4780
  323. Content-Type: text/html; charset="iso-8859-1"
  324. Content-Transfer-Encoding: quoted-printable
  325.  
  326. <HTML><BODY STYLE=3D"font:10pt verdana; border:none;"><DIV>>Classic FO=
  327. TD -- May 08, 2001 (Rating 6)<BR>      &nbs=
  328. p;            =
  329. ;            =
  330.             &=
  331. nbsp;         ^</DIV> <DIV>Y=
  332. ou misspelled '8'.</DIV> <DIV> </DIV> <DIV>Keep up the good work! :-=
  333. )</DIV></BODY></HTML><DIV><BR><br clear=3Dall><hr>Get Your Private, Free =
  334. E-mail from MSN Hotmail at <a href=3D"http://www.hotmail.com">http://www.=
  335. hotmail.com</a>.<br></p></DIV>
  336.  
  337. - ------=_NextPart_001_0003_01C0DD66.39CB4780--
  338.  
  339. - --------------------------------------------------------------
  340. Thanks for using Fractint, The Fractals and Fractint Discussion List
  341. Post Message:   fractint@lists.xmission.com
  342. Get Commands:   majordomo@lists.xmission.com "help"
  343. Administrator:  twegner@fractint.org
  344. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  345.  
  346. - --------------------------------------------------------------
  347. Thanks for using Fractint, The Fractals and Fractint Discussion List
  348. Post Message:   fractint@lists.xmission.com
  349. Get Commands:   majordomo@lists.xmission.com "help"
  350. Administrator:  twegner@fractint.org
  351. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  352.  
  353. ------------------------------
  354.  
  355. Date: Fri, 18 May 2001 12:52:03 +0200
  356. From: =?iso-8859-1?Q?Francisco_Andeyro_Garc=EDa?= <arkion@arkion.es>
  357. Subject: (fractint) ...another little... doubt...
  358.  
  359. ...it works much better with your help...
  360.  
  361. Thanks to George Martin and Guy Marson...
  362.  
  363. Now i have another doubt. I'm doing some research in graphic cryptography
  364. with a kind of automata developed by me. It generates beautifull images
  365. similar to fractals... but i never know if it can be considered as fractal
  366. or not...
  367.  
  368. I supose, it is fractal, because it generates images with similar patterns
  369. at diferent scale... and it do it with an algorithm that is not very
  370. diferent from a Langton ant, or cellular automatas...(not also very very
  371. similar, but not too diferent).
  372.  
  373. All technical info, and images are avaible at my web:
  374.  
  375. http://www.arkion.es
  376.  
  377. ...it would be nice to know what you all think about it...
  378.  
  379. Thanks in advance.
  380.  
  381. Francisco Andeyro
  382.  
  383.  
  384.  
  385. This formula lacks the "bailout" line at the end. Also, you do not need
  386. a separate variable (z0) in the initialization. Finally, the initialization
  387. section should be separated from the main body of the formula with a ":".
  388. The complete formula
  389.  
  390. Mandelbrot {
  391. z = c = pixel:
  392. z = z*z + c
  393. |z| < 4
  394. }
  395.  
  396. George Martin
  397.  
  398.  
  399.  
  400.  
  401. - --------------------------------------------------------------
  402. Thanks for using Fractint, The Fractals and Fractint Discussion List
  403. Post Message:   fractint@lists.xmission.com
  404. Get Commands:   majordomo@lists.xmission.com "help"
  405. Administrator:  twegner@fractint.org
  406. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  407.  
  408.  
  409. - --------------------------------------------------------------
  410. Thanks for using Fractint, The Fractals and Fractint Discussion List
  411. Post Message:   fractint@lists.xmission.com
  412. Get Commands:   majordomo@lists.xmission.com "help"
  413. Administrator:  twegner@fractint.org
  414. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  415.  
  416. ------------------------------
  417.  
  418. Date: Fri, 18 May 2001 09:12:44 -0400 (EDT)
  419. From: Jim Muth <jamth@mindspring.com>
  420. Subject: (fractint) C-FOTD  18-05-01  (Too Much of It All [4])
  421.  
  422. Classic FOTD -- May 18, 2001 (Rating 4)
  423.  
  424. Fractal visionaries and enthusiasts:
  425.  
  426. Today's FOTD rates a modest 4, which is a little below average.  
  427. The rating is this low because the image has too much of 
  428. everything.  To begin, the parameter file takes over 3 hours to 
  429. render, which is far too much time for an image of such 
  430. questionable worth.  I would strongly recommend letting Paul and 
  431. Scott do the rendering.  When they have done the work, the image 
  432. will be available in a few hours on their FOTD web sites at:
  433.  
  434.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  435.  
  436. and at:
  437.  
  438.           <http://sdboyd.dyndns.org/~sdboyd/fotd/index.html>
  439.  
  440. Why did I choose a mediocre 3-hour image to be today's FOTD?  
  441. The answer is simple -- at first I thought it would be a prize-
  442. winner.  The 1/10-size thumbnail, which took 18 minutes to 
  443. render, looked spectacular with a different color palette.  But 
  444. when the full-size image was finished, it fell far short of its 
  445. promise.  The original palette, which looked so good on a small 
  446. size image, didn't work at all with the full-sized version, and 
  447. the image just wouldn't look right regardless of how much I 
  448. tweaked the colors.  Eventually, I discarded the original colors 
  449. and substituted the present palette.
  450.  
  451. The image is a difficult one to color because it has too much 
  452. detail.  The colors just don't blend pleasingly.  And when the 
  453. colors do blend, the detail vanishes.  A great fractal may lie 
  454. hidden in the image, waiting only for a clever color scheme to 
  455. reveal it, but the image is simply too slow to try the various 
  456. rendering options.
  457.  
  458. I named the image "Too Much of It All", which is an honest 
  459. description of my feelings about the image.  I found the scene 
  460. when I did a little extra exploring of the "Pooped-Out" fractal 
  461. of 3 days ago -- a fractal filled with unusual places just 
  462. waiting to be discovered.
  463.  
  464. In addition to iterated numbers, the weather is fractal in 
  465. nature.  Today, it was cloudy and chilly, with a temperature of 
  466. 63F (17C).  The cats, who are also fractal, decided it was a bit 
  467. too cold, and were outdoors only a few minutes.  But they were 
  468. in an unusually pleasant mood for an indoor day.
  469.  
  470. I'm waxing philosophical, but the wall clock tells me that the 
  471. day is young and there's a lot to be done.  The time has come to 
  472. post my FOTD and get busy.  Until next time, take care, and with 
  473. an infinity of midgets waiting to be discovered, the chance of 
  474. any given midget being discovered is zero.  Yet midgets are in 
  475. fact discovered.
  476.  
  477.  
  478. Jim Muth
  479. jamth@mindspring.com
  480.  
  481.  
  482. START 20.0 PAR-FORMULA FILE================================
  483.  
  484. Too_Much_of_It_All { ; time=3:05:48.77--SF5 on a P200
  485.   reset=2001 type=formula formulafile=allinone.frm
  486.   formulaname=MandelbrotMix4 function=recip passes=1
  487.   center-mag=+0.0154933047329414/-0.0137267362945872\
  488.   /6.480949e+008/1/10 params=1/0.7/-1/-0.7/-4.5/5000
  489.   float=y maxiter=36000 inside=0
  490.   logmap=-2263 periodicity=10
  491.   colors=000c0zc0zc0zc0zc0zc1zZ3zZ6zZ7zU9zUAwUDrUFmU\
  492.   GhUJdULgUMjUOmUQpPSrKTuFXxAYz0_z0`z0_z0Yy0Xx0Vu0Tr\
  493.   0Sp0Qm0Pj0Oi0Of0Mc0La0J_0IX0GV0FS0DP0CO0AL0000CL4C\
  494.   L9CMFCMJCOOCOTCPYCPaDPgDQlDQpDSvDSzDTzDTzDTzJPzOLz\
  495.   SGzYCza7zf3zl0zp0zu0zy0zu0zr6ugGpTQjF`f0jd0md7pVFd\
  496.   XTfYggYvi_zi`zj`zlazlczmczodzodzpfzrgzrgzsizujzujz\
  497.   vlzxmzxmzzozzozzlzzjzzgvzfrzdmzaiz`dzY`zXXzVSzSOzQ\
  498.   JzPFzMGzLGzJGzIIzFIzDIzCJzAJz7Jz6Jz4Lz3Lz0Lz0Mz0Mz\
  499.   0Mz0MzFAzF0zF0zF0zF0zF0zF0zF0zF0zF0zF0zF0zF0zF0zF1\
  500.   zF3zF3zF4zD4z96z67z37z09z09z0Dz0Gz0Lz0Oz0Qz0Xz0az0\
  501.   gv1mo1sg1y`jxTauMVrFMo9Fv47z03z10z30z40z60z70z60z4\
  502.   0z40z31z34z17z1Az0Dz0Gz0Jz0Mz0Pz0Sz0Vz0Yz0`z0cz0fz\
  503.   0iz0lz0mz0jz0iz0gz0fz1cz4az6`z9_zCYzFVzITzLSzMQzPO\
  504.   zSMzVLzYJz`IzaDz_AzY7zX4zV1zT0zS0zQ0zS1zT4zT7zVAzX\
  505.   DzXFzYIz_Lz_Oz`QzaTzaXzcYzd`zdczffzgizglziozjpzjjz\
  506.   gdzf_zcTzaCz9Dz9FzAFzAGzA
  507.   }
  508.  
  509. frm:MandelbrotMix4 {; Jim Muth
  510. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  511. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  512. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  513. z=k*((a*(z^b))+(d*(z^f)))+c,
  514. |z| < l
  515. }
  516.  
  517. END 20.0 PAR-FORMULA FILE==================================
  518.  
  519.  
  520. - --------------------------------------------------------------
  521. Thanks for using Fractint, The Fractals and Fractint Discussion List
  522. Post Message:   fractint@lists.xmission.com
  523. Get Commands:   majordomo@lists.xmission.com "help"
  524. Administrator:  twegner@fractint.org
  525. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  526.  
  527. ------------------------------
  528.  
  529. Date: Thu, 17 May 2001 13:29:50 -0400
  530. From: George Martin <GGMARTIN@compuserve.com>
  531. Subject: (fractint) Hi, little problem with first formulas...
  532.  
  533. MandelPrueba {;Quicote
  534. z0=3Dc=3Dpixel
  535. z=3Dz*z+c
  536. }
  537.  
  538. This formula lacks the "bailout" line at the end. Also, you do not need =
  539.  
  540. a separate variable (z0) in the initialization. Finally, the initializati=
  541. on
  542. section should be separated from the main body of the formula with a ":".=
  543.  
  544. The complete formula
  545.  
  546. Mandelbrot {
  547. z =3D c =3D pixel:
  548. z =3D z*z + c
  549. |z| < 4
  550. }
  551.  
  552. George Martin  =
  553.  
  554.  
  555. - --------------------------------------------------------------
  556. Thanks for using Fractint, The Fractals and Fractint Discussion List
  557. Post Message:   fractint@lists.xmission.com
  558. Get Commands:   majordomo@lists.xmission.com "help"
  559. Administrator:  twegner@fractint.org
  560. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  561.  
  562. - --------------------------------------------------------------
  563. Thanks for using Fractint, The Fractals and Fractint Discussion List
  564. Post Message:   fractint@lists.xmission.com
  565. Get Commands:   majordomo@lists.xmission.com "help"
  566. Administrator:  twegner@fractint.org
  567. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  568.  
  569. ------------------------------
  570.  
  571. Date: Tue, 15 May 2001 10:50:11 -0400
  572. From: "Multiple Bogeys" <neo_1061@hotmail.com>
  573. Subject: Re: (fractint) Re: C-FOTD 22-04-01
  574.  
  575. - ------=_NextPart_001_0006_01C0DD2C.D2434F60
  576. Content-Type: text/plain; charset="iso-8859-1"
  577. Content-Transfer-Encoding: quoted-printable
  578.  
  579. >Rambling story, flying heads, men in diapers, topless women -- it has ev=
  580. erything.
  581.  
  582. Topless women? In the Wizard of Oz?! Someone is spinning in his/her grave=
  583. .
  584.  
  585. Decent old sci-fi movies I've seen:
  586. The Fly and friends (the three old ones, not the 80s remakes -- those are=
  587.  good too but not *old*!)
  588. 2001 (a bit slow in places)
  589. A Crack in the World (cheesy, I know)
  590. Forbin: The Colossus Project (parts of it suck, but the rest...)
  591. Star Wars: ANH(!)
  592. The Terminal Man
  593. The Andromeda Strain
  594. Decent 80s:
  595. Tron
  596. 2010
  597. Anything Short Circuit
  598. Star Wars: ESB, ROJ
  599. Star Trek: TMP (a bit slow in places)
  600. Star Trek 2, 4, 6(? -- might have been early 90s)
  601. Starman, Last Starfighter, assorted other Starfoo
  602. Moonraker (hey, it had a freaking big [and unrealistic] space station!)
  603. Assorted Superman movies and spinoffs (why the *hell* did they stop makin=
  604. g these?)
  605. The Fly (1985 remake) and probably its sequel (which I've never managed t=
  606. o see)
  607. Back to the Freaking Future! (and sequels -- let's see if these b*stards =
  608. can do 90!)
  609. Cocoon and sequels, *Batteries Not Included (oh, crap, I'm turning into a=
  610.  sap!)
  611. John Carpenter's Village of the Damned (or was that late 70s?)
  612. Original shrunk the kids (the sequels sucked, and the TV show blows)
  613. Decent modern ones:
  614. Phantom Menace (duh)
  615. Mission to Mars (ymmv)
  616. Stargate (obscure; the TV show rocks too and is still in production), ID4
  617. Armageddon, Deep Impact (so the science in Armageddon sucked. It was stil=
  618. l fun.)
  619. Jurassic Park (but the sequel sucked)
  620. Goldeneye (hey, it had funky nuclear weapons!)
  621. X-Men
  622. Lost In Space
  623. Any recent Star Trek movie (with Picard and crew!) -- especially the ones=
  624.  with the azz-kicking Enterprise E.
  625. Especially the last one. Any film that depicts an older woman as desirabl=
  626. e gets bonus points.
  627. Special edition Star Wars ROJ and ANH!
  628. Aliens (nice explosion near the end -- too bad the sequel sucked. The pre=
  629. quel is too old for this list.)
  630. The Abyss (often overlooked, *cool* music)
  631. Sphere (It *did* come from the Creighton-meister)
  632. Event Horizon (Not for the faint of heart -- if you use nitroglycerine fo=
  633. r something other than blowing things up,
  634.                     I recommend Aliens instead. J/k...)
  635. Starship Troopers (WARNING: Take one (1) Pepto-Bismol before viewing. Avo=
  636. id viewing in an aircraft, motor vehicle,
  637.                          elevator, ship*, or other moving vehicle, or dur=
  638. ing an earthquake. Avoid viewing while on a waterbed. =20
  639.                          Keep a pail handy, preferably one that is easy t=
  640. o wash.
  641.                          *Spacecraft are an exception, except during an e=
  642. ngine burn.)
  643. Recent ones I haven't seen, but that look good:
  644. Supernova
  645. Red Planet (not to confuse with Mission to Mars)
  646. Alien 4
  647. Titan: AE(!)
  648. DVD special edition version of ST:TMP (obscure)
  649. Less sure about:
  650. Deep Blue Sea
  651. Battlefield: Earth
  652. Up-and-coming and guaranteed good:
  653. Star Wars II (duh)
  654. Star Trek X (duh)
  655. Star Wars III (don't hold your breath)
  656. Rumored:
  657. A Matrix sequel or prequel (*drool*)
  658.  
  659. DVD Recommended due to digital FX and widescreen:
  660. Star Trek 9 (duh)
  661. Phantom Menace (duh! don't have it but it *has* to rock!)
  662. The Matrix (check out the whole last third -- also loads of extras on the=
  663.  disk)
  664. Armageddon (if you hate the Eiffel Tower you'll love the DVD version of t=
  665. his)
  666. Deep Impact (probably; don't have it)
  667. Star Wars: ANH, ROJ -- the explosion of the ROJ Death Star really suffers=
  668.  on pan-and-scan, although the pan-and-scan
  669.                                  version of the sail barge explosion scen=
  670. e is more impressive because of the dramatic panning!
  671. ID4 (duh! the small screen really wrecks the impressive alien ship arriva=
  672. l scene! then there's the massive fights, explosions,
  673.      &c)
  674. Stargate (probably; don't have it)
  675. Supernova and Titan: AE (probably; don't have either on DVD or VHS)
  676.  
  677.  
  678. Stuff that sucked:
  679. The Food of the Gods
  680. The Day of the Triffids (a crying shame; the book rocks)
  681. Any of several bad Frankenstein rip-offs from the 60s, 70s, and 80s
  682. Any of several bad Dracula rip-offs from the 60s, 70s, and 80s*
  683. Asteroid! (this one made Armageddon look scientifically accurate!)
  684.  
  685. * RHPS excluded, special exemption
  686.  
  687. OK:
  688. Screamers
  689. Downdraft
  690. Star Trek 3, 5
  691. Space Cowboys
  692. The Arrival
  693. The Arrival II (probably -- got a DVD of it, but haven't gotten around to=
  694.  viewing it yet)
  695.  
  696. Good spoofs:
  697. Spaceballs!
  698. Galaxy Quest
  699. The Zero Wing flash animation(!)*
  700.  
  701. The movie was good but the book sucked:
  702. * Several of the Star Trek movies
  703.  
  704.  
  705.  
  706. * Someone set up us the Zerowing reference!<br clear=3Dall><hr>Get Your P=
  707. rivate, Free E-mail from MSN Hotmail at <a href=3D"http://www.hotmail.com=
  708. ">http://www.hotmail.com</a>.<br></p>
  709.  
  710. - ------=_NextPart_001_0006_01C0DD2C.D2434F60
  711. Content-Type: text/html; charset="iso-8859-1"
  712. Content-Transfer-Encoding: quoted-printable
  713.  
  714. <HTML><BODY STYLE=3D"font:10pt verdana; border:none;"><DIV>>Rambling s=
  715. tory, flying heads, men in diapers, topless women -- it has everything.</=
  716. DIV> <DIV> </DIV> <DIV>Topless women? In the Wizard of Oz?! Someone =
  717. is spinning in his/her grave.</DIV> <DIV> </DIV> <DIV>Decent old sci=
  718. - -fi movies I've seen:</DIV> <DIV>The Fly and friends (the three old ones,=
  719.  not the 80s remakes -- those are good too but not *old*!)</DIV> <DIV>200=
  720. 1 (a bit slow in places)</DIV> <DIV>A Crack in the World (cheesy, I know)=
  721. </DIV> <DIV>Forbin: The Colossus Project (parts of it suck, but the rest.=
  722. ..)</DIV> <DIV>Star Wars: ANH(!)</DIV> <DIV>The Terminal Man</DIV> <DIV>T=
  723. he Andromeda Strain</DIV> <DIV>Decent 80s:</DIV> <DIV> <DIV>Tron</DIV> <D=
  724. IV>2010</DIV>Anything Short Circuit</DIV> <DIV>Star Wars: ESB, ROJ</DIV> =
  725. <DIV>Star Trek: TMP (a bit slow in places)</DIV> <DIV>Star Trek 2, 4, 6(?=
  726.  -- might have been early 90s)</DIV> <DIV>Starman, Last Starfighter, asso=
  727. rted other Starfoo</DIV> <DIV>Moonraker (hey, it had a freaking big [and =
  728. unrealistic] space station!)</DIV> <DIV>Assorted Superman movies and spin=
  729. offs (why the *hell* did they stop making these?)</DIV> <DIV>The Fly (198=
  730. 5 remake) and probably its sequel (which I've never managed to see)</DIV>=
  731.  <DIV>Back to the Freaking Future! (and sequels -- let's see if these b*s=
  732. tards can do 90!)</DIV> <DIV>Cocoon and sequels, *Batteries Not Included =
  733. (oh, crap, I'm turning into a sap!)</DIV> <DIV>John Carpenter's Village o=
  734. f the Damned (or was that late 70s?)</DIV> <DIV>Original shrunk the kids =
  735. (the sequels sucked, and the TV show blows)</DIV> <DIV>Decent modern=
  736.  ones:</DIV> <DIV>Phantom Menace (duh)</DIV> <DIV>Mission to Mars (ymmv)<=
  737. /DIV> <DIV>Stargate (obscure; the TV show rocks too and is still in produ=
  738. ction), ID4</DIV> <DIV>Armageddon, Deep Impact (so the science in Armaged=
  739. don sucked. It was still fun.)</DIV> <DIV>Jurassic Park (but the sequel s=
  740. ucked)</DIV> <DIV>Goldeneye (hey, it had funky nuclear weapons!)</DIV> <D=
  741. IV>X-Men</DIV> <DIV>Lost In Space</DIV> <DIV>Any recent Star Trek movie (=
  742. with Picard and crew!) -- especially the ones with the azz-kicking Enterp=
  743. rise E.</DIV> <DIV>Especially the last one. Any film that depicts an olde=
  744. r woman as desirable gets bonus points.</DIV> <DIV>Special edition Star W=
  745. ars ROJ and ANH!</DIV> <DIV>Aliens (nice explosion near the end -- too ba=
  746. d the sequel sucked. The prequel is too old for this list.)</DIV> <DIV>Th=
  747. e Abyss (often overlooked, *cool* music)</DIV> <DIV>Sphere (It *did* come=
  748.  from the Creighton-meister)</DIV> <DIV>Event Horizon (Not for the faint =
  749. of heart -- if you use nitroglycerine for something other than blowing th=
  750. ings up,</DIV> <DIV>         =
  751. ;           I recommend=
  752.  Aliens instead. J/k...)</DIV> <DIV>Starship Troopers (WARNING: Take one =
  753. (1) Pepto-Bismol before viewing. Avoid viewing in an aircraft, motor vehi=
  754. cle,</DIV> <DIV>         &nb=
  755. sp;           &nbs=
  756. p;   elevator, ship*, or other moving vehicle, or during an ear=
  757. thquake. Avoid viewing while on a waterbed. </DIV> <DIV>   =
  758. ;            =
  759.           Keep a pail handy,=
  760.  preferably one that is easy to wash.</DIV> <DIV>    =
  761.             &=
  762. nbsp;        *Spacecraft are an e=
  763. xception, except during an engine burn.)</DIV> <DIV>Recent ones I haven't=
  764.  seen, but that look good:</DIV> <DIV>Supernova</DIV> <DIV>Red Planet (no=
  765. t to confuse with Mission to Mars)</DIV> <DIV>Alien 4</DIV> <DIV>Titan: A=
  766. E(!)</DIV> <DIV>DVD special edition version of ST:TMP (obscure)</DIV> <DI=
  767. V>Less sure about:</DIV> <DIV>Deep Blue Sea</DIV> <DIV>Battlefield: Earth=
  768. </DIV> <DIV>Up-and-coming and guaranteed good:</DIV> <DIV>Star Wars II (d=
  769. uh)</DIV> <DIV>Star Trek X (duh)</DIV> <DIV>Star Wars III (don't hol=
  770. d your breath)</DIV> <DIV>Rumored:</DIV> <DIV>A Matrix sequel or prequel =
  771. (*drool*)</DIV> <DIV> </DIV> <DIV>DVD Recommended due to digital FX =
  772. and widescreen:</DIV> <DIV>Star Trek 9 (duh)</DIV> <DIV>Phantom Menace (d=
  773. uh! don't have it but it *has* to rock!)</DIV> <DIV>The Matrix (check out=
  774.  the whole last third -- also loads of extras on the disk)</DIV> <DIV>Arm=
  775. ageddon (if you hate the Eiffel Tower you'll love the DVD version of this=
  776. )</DIV> <DIV>Deep Impact (probably; don't have it)</DIV> <DIV>Star Wars: =
  777. ANH, ROJ -- the explosion of the ROJ Death Star really suffers on pan-and=
  778. - -scan, although the pan-and-scan</DIV> <DIV>     =
  779. ;            =
  780.             &=
  781. nbsp;   version of the sail barge explosion scene is more impre=
  782. ssive because of the dramatic panning!</DIV> <DIV>ID4 (duh! the smal=
  783. l screen really wrecks the impressive alien ship arrival scene! then ther=
  784. e's the massive fights, explosions,</DIV> <DIV>     &=
  785. amp;c)</DIV> <DIV>Stargate (probably; don't have it)</DIV> <DIV>Supernova=
  786.  and Titan: AE (probably; don't have either on DVD or VHS)</DIV> <DIV>&nb=
  787. sp;</DIV> <DIV> </DIV> <DIV>Stuff that sucked:</DIV> <DIV>The Food o=
  788. f the Gods</DIV> <DIV>The Day of the Triffids (a crying shame; the book r=
  789. ocks)</DIV> <DIV>Any of several bad Frankenstein rip-offs from the 60s, 7=
  790. 0s, and 80s</DIV> <DIV> <DIV>Any of several bad Dracula rip-offs from the=
  791.  60s, 70s, and 80s*</DIV> <DIV>Asteroid! (this one made Armageddon look s=
  792. cientifically accurate!)</DIV> <DIV> </DIV> <DIV>* RHPS excluded, sp=
  793. ecial exemption</DIV> <DIV> </DIV></DIV> <DIV>OK:</DIV> <DIV>Screame=
  794. rs</DIV> <DIV>Downdraft</DIV> <DIV>Star Trek 3, 5</DIV> <DIV>Space Cowboy=
  795. s</DIV> <DIV>The Arrival</DIV> <DIV>The Arrival II (probably -- got a DVD=
  796.  of it, but haven't gotten around to viewing it yet)</DIV> <DIV> </D=
  797. IV> <DIV>Good spoofs:</DIV> <DIV>Spaceballs!</DIV> <DIV>Galaxy Quest</DIV=
  798. > <DIV>The Zero Wing flash animation(!)*</DIV> <DIV> </DIV> <DIV>The=
  799.  movie was good but the book sucked:</DIV> <DIV>* Several of the Star Tre=
  800. k movies</DIV> <DIV> </DIV> <DIV> </DIV> <DIV> </DIV> <DIV=
  801. >* Someone set up us the Zerowing reference!</DIV></BODY></HTML><DIV><BR>=
  802. <br clear=3Dall><hr>Get Your Private, Free E-mail from MSN Hotmail at <a =
  803. href=3D"http://www.hotmail.com">http://www.hotmail.com</a>.<br></p></DIV>
  804.  
  805. - ------=_NextPart_001_0006_01C0DD2C.D2434F60--
  806.  
  807. - --------------------------------------------------------------
  808. Thanks for using Fractint, The Fractals and Fractint Discussion List
  809. Post Message:   fractint@lists.xmission.com
  810. Get Commands:   majordomo@lists.xmission.com "help"
  811. Administrator:  twegner@fractint.org
  812. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  813.  
  814. - --------------------------------------------------------------
  815. Thanks for using Fractint, The Fractals and Fractint Discussion List
  816. Post Message:   fractint@lists.xmission.com
  817. Get Commands:   majordomo@lists.xmission.com "help"
  818. Administrator:  twegner@fractint.org
  819. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  820.  
  821. ------------------------------
  822.  
  823. Date: Tue, 15 May 2001 11:02:20 -0400
  824. From: "Multiple Bogeys" <neo_1061@hotmail.com>
  825. Subject: Re: (fractint) C-FOTD 02-05-01 (Heads Up Mister Midget [7])
  826.  
  827. - ------=_NextPart_001_0007_01C0DD2E.83F9E380
  828. Content-Type: text/plain; charset="iso-8859-1"
  829. Content-Transfer-Encoding: quoted-printable
  830.  
  831. >Although it has only 256 colors, the bands are almost
  832. >invisible, resulting in a GIF image as close to the appearance
  833. >of true-color as one is likely to see.
  834.  
  835. The neighborhood optometrist is your friend.
  836.  
  837. Seriously, I can perceive every contour into the purple area. Looks like =
  838. "true-color" is a *slight* exaggeration :)<br clear=3Dall><hr>Get Your Pr=
  839. ivate, Free E-mail from MSN Hotmail at <a href=3D"http://www.hotmail.com"=
  840. >http://www.hotmail.com</a>.<br></p>
  841.  
  842. - ------=_NextPart_001_0007_01C0DD2E.83F9E380
  843. Content-Type: text/html; charset="iso-8859-1"
  844. Content-Transfer-Encoding: quoted-printable
  845.  
  846. <HTML><BODY STYLE=3D"font:10pt verdana; border:none;"><DIV>>Although i=
  847. t has only 256 colors, the bands are almost<BR>>invisible, resulting i=
  848. n a GIF image as close to the appearance<BR>>of true-color as one is l=
  849. ikely to see.</DIV> <DIV> </DIV> <DIV>The neighborhood optometrist i=
  850. s your friend.</DIV> <DIV> </DIV> <DIV>Seriously, I can perceive eve=
  851. ry contour into the purple area. Looks like "true-color" is a *slight* ex=
  852. aggeration :)</DIV> <DIV> </DIV> <DIV></DIV></BODY></HTML><DIV><BR><=
  853. br clear=3Dall><hr>Get Your Private, Free E-mail from MSN Hotmail at <a h=
  854. ref=3D"http://www.hotmail.com">http://www.hotmail.com</a>.<br></p></DIV>
  855.  
  856. - ------=_NextPart_001_0007_01C0DD2E.83F9E380--
  857.  
  858. - --------------------------------------------------------------
  859. Thanks for using Fractint, The Fractals and Fractint Discussion List
  860. Post Message:   fractint@lists.xmission.com
  861. Get Commands:   majordomo@lists.xmission.com "help"
  862. Administrator:  twegner@fractint.org
  863. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  864.  
  865. - --------------------------------------------------------------
  866. Thanks for using Fractint, The Fractals and Fractint Discussion List
  867. Post Message:   fractint@lists.xmission.com
  868. Get Commands:   majordomo@lists.xmission.com "help"
  869. Administrator:  twegner@fractint.org
  870. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  871.  
  872. ------------------------------
  873.  
  874. Date: Sat, 19 May 2001 01:34:55 +0200
  875. From: Guy Marson <guy.marson@mnhn.lu>
  876. Subject: Re: (fractint) ...another little... doubt...
  877.  
  878. Hi Francisco,
  879.  
  880. At 12:52 18/05/01 +0200, you wrote:
  881. >...it works much better with your help...
  882. >
  883. >Thanks to George Martin and Guy Marson...
  884. >
  885. >Now i have another doubt. I'm doing some research in graphic cryptography
  886. >with a kind of automata developed by me. It generates beautifull images
  887. >similar to fractals... but i never know if it can be considered as fractal
  888. >or not...
  889.  
  890. to get a good definition of fractals, please read the "fractint.doc"
  891. generated by fractint.exe itself when entering the following on the command
  892. line: 'fractint makedoc'. For a better understanding please read the
  893. "Frmtutor" which you can download at :
  894.  
  895. http://www.fractint.org/
  896.  
  897. >
  898. >I supose, it is fractal, because it generates images with similar patterns
  899. >at diferent scale... and it do it with an algorithm that is not very
  900. >diferent from a Langton ant, or cellular automatas...(not also very very
  901. >similar, but not too diferent).
  902. >
  903. >All technical info, and images are avaible at my web:
  904. >
  905. >http://www.arkion.es
  906.  
  907. I will see it later on.. 
  908.  
  909. cheers, 
  910.  
  911. Guy
  912.  
  913.  
  914.  
  915.  
  916. - --------------------------------------------------------------
  917. Thanks for using Fractint, The Fractals and Fractint Discussion List
  918. Post Message:   fractint@lists.xmission.com
  919. Get Commands:   majordomo@lists.xmission.com "help"
  920. Administrator:  twegner@fractint.org
  921. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  922.  
  923. ------------------------------
  924.  
  925. Date: Sat, 19 May 2001 01:34:20 +0200
  926. From: Guy Marson <guy.marson@mnhn.lu>
  927. Subject: Re: (fractint) float only version
  928.  
  929. At 15:33 17/05/01 +0000, you wrote:
  930. >Programmer Dude wrote:
  931. >> 
  932. >> > George Priest wrote:
  933. >> 
  934. >> > Could I install the float-only version in the same directory with the
  935. >> > regular version and rename it something like FractinF?
  936. >> 
  937. >> Well,... you should probably name it "FractFlo"....
  938. >> 
  939.  
  940. Une histoire belge?
  941.  
  942. >
  943. >    what a good idea ! my girl-friend was named Flo !
  944. >    http://la.buvette.org/images/photos/flo.euh
  945. >
  946. >
  947. >-- 
  948. >Thierry, 42++
  949.  
  950. Cheers,
  951.  
  952. Guy
  953.  
  954. - --------------------------------------------------------------
  955. Thanks for using Fractint, The Fractals and Fractint Discussion List
  956. Post Message:   fractint@lists.xmission.com
  957. Get Commands:   majordomo@lists.xmission.com "help"
  958. Administrator:  twegner@fractint.org
  959. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  960.  
  961. ------------------------------
  962.  
  963. Date: Fri, 18 May 2001 09:12:44 -0400 (EDT)
  964. From: Jim Muth <jamth@mindspring.com>
  965. Subject: (fractint) C-FOTD  18-05-01  (Too Much of It All [4])
  966.  
  967. Classic FOTD -- May 18, 2001 (Rating 4)
  968.  
  969. Fractal visionaries and enthusiasts:
  970.  
  971. Today's FOTD rates a modest 4, which is a little below average.  
  972. The rating is this low because the image has too much of 
  973. everything.  To begin, the parameter file takes over 3 hours to 
  974. render, which is far too much time for an image of such 
  975. questionable worth.  I would strongly recommend letting Paul and 
  976. Scott do the rendering.  When they have done the work, the image 
  977. will be available in a few hours on their FOTD web sites at:
  978.  
  979.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  980.  
  981. and at:
  982.  
  983.           <http://sdboyd.dyndns.org/~sdboyd/fotd/index.html>
  984.  
  985. Why did I choose a mediocre 3-hour image to be today's FOTD?  
  986. The answer is simple -- at first I thought it would be a prize-
  987. winner.  The 1/10-size thumbnail, which took 18 minutes to 
  988. render, looked spectacular with a different color palette.  But 
  989. when the full-size image was finished, it fell far short of its 
  990. promise.  The original palette, which looked so good on a small 
  991. size image, didn't work at all with the full-sized version, and 
  992. the image just wouldn't look right regardless of how much I 
  993. tweaked the colors.  Eventually, I discarded the original colors 
  994. and substituted the present palette.
  995.  
  996. The image is a difficult one to color because it has too much 
  997. detail.  The colors just don't blend pleasingly.  And when the 
  998. colors do blend, the detail vanishes.  A great fractal may lie 
  999. hidden in the image, waiting only for a clever color scheme to 
  1000. reveal it, but the image is simply too slow to try the various 
  1001. rendering options.
  1002.  
  1003. I named the image "Too Much of It All", which is an honest 
  1004. description of my feelings about the image.  I found the scene 
  1005. when I did a little extra exploring of the "Pooped-Out" fractal 
  1006. of 3 days ago -- a fractal filled with unusual places just 
  1007. waiting to be discovered.
  1008.  
  1009. In addition to iterated numbers, the weather is fractal in 
  1010. nature.  Today, it was cloudy and chilly, with a temperature of 
  1011. 63F (17C).  The cats, who are also fractal, decided it was a bit 
  1012. too cold, and were outdoors only a few minutes.  But they were 
  1013. in an unusually pleasant mood for an indoor day.
  1014.  
  1015. I'm waxing philosophical, but the wall clock tells me that the 
  1016. day is young and there's a lot to be done.  The time has come to 
  1017. post my FOTD and get busy.  Until next time, take care, and with 
  1018. an infinity of midgets waiting to be discovered, the chance of 
  1019. any given midget being discovered is zero.  Yet midgets are in 
  1020. fact discovered.
  1021.  
  1022.  
  1023. Jim Muth
  1024. jamth@mindspring.com
  1025.  
  1026.  
  1027. START 20.0 PAR-FORMULA FILE================================
  1028.  
  1029. Too_Much_of_It_All { ; time=3:05:48.77--SF5 on a P200
  1030.   reset=2001 type=formula formulafile=allinone.frm
  1031.   formulaname=MandelbrotMix4 function=recip passes=1
  1032.   center-mag=+0.0154933047329414/-0.0137267362945872\
  1033.   /6.480949e+008/1/10 params=1/0.7/-1/-0.7/-4.5/5000
  1034.   float=y maxiter=36000 inside=0
  1035.   logmap=-2263 periodicity=10
  1036.   colors=000c0zc0zc0zc0zc0zc1zZ3zZ6zZ7zU9zUAwUDrUFmU\
  1037.   GhUJdULgUMjUOmUQpPSrKTuFXxAYz0_z0`z0_z0Yy0Xx0Vu0Tr\
  1038.   0Sp0Qm0Pj0Oi0Of0Mc0La0J_0IX0GV0FS0DP0CO0AL0000CL4C\
  1039.   L9CMFCMJCOOCOTCPYCPaDPgDQlDQpDSvDSzDTzDTzDTzJPzOLz\
  1040.   SGzYCza7zf3zl0zp0zu0zy0zu0zr6ugGpTQjF`f0jd0md7pVFd\
  1041.   XTfYggYvi_zi`zj`zlazlczmczodzodzpfzrgzrgzsizujzujz\
  1042.   vlzxmzxmzzozzozzlzzjzzgvzfrzdmzaiz`dzY`zXXzVSzSOzQ\
  1043.   JzPFzMGzLGzJGzIIzFIzDIzCJzAJz7Jz6Jz4Lz3Lz0Lz0Mz0Mz\
  1044.   0Mz0MzFAzF0zF0zF0zF0zF0zF0zF0zF0zF0zF0zF0zF0zF0zF1\
  1045.   zF3zF3zF4zD4z96z67z37z09z09z0Dz0Gz0Lz0Oz0Qz0Xz0az0\
  1046.   gv1mo1sg1y`jxTauMVrFMo9Fv47z03z10z30z40z60z70z60z4\
  1047.   0z40z31z34z17z1Az0Dz0Gz0Jz0Mz0Pz0Sz0Vz0Yz0`z0cz0fz\
  1048.   0iz0lz0mz0jz0iz0gz0fz1cz4az6`z9_zCYzFVzITzLSzMQzPO\
  1049.   zSMzVLzYJz`IzaDz_AzY7zX4zV1zT0zS0zQ0zS1zT4zT7zVAzX\
  1050.   DzXFzYIz_Lz_Oz`QzaTzaXzcYzd`zdczffzgizglziozjpzjjz\
  1051.   gdzf_zcTzaCz9Dz9FzAFzAGzA
  1052.   }
  1053.  
  1054. frm:MandelbrotMix4 {; Jim Muth
  1055. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  1056. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  1057. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  1058. z=k*((a*(z^b))+(d*(z^f)))+c,
  1059. |z| < l
  1060. }
  1061.  
  1062. END 20.0 PAR-FORMULA FILE==================================
  1063.  
  1064.  
  1065. - --------------------------------------------------------------
  1066. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1067. Post Message:   fractint@lists.xmission.com
  1068. Get Commands:   majordomo@lists.xmission.com "help"
  1069. Administrator:  twegner@fractint.org
  1070. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1071.  
  1072. - --------------------------------------------------------------
  1073. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1074. Post Message:   fractint@lists.xmission.com
  1075. Get Commands:   majordomo@lists.xmission.com "help"
  1076. Administrator:  twegner@fractint.org
  1077. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1078.  
  1079. ------------------------------
  1080.  
  1081. End of fractint-digest V1 #564
  1082. ******************************
  1083.  
  1084.