home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / fractint / archive / v01.n131 < prev    next >
Internet Message Format  |  1998-03-13  |  40KB

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #131
  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         Friday, March 13 1998         Volume 01 : Number 131
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Thu, 12 Mar 1998 11:16:37 -0600
  18. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  19. Subject: Re: (fractint) poetry
  20.  
  21. Peter Jakubowicz wrote:
  22. >
  23. > Does anyone know any good poems including the word fractal?
  24. >
  25.  
  26. I don't know if these are "good poems", but here are some links:
  27.  
  28. http://www.op.net/docs/Computer-Songs/puff-fractal.dragon
  29. http://www.matadorrec.com/bands/bunny/poem2.html
  30. http://members.iquest.net/~gtemp/mailliw.htm
  31. http://www.x-net.net/rvissage/atomneye.htm
  32. http://www.ecis.com/~ddragon/poetry.html
  33. http://raven.ubalt.edu/guests/alphaweb/
  34.  
  35.  
  36. They may not contain the word "fractal", but they are fractal related
  37. poems:
  38.  
  39. http://sprott.physics.wisc.edu/sapoem.htm
  40. http://baritone.woodwind.com/change/poetry/gj/fractal/bell.html
  41. http://www.fractal.com/gallery/1995Expo/jpg/A_Poem_of_Air.jpg
  42.  
  43.  
  44. >
  45. > And does anyone know a good rhyme for Sierpinski gasket
  46. >
  47.  
  48. "Aspen Ski Basket"  (http://www.cgifts.com/cgifts/other.html)
  49.  
  50. >
  51. > or Minkowski sausage?
  52. >
  53.  
  54. You've got me there!!
  55.  
  56.  
  57. - -------------------------------------------------
  58.      Why do most folks hate cynics so much?
  59.        Because we're almost always right.
  60. - -------------------------------------------------
  61. http://home.att.net/~Paul.N.Lee/PNL_Fractals.html
  62.  
  63. - -
  64. - ------------------------------------------------------------
  65. Thanks for using Fractint, The Fractals and Fractint Discussion List
  66. Post Message:   fractint@xmission.com
  67. Get Commands:   majordomo@xmission.com "help"
  68. Administrator:  twegner@phoenix.net
  69. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  70.  
  71. ------------------------------
  72.  
  73. Date: Thu, 12 Mar 1998 13:21:24 -0800
  74. From: "Jay Hill" <ehill1@san.rr.com>
  75. Subject: (fractint) Newt6-JAtan-Mset formula
  76.  
  77. Hi Fractintiers,
  78.  
  79. Way back on Sat, 7 Mar 1998 (hundreds of emails ago), 
  80. Paul Carlson gave us Newt5_Atan_Mset, only 4 days after 
  81. Newt3_Atan_Mset. These formula along with suitable color 
  82. maps give use interesting images with five (and three) color 
  83. parts corresponding to the number of roots in the polynomial 
  84. he uses in the Newton iteration. As an experiment in 
  85. learning how to code these formula, I have written a new 
  86. six 'color' formula which uses a sixth degree polynomial. 
  87. I've thrown in an extra parameter which turned out to only 
  88. be a scale factor.  :-(
  89.  
  90. Oh well. This formula was featured in Fractal of the Night 
  91. where Dr. J is seen lost in a mass of Jello looking for his 
  92. Roots.  It was posted to the Fractal-Art list and posted on 
  93. my web site along with a little math discussion. 
  94. http://home.san.rr.com/jayrhill/FotN/FotN61.html
  95.  
  96. I have included here some explorations of this Jello formula. 
  97. Since it features 6 colors, I am using the not too inventive 
  98. primary colors.  It serves me as a 'test pattern' for exploring. 
  99.  
  100. As for my coding of this formula, I have reverted from the 
  101. IF ELSE style since I really get tired of typing so many 
  102. lines :-) but I have a question. Is the IF ELSE style really 
  103. faster in Fractint? It really does not make much difference 
  104. in this formula since the tests are not in the loop. 
  105.  
  106. You will also note another method for getting the angle 
  107. without atan. This is simpler. And I'm sure wizzle will 
  108. like the root formula 
  109.  
  110. R=1-.5*sqrt(5-3*sqrt(5)-sqrt(10*sqrt(5)-50)).  :-) 
  111.  
  112. Enjoy,
  113. Jay
  114.  
  115. frm:Newt6-JAtan-Mset {; (c) Jay R. Hill, 1998
  116.          ; Newton method set up as a Mandelbrot set
  117.          ; This formula searches for 6 roots of a function
  118.          ; Inspired by Paul Carlson's Newt5_Atan_Mset 
  119.   ; p1=precision of root finding, try =.001
  120.   ; p2=A=scaling constant in formula, try =1
  121.   ; F(w)   = w^6 - A*w^5 - w*c + A*c
  122.   ; F'(w)  = 6*w^5 - 5*A*w^4 - c
  123.   ; F''(w) = 30*w^4 - 20*A*w^3
  124.   ; Set F''=0, solve for initial w, 20*A/30 = 2*A/3
  125.   ;
  126.   c = pixel, A=p2, z = iter = bailout = 0
  127.   colors_in_range = 42
  128.   R5=sqrt(5), R=1-.5*sqrt(5-3*R5-sqrt(10*R5-50)), R2=sqr(R)
  129.   root1 = A, root2 = c^.2, root3 = root2*R, root4 = root2*R2
  130.   root5 = root4*R, root6 = root4*R2
  131.   w = 2*A/3
  132.   :
  133.   w4 = w^4
  134.   deltaw=((w*w4 - A*w4 - c)*w + A*c)/(6*w*w4 - 5*A*w4 - c)
  135.   w = w - deltaw
  136.   ;
  137.   IF (|deltaw| < p1)
  138.     angle=abs(imag(log(deltaw)))
  139.     range_num = (|w - root2| < p1)+2*(|w - root3| < p1)+\
  140.       3*(|w - root4| < p1)+4*(|w - root5| < p1)+5*(|w - root6| < p1)
  141.     bailout = 1
  142.     z = colors_in_range*(angle/pi + range_num)-angle/pi + 1
  143.   ENDIF
  144.   iter = iter + 1
  145.   z = z - iter
  146.   bailout == 0
  147. }
  148.  
  149. jn6atnm007         { ; (C) by Jay Hill, 1998
  150.                      ; midget
  151.   reset=1960 type=formula formulafile=n6jatnm.frm
  152.   formulaname=newt6-jatan-mset
  153.   center-mag=+0.99494465952325690/-0.08827380030302825/7423910
  154.   params=1e-005/0/1/0 float=y maxiter=2000 inside=253 outside=summ
  155.   colors=000<41>w00000<40>0w0000<40>00w000<40>ww0000<40>0ww000<40>w0w00000\
  156.   0000 cyclerange=1/250
  157.   }
  158.  
  159. jn6atnm008         { ; (C) by Jay Hill, 1998
  160.                      ; largest midget
  161.   reset=1960 type=formula formulafile=n6jatnm.frm
  162.   formulaname=newt6-jatan-mset center-mag=0.107862/0.741569/9.084302
  163.   params=1e-005/0/1/0 float=y maxiter=2000 inside=253 outside=summ
  164.   colors=000<41>w00000<40>0w0000<40>00w000<40>ww0000<40>0ww000<40>w0w00000\
  165.   0000 cyclerange=1/250
  166.   }
  167.  
  168. jn6atnm009         { ; (C) by Jay Hill, 1998
  169.                       ; Jello Bouquet
  170.   reset=1960 type=formula formulafile=n6jatnm.frm
  171.   formulaname=newt6-jatan-mset center-mag=0.157057/0.734435/41.93936
  172.   params=1e-005/0/1/0 float=y maxiter=2000 inside=253 outside=summ
  173.   colors=000<41>w00000<40>0w0000<40>00w000<40>ww0000<40>0ww000<40>w0w00000\
  174.   0000 cyclerange=1/250
  175.   }
  176.  
  177. jn6atnm010         { ; (C) by Jay Hill, 1998
  178.                      ; Jello Insideout
  179.   reset=1960 type=formula formulafile=n6jatnm.frm
  180.   formulaname=newt6-jatan-mset center-mag=-17.577/-6.81655/0.001
  181.   params=1e-005/0/1/0 float=y maxiter=2000 inside=253 outside=summ
  182.   invert=1/0.18360589655668/0.7416652652787
  183.   colors=000<41>w00000<40>0w0000<40>00w000<40>ww0000<40>0ww000<40>w0w00000\
  184.   0000 cyclerange=1/250
  185.   }
  186.  
  187. jn6atnm011         { ; (C) by Jay Hill, 1998
  188.                      ; largest midget insideout
  189.   reset=1960 type=formula formulafile=n6jatnm.frm
  190.   formulaname=newt6-jatan-mset center-mag=-18.5044/0.709593/0.01514771
  191.   params=1e-005/0/1/0 float=y maxiter=2000 inside=253 outside=summ
  192.   invert=1/0.0212/-0.710605
  193.   colors=000<41>w00000<40>0w0000<40>00w000<40>ww0000<40>0ww000<40>w0w00000\
  194.   0000 cyclerange=1/250
  195.   }
  196.  
  197. jn6atnm012         { ; (C) by Jay Hill, 1998
  198.                      ; largest midget insideout zoomin
  199.   reset=1960 type=formula formulafile=n6jatnm.frm
  200.   formulaname=newt6-jatan-mset center-mag=14.5581/9.95447/0.2593288
  201.   params=1e-005/0/1/0 float=y maxiter=2000 inside=253 outside=summ
  202.   invert=1/0.0212/-0.710605
  203.   colors=000<41>w00000<40>0w0000<40>00w000<40>ww0000<40>0ww000<40>w0w00000\
  204.   0000 cyclerange=1/250
  205.   }
  206.  
  207. jn6atnm013         { ; (C) by Jay Hill, 1998
  208.                      ; Jello Insideout center
  209.   reset=1960 type=formula formulafile=n6jatnm.frm
  210.   formulaname=newt6-jatan-mset center-mag=-15.5745/-8.31905/0.03521127
  211.   params=1e-005/0/1/0 float=y maxiter=2000 inside=253 outside=summ
  212.   invert=1/0.18360589655668/0.7416652652787
  213.   colors=000<41>w00000<40>0w0000<40>00w000<40>ww0000<40>0ww000<40>w0w00000\
  214.   0000 cyclerange=1/250
  215.   }
  216.  
  217.  
  218. - -
  219. - ------------------------------------------------------------
  220. Thanks for using Fractint, The Fractals and Fractint Discussion List
  221. Post Message:   fractint@xmission.com
  222. Get Commands:   majordomo@xmission.com "help"
  223. Administrator:  twegner@phoenix.net
  224. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  225.  
  226. ------------------------------
  227.  
  228. Date: Thu, 12 Mar 1998 17:31:10 -0700
  229. From: Ray Montgomery <elmont@cdsnet.net>
  230. Subject: (fractint) More SSTOOLS
  231.  
  232. Kragen
  233.  
  234.         Thanks for your kind words.  So, finally after much puzzling and
  235. much help from you and other members of my faculty, including wizzle,
  236. gumbycat, Jay Hill (whose site I visited and got the Jack Valero SSTOOLS
  237. guide) and a number of other members who responded to my "Help!" cry, I got
  238. an SSTOOLS.INI file made and in the Fractint directory.  Hope my terminology
  239. is correct.
  240.         Now I don't know how to get into it.  Not thru Windows - it gives me
  241. that drop-down box, "Open the program....where made...etc." or whatever it
  242. says.  So I puzzled.  How do I get to that file from Fractint.  I tried just
  243. about every button in the main-menu, used the F1 and studied the aids there,
  244. finally, on a chance, I tried the 'Shell to DOS' (always wondered what that
  245. meant - still don't know) and there I was in DOS - with an ominous warning,
  246. "We're gonna squish that image you still have tucked away in Fractint, if
  247. you...." but took a chance and, after the name Fractint, I typed  dir and
  248. there was an enormous list of my gifs and just about everything else, AND
  249. TRIUMPH!!! there was my SSTOOLS.INI file.  But, sob, I don't know what to do
  250. with it - how to get into it, if I SHOULD get into it, and whether I can
  251. type into it even if I can get it up on the screen in order to enter these
  252. other things I should have in there.
  253.         Just a little more help and I may be over this hurdle too.  One by one.
  254.         Is there a trick to it?
  255.                 Thanks,                 Ray
  256.  
  257.  
  258. - -
  259. - ------------------------------------------------------------
  260. Thanks for using Fractint, The Fractals and Fractint Discussion List
  261. Post Message:   fractint@xmission.com
  262. Get Commands:   majordomo@xmission.com "help"
  263. Administrator:  twegner@phoenix.net
  264. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  265.  
  266. ------------------------------
  267.  
  268. Date: Thu, 12 Mar 1998 17:14:56 -0800
  269. From: "Jay Hill"<jrhill@nosc.mil>
  270. Subject: Re: (fractint) More SSTOOLS
  271.  
  272. Ray,
  273.  
  274. The sstools.ini file is an ASCII file. You can edit it using edit.
  275.  
  276. In DOS window, type
  277.  
  278. edit sstools.ini
  279.  
  280. at is the old basic editor from DOS.
  281.  
  282. To get a DOS window, from Win 95, click the Microsoft window
  283. (wave thing) button on the 'bar' at the (usually) bottom of the screen.
  284. Then Programs and finally MS-DOS Prompt.
  285.  
  286. use cd C:\fractint   or some such to get to fractint directory.
  287.  
  288. OR you can use other ascii editors like Notepad or my favorite PFE
  289.  
  290. http://www.lancs.ac.uk/people/cpaap/pfe
  291.  
  292. Verson 0.07.002 is out now.
  293.  
  294. Jay
  295.  
  296.  
  297.  
  298. - -
  299. - ------------------------------------------------------------
  300. Thanks for using Fractint, The Fractals and Fractint Discussion List
  301. Post Message:   fractint@xmission.com
  302. Get Commands:   majordomo@xmission.com "help"
  303. Administrator:  twegner@phoenix.net
  304. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  305.  
  306. ------------------------------
  307.  
  308. Date: Thu, 12 Mar 1998 21:27:20 -0500
  309. From: Turner Rentz <treyr@atr.net>
  310. Subject: Re: (fractint) Browser
  311.  
  312. Ray Montgomery wrote:
  313.  
  314. >  To whomever can help.
  315. >                 Is "Netscape" a browser?
  316.  
  317. In the vernacular. Actually, you will see the term applied to a
  318. specialstyle of HTML as opposed to product, when viewed on websites.
  319.  
  320.  
  321. > When I am wandering around looking
  322. > for a particular web-site, or home-page, am I browsing?
  323.  
  324. Wandering aimlessly = wasting bandwidth. Wandering with purpose =
  325. browsing.
  326.  
  327. >  Or is a "BROWSER" a
  328. > different program that must be added to a computer - in other words, a
  329. >
  330. > software option?  Or is it contained in the computer somewhere or
  331. > somewhere
  332. > in Netscape?
  333. >
  334. > Many thanks to those who have helped my previous problems - Wizzle,
  335. > Gumbycat, Bob Carr, Kragen, Bob Margolis, Jay Hill and davides.  I am
  336. > struggling to master all the advice that was given.  Whether mastered
  337. > or
  338. > not, I am nonetheless deeply appreciative.
  339. >
  340. > The Nerve of this guy!
  341. >         Even though I am new to the group I must take issue with those
  342. > who
  343. > say that docs should be read before time is wasted with needless
  344. > questions
  345. > to the list-server group.
  346. >         I have down-loaded perhaps 3/4" of material from Noel Giffens
  347. > Fractint Home page, have faltered through through most of it, admired
  348. > the
  349. > plethora of really outstanding images in those pages, have infinite
  350. > respect
  351. > for the Stone Soup Group who created Fractint and for all others who
  352. > have
  353. > contributed - BUT - surely you can understand that almost all who are
  354. > mightily informed about a subject, and are writing user-manuals and
  355. > documentations of just about any sort, do an awful lot of presuming.
  356. > PRESUMING!  This group presumes you know this, and that group presumes
  357. > you
  358. > know that, and another group presumes you know at least this much
  359. > about
  360. > something else.
  361. >         I've read user manuals of one sort or another, as we all have,
  362. > I'm
  363. > sure, and almost all have been written by experts in their field who
  364. > presume
  365. > you know this, that or the other.  They know it so well, and have
  366. > known it
  367. > for so long that they feel sure you must know "at least this much".
  368. > Well, I
  369. > could go on and persue this much further, but I anticipate some
  370. > negative
  371. > reponses and I don't mean to.  When I was 'teaching' my grand-children
  372. > 'all
  373. > about' the computer, it was a very short time, indeed, before they
  374. > were
  375. > teaching me.  The increase in computer knowlege due to interaction
  376. > amongst
  377. > kids is practically an exponential growth.  I got left behind is all.
  378. >         No I am not whining, nor complaining, nor feeling sorry for
  379. > myself.
  380. > I'm having the greatest time of my life with my new hobby.  I want to
  381. > learn
  382. > and I want to learn more and more but, I can't run over to Jimmy's
  383. > house and
  384. > spend hours with the other computer-kids picking up information.
  385. >         I don't feel that any of the criticism was directed at me, I
  386. > am
  387. > merely expressing an observation.  Do you know that on the spec sheet
  388. > of the
  389. > "USER'S MANUAL" for my computer it does not tell you what the MHz of
  390. > the
  391. > computer is?  How's that for documentation?
  392. >
  393. >         Thanks for listening.
  394. >
  395. > -
  396. > ------------------------------------------------------------
  397. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  398. > Post Message:   fractint@xmission.com
  399. > Get Commands:   majordomo@xmission.com "help"
  400. > Administrator:  twegner@phoenix.net
  401. > Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  402.  
  403.  
  404.  
  405.  
  406. - -
  407. - ------------------------------------------------------------
  408. Thanks for using Fractint, The Fractals and Fractint Discussion List
  409. Post Message:   fractint@xmission.com
  410. Get Commands:   majordomo@xmission.com "help"
  411. Administrator:  twegner@phoenix.net
  412. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  413.  
  414. ------------------------------
  415.  
  416. Date: Thu, 12 Mar 1998 20:30:53 -0600 (CST)
  417. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  418. Subject: (fractint) Some very colorful images
  419.  
  420. This formula and pars produce some very colorful images.
  421.  
  422. Paul Carlson
  423.  
  424. frm:Fnww_Fnc_Mset { ; Copyright (c) Paul W. Carlson, 1998
  425.     ; real(p1) controls elements size (usually 2 to 16))
  426.     ; imag(p1) not used
  427.     ; real(p2) number of color ranges
  428.     ; imag(p2) number of colors in a range
  429.     z = w = iter = range_num = bailout = 0
  430.     c = pixel
  431.     p = p1 + p1
  432.     num_ranges = real(p2)
  433.     colors_in_range = imag(p2)
  434.     colors_in_range_1 = colors_in_range - 1:
  435.     w = fn1(w * w + fn2(c))
  436.     m = |w|
  437.     IF ((p < p1) && (m > p1))
  438.     bailout = 1
  439.     index = colors_in_range_1 * (p1 - p) / p1
  440.     z = index + range_num * colors_in_range + 1
  441.     ENDIF
  442.     p = m
  443.     range_num = range_num + 1
  444.     IF (range_num == num_ranges)
  445.     range_num = 0
  446.     ENDIF
  447.     iter = iter + 1
  448.     z = z - iter
  449.     bailout == 0 && m < 100
  450. }
  451.  
  452. fwwfcm01           { ; Copyright (c) Paul W. Carlson, 1998
  453.   reset=1960 type=formula formulafile=fwwfc.frm
  454.   formulaname=fnww_fnc_mset function=sin/sqr passes=t
  455.   center-mag=-0.87756157353887240/+0.94256597781931740/52.4\
  456.   8149/1/-160 params=16/0/8/30
  457.   float=y maxiter=500 inside=253 outside=summ
  458.   colors=000ph0<5>zz0<12>aG00C4<15>0zR<12>0C40CC<15>0zz<12>0CC0\
  459.   0O<14>FFwGGzFFw<11>00OSA`<14>eNxfOzeNw<10>K2OO08<15>z0f<13>O0\
  460.   8O00<15>z88<12>O00c40<14>xU0zW0yU0<11>c40aG0<8>oe0000<13>000
  461.   }
  462.  
  463. fwwfcm02           { ; Copyright (c) Paul W. Carlson, 1998
  464.   reset=1960 type=formula formulafile=fwwfc.frm
  465.   formulaname=fnww_fnc_mset function=sin/sqr passes=t
  466.   center-mag=-0.87736374111754810/+0.94286409113598650/155.2707/1\
  467.   /-159.999 params=16/0/8/30
  468.   float=y maxiter=500 inside=253 outside=summ
  469.   colors=000ph0<5>zz0<12>aG00C4<15>0zR<12>0C40CC<15>0zz<12>0CC00O<\
  470.   14>FFwGGzFFw<11>00OSA`<14>eNxfOzeNw<10>K2OO08<15>z0f<13>O08O00<1\
  471.   5>z88<12>O00c40<14>xU0zW0yU0<11>c40aG0<8>oe0000<13>000
  472.   }
  473.  
  474. fwwfcm03           { ; Copyright (c) Paul W. Carlson, 1998
  475.   reset=1960 type=formula formulafile=fwwfc.frm
  476.   formulaname=fnww_fnc_mset function=sin/sqr passes=t
  477.   center-mag=+0.32604500552212270/+1.40521485976515300/58757.16/1/\
  478.   127.5 params=16/0/8/30
  479.   float=y maxiter=500 inside=253 outside=summ
  480.   colors=000ph0<5>zz0<12>aG00C4<15>0zR<12>0C40CC<15>0zz<12>0CC00O<\
  481.   14>FFwGGzFFw<11>00OSA`<14>eNxfOzeNw<10>K2OO08<15>z0f<13>O08O00<1\
  482.   5>z88<12>O00c40<14>xU0zW0yU0<11>c40aG0<8>oe0000<13>000
  483.   }
  484.  
  485. fwwfcm04           { ; Copyright (c) Paul W. Carlson, 1998
  486.   reset=1960 type=formula formulafile=fwwfc.frm
  487.   formulaname=fnww_fnc_mset function=sinh/sqr passes=t
  488.   center-mag=+1.69753754995537700/+1.89430853699253900/127634.3/1/85
  489.   params=16/0/8/30
  490.   float=y maxiter=2000 inside=253 outside=summ
  491.   colors=000i55<6>z88<12>O00c40<14>xU0zW0yU0<11>c40aG0<15>zz0<12>aG\
  492.   00C4<15>0zR<12>0C40CC<15>0zz<12>0CC00O<14>FFwGGzFFw<11>00OSA`<14>\
  493.   eNxfOzeNw<10>K2OO08<15>z0f<13>O08O00<7>g44000<13>000
  494.   }
  495.  
  496. fwwfcm05           { ; Copyright (c) Paul W. Carlson, 1998
  497.   reset=1960 type=formula formulafile=fwwfc.frm
  498.   formulaname=fnww_fnc_mset function=cosh/sqr passes=t
  499.   center-mag=-0.72778379323819650/+0.25436409455403570/2546.473/1/-1\
  500.   53.2 params=16/0/8/30
  501.   float=y maxiter=500 inside=253 outside=summ
  502.   colors=000ph0<5>zz0<12>aG00C4<15>0zR<12>0C40CC<15>0zz<12>0CC00O<14>\
  503.   FFwGGzFFw<11>00OSA`<14>eNxfOzeNw<10>K2OO08<15>z0f<13>O08O00<15>z88<\
  504.   12>O00c40<14>xU0zW0yU0<11>c40aG0<8>oe0000<13>000
  505.   }
  506.  
  507.  
  508. - -
  509. - ------------------------------------------------------------
  510. Thanks for using Fractint, The Fractals and Fractint Discussion List
  511. Post Message:   fractint@xmission.com
  512. Get Commands:   majordomo@xmission.com "help"
  513. Administrator:  twegner@phoenix.net
  514. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  515.  
  516. ------------------------------
  517.  
  518. Date: Thu, 12 Mar 1998 20:09:33 -0700
  519. From: Ray Montgomery <elmont@cdsnet.net>
  520. Subject: (fractint) Success
  521.  
  522.         Jay
  523.  
  524.         Your last message turned the tide for me.  Got through to Dos editor
  525. and the sstools file.  Got everything entered, as suggested by Jack Valero,
  526. the piece that I got from your web-site.  
  527.         Am now studying the editor and soon will be another couple of steps
  528. forward.
  529.         Incidentally, someone wrote the server wanting to know what kind of
  530. machines various ones were using.  It does make a difference.  I'm delighted
  531. that you thought to give the instructions for the older program.  I have a
  532. Tandy 3.1 with 16meg of ram and I think about 512meg hard drive.  Not very
  533. impressive especially its 33 or 66 MHz speed (or lack of.)  In about a month
  534. I hope to upgrade but will have to get along, as is, for now.
  535.         Thanks again.
  536.                                         Ray
  537.  
  538.  
  539. - -
  540. - ------------------------------------------------------------
  541. Thanks for using Fractint, The Fractals and Fractint Discussion List
  542. Post Message:   fractint@xmission.com
  543. Get Commands:   majordomo@xmission.com "help"
  544. Administrator:  twegner@phoenix.net
  545. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  546.  
  547. ------------------------------
  548.  
  549. Date: Thu, 12 Mar 1998 21:16:17 -0600
  550. From: "Justin A. Kolodziej" <4wg7kolodzie@vms.csd.mu.edu>
  551. Subject: Re: (fractint) Arbitrary Precision
  552.  
  553. Brederlow wrote:
  554.  
  555. > > I have been looking at Keith Briggs double-double (30 digit) package
  556. > > for C++ and found about 40,000 iterations per second on a P200.  That
  557. > > is not assembler and not unrolled loops. So Fractint should be able to get
  558. > > what ... 160,000 iterations/second?
  559. > >
  560.  
  561. I'd love to find out, but unfortunately I can't come up with a good way
  562. of testing it that _only_ tests the iteration speed.  The problem is
  563. that Fractint draws pictures.  This involves quite a few other factors
  564. (i.e. the time it takes to write a point to screen or random-access
  565. memory, the time it takes to change pixels, etc.)  I suppose if you use
  566. lots of iterations, these other factors would become insignificant, but
  567. then the benchmark simply takes too long.  Nevertheless, I'll try
  568. different methods, tell you what I did and what the results are, and
  569. then you can rip my methods apart :-)
  570.  
  571. > > Bottom line...
  572. > >
  573. > > It looks like 2,000,000,000 iterations is too many on this year's machines.
  574. > > :-(
  575. > > Try 100,000 or so.
  576. > > Jay
  577. > The current implementation of big numbers in xfractint is awfully
  578. > slow, ineficient and badly made.
  579.  
  580. But is any implementation of big numbers in software truly "fast" ? ;-)
  581.  
  582. Maybe someday Fractint will have different arbitrary precision
  583. algorithims that are good for different situations selectable.  I hope,
  584. I hope, I hope...
  585. > One could optimize that a lot and use a faster algorithm to multiply
  586. > large numbers.
  587. > If somebody is intrested in some better algorithm, contact me and I
  588. > will give him some sources. I myself unfortunatly don't have the time
  589. > to integrate them in xfractint.
  590.  
  591. Ummm... no thanks.  Let me read through the entire source code for
  592. XFractint first... which should take about 5-6 weeks. <g>
  593.  
  594. And that's just to find the start of program execution! <vbg>
  595.  
  596.   
  597. > May the Source be with you.
  598. >                         Mrvn
  599.  
  600. - -- 
  601. Justin A. Kolodziej
  602. I sense a great disturbance in the Source.
  603. I am 4wg7kolodzie@vms.csd.mu.edu
  604. Marquette University is http://www.mu.edu
  605.  
  606. - -
  607. - ------------------------------------------------------------
  608. Thanks for using Fractint, The Fractals and Fractint Discussion List
  609. Post Message:   fractint@xmission.com
  610. Get Commands:   majordomo@xmission.com "help"
  611. Administrator:  twegner@phoenix.net
  612. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  613.  
  614. ------------------------------
  615.  
  616. Date: Thu, 12 Mar 1998 23:02:25 -0600
  617. From: Felix <aduhan@TTACS.TTU.EDU>
  618. Subject: Re: (fractint) More SSTOOLS
  619.  
  620. Jay Hill wrote:
  621.  
  622. > Ray,
  623. >
  624. > The sstools.ini file is an ASCII file. You can edit it using edit.
  625. >
  626. > In DOS window, type
  627. >
  628. > edit sstools.ini
  629. >
  630. > at is the old basic editor from DOS.
  631. >
  632. > To get a DOS window, from Win 95, click the Microsoft window
  633. > (wave thing) button on the 'bar' at the (usually) bottom of the screen.
  634. > Then Programs and finally MS-DOS Prompt.
  635.  
  636. Also, when you get the windows "open with" box, you can choose Notepad,
  637. or you could also open the sstools.ini once in Notepad.
  638.  
  639. - --
  640. | Andrew Duhan    |     Cereal is     |
  641. | aduhan@ttu.edu  |       g00d.       |
  642. | http://chimera.acs.ttu.edu/~aduhan/ |
  643.  
  644.  
  645.  
  646. - -
  647. - ------------------------------------------------------------
  648. Thanks for using Fractint, The Fractals and Fractint Discussion List
  649. Post Message:   fractint@xmission.com
  650. Get Commands:   majordomo@xmission.com "help"
  651. Administrator:  twegner@phoenix.net
  652. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  653.  
  654. ------------------------------
  655.  
  656. Date: Fri, 13 Mar 1998 08:50:32 -0300 (BST)
  657. From: Jerry Fox <jerry.fox@gecm.com>
  658. Subject: Re: (fractint) Browser
  659.  
  660. On Tuesday 10 Mar:
  661. > From:          Ray Montgomery <elmont@cdsnet.net>
  662.  
  663. > Do you know that on the spec sheet of the
  664. > "USER'S MANUAL" for my computer it does not tell you what the MHz of the
  665. > computer is?  How's that for documentation?
  666.  
  667. Most computers are available with several different MHz speeds, in 
  668. the same way that most cars are availalble with different engine 
  669. capacities.  It would be rather wasteful to have a different manual 
  670. for each speed of computer.  Some computers tell you the speed at 
  671. which they are running, every time you start them up: you have to 
  672. watch the first few things that are written on the screen (they go 
  673. past pretty quickly).  Otherwise you should have a not of the speed 
  674. on some of the paperwork that came wth the beast, or perhaps on the 
  675. box (some sort of sticky label).
  676.  
  677. Jerry Fox, South Wales
  678.  
  679. - -
  680. - ------------------------------------------------------------
  681. Thanks for using Fractint, The Fractals and Fractint Discussion List
  682. Post Message:   fractint@xmission.com
  683. Get Commands:   majordomo@xmission.com "help"
  684. Administrator:  twegner@phoenix.net
  685. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  686.  
  687. ------------------------------
  688.  
  689. Date: Fri, 13 Mar 1998 00:59:48 -0800
  690. From: "Jay Hill" <ehill1@san.rr.com>
  691. Subject: (fractint) Newt8-JAtan-Mset formula
  692.  
  693. Hi Fractintiers,
  694.  
  695. Continuing my experiment in learning how to code formula, 
  696. I have written another formula, this time with eight 'colors' 
  697. a which uses an eighth degree polynomial. After all, Paul 
  698. Carlson should not have all the fun.  :-)    I should note 
  699. that there were errors in my posting (in the commentary)
  700. at my web page last time. These have been corrected.
  701. After all, fractal of the night is produced after midnight....
  702.  
  703. These are posted to the Fractal-Art list (in the continuing 
  704. adventures of Dr. J) and at my web site along with a 
  705. little math discussion. 
  706. http://home.san.rr.com/jayrhill/FotN/FotN61.html
  707. http://home.san.rr.com/jayrhill/FotN/FotN62.html
  708.  
  709. Enjoy,
  710. Jay
  711.  
  712. frm:Newt8-JAtan-Mset {; (c) Jay R. Hill, 1998
  713. ; Newton method set up as a Mandelbrot set
  714. ; This formula searches for 8 roots of a function
  715. ; Inspired by Paul Carlson's Newt5_Atan_Mset 
  716. ; p1=width of root finding
  717. ; p2=A=constant in formula
  718. ; F(w) = w^8 - A*w^7 - w*c + A*c
  719. ; F'(w) = 8*w^7 - 7*A*w^6 - c
  720. ; F''(w) = 56*w^6 - 42*A*w^5
  721. ; Set F''=0, solve for initial w, 42*A/56 = 3*A/4
  722. ;
  723. c = pixel, A=p2, z = iter = bailout = 0
  724. colors_in_range = 31
  725. R=(-1)^(2/7), R2=sqr(R)
  726. root1 = A, root2 = c^(1/7), root3 = root2*R, root4 = root2*R2
  727. root5 = root4*R, root6 = root4*R2, root7 = root6*R, root8 = root6*R2
  728. w = 3*A/4
  729. :
  730. w6 = w^6
  731. deltaw=((w*w6 - A*w6 - c)*w + A*c)/(8*w*w6 - 7*A*w6 - c)
  732. w = w - deltaw
  733. ;
  734. IF (|deltaw| < p1)
  735. angle=abs(imag(log(deltaw)))
  736. range_num = (|w - root2| < p1)+2*(|w - root3| < p1)+\
  737. 3*(|w - root4| < p1)+4*(|w - root5| < p1)+5*(|w - root6| < p1)+\
  738. 6*(|w - root7| < p1)+7*(|w - root8| < p1)
  739. bailout = 1
  740. z = colors_in_range*(angle/pi + range_num)-angle/pi + 1
  741. ENDIF
  742. iter = iter + 1
  743. z = z - iter
  744. bailout == 0
  745. }
  746.  
  747. jn8atnm001nb       { ; (C) by Jay Hill, 1998
  748.   ;  Dr. J and his Fractal Jello
  749.   reset=1960 type=formula formulafile=n6jatnm.par
  750.   formulaname=newt8-jatan-mset
  751.   center-mag=-0.252436/-0.458374/13.61266/1/-110 params=0.0001/0/1/0
  752.   float=y maxiter=2000 inside=253 outside=summ
  753.   colors=000w00<28>2000000w0<28>02000000\
  754.   w<29>000ww0<28>220000000<29>w0w000\
  755.   <29>0ww000<28>uuuwwwwU0<28>21000000\
  756.   0<2>000wmU000000 cyclerange=1/248
  757.   savename=Jn8atn1b.gif
  758.   }
  759.  
  760.  
  761. - -
  762. - ------------------------------------------------------------
  763. Thanks for using Fractint, The Fractals and Fractint Discussion List
  764. Post Message:   fractint@xmission.com
  765. Get Commands:   majordomo@xmission.com "help"
  766. Administrator:  twegner@phoenix.net
  767. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  768.  
  769. ------------------------------
  770.  
  771. Date: Fri, 13 Mar 1998 06:07:32 -0500
  772. From: "Jason Hine" <tumnus@together.net>
  773. Subject: Re: (fractint) More SSTOOLS
  774.  
  775. Jay Hill wrote:
  776. >> The sstools.ini file is an ASCII file. You can edit it using edit.
  777.  
  778.  
  779. Ray, I may be misreading your question a little, but in case you've already
  780. edited your SSTOOLS.INI file the way you want it, and are wondering how to use
  781. it in FRACTINT, here's an answer:  it's automatic.  Most folks put instruction
  782. lines in their SSTOOLS.INI file to tell FRACTINT what to do at startup, and also
  783. where to look for various types of files (PARs, MAPs, and the like).  Once those
  784. instruction lines are in your SSTOOLS.INI file, and your SSTOOLS.INI file is in
  785. the same directory as FRACTINT (so that when you type 'dir' at the DOS prompt
  786. you will see both FRACTINT.EXE and SSTOOLS.INI scroll by, along with all that
  787. other stuff that came with FRACTINT), that's all you need to do!  The next time
  788. you run FRACTINT, it will look for your SSTOOLS.INI file, and if it finds the
  789. file, it'll perform the various instructions in the file all by its self.  If
  790. your SSTOOLS.INI file contains the line:
  791.  
  792. video=F3
  793.  
  794. you'll be able to tell that FRACTINT and is using the SSTOOLS.INI file because
  795. now when you start FRACTINT, you should immeadiately get a picture of the
  796. Mandelbrot Set instead of the opening credits screen!  If there are instructions
  797. in your SSTOOLS.INI file that FRACTINT can't understand, FRACTINT will let you
  798. know at startup with a little red warning message.  Read this message to
  799. determine which instruction FRACTINT couldn't understand, then edit your
  800. SSTOOLS.INI file to fix the instruction.  If you aren't sure how to fix it, ask
  801. away!
  802.  
  803. Cheers, Jason
  804.  
  805.  
  806. - -
  807. - ------------------------------------------------------------
  808. Thanks for using Fractint, The Fractals and Fractint Discussion List
  809. Post Message:   fractint@xmission.com
  810. Get Commands:   majordomo@xmission.com "help"
  811. Administrator:  twegner@phoenix.net
  812. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  813.  
  814. ------------------------------
  815.  
  816. Date: Fri, 13 Mar 1998 09:01:32 -0600
  817. From: Janet Preslar <preslar@memphisonline.com>
  818. Subject: (fractint) List of URL's
  819.  
  820. Hey folks =97
  821.  
  822. How about a weekly or bi-monthly post of a list of URL's that would give
  823. newbies, lurkers, and the rest of us an easy way to get to the vast infor=
  824. mation
  825. online concerning this list traffic (and Fractint in general, though Span=
  826. ky
  827. already has so much of that)? I'm thinking of . . .
  828.     - where to get the archived digests of posts
  829.     - those who have collected the pars and forms for various months
  830.     - the contest results & zip file
  831.     - Wizzle's, Linda's, and other's tutorials on all kinds of stuff
  832.     - Jay's wealth of helpful info
  833.     - where to suggest additions to the Fractint wish list
  834.     - etc., etc., etc . . . .
  835.  
  836.  . . . all regularly posted in one message. Does anyone else think this w=
  837. ould be
  838. handy or useful? If so, I volunteer to collect, assemble, update and post=
  839.  the
  840. information to the list. Anyone with the above URL's (and please contribu=
  841. te to
  842. the "etc." category) can send them to me and I'll organize them.
  843.  
  844. Janet
  845. mailto:preslar@memphisonline.com
  846. http://www.ParkeNet.org/jp
  847.  
  848.  
  849. - -
  850. - ------------------------------------------------------------
  851. Thanks for using Fractint, The Fractals and Fractint Discussion List
  852. Post Message:   fractint@xmission.com
  853. Get Commands:   majordomo@xmission.com "help"
  854. Administrator:  twegner@phoenix.net
  855. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  856.  
  857. ------------------------------
  858.  
  859. Date: Fri, 13 Mar 1998 10:32:25 -0600
  860. From: "Damien M. Jones" <dmj@fractalus.com>
  861. Subject: Re: (fractint) List of URL's
  862.  
  863. Janet,
  864.  
  865.  - How about a weekly or bi-monthly post of a list of URL's that would give
  866.  - newbies, lurkers, and the rest of us an easy way to get to the vast
  867.  - information online concerning this list traffic
  868.  [snip]
  869.  - Does anyone else think this would be handy or useful? If so, I volunteer to
  870.  - collect, assemble, update and post the information to the list.
  871.  
  872. I volunteer to consider it useful if you volunteer to do the work. :)
  873.  
  874. Damien M. Jones   \\
  875. dmj@fractalus.com  \\  http://www.icd.com/tsd/ (temporary sanity designs)
  876.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  877.  
  878. - -
  879. - ------------------------------------------------------------
  880. Thanks for using Fractint, The Fractals and Fractint Discussion List
  881. Post Message:   fractint@xmission.com
  882. Get Commands:   majordomo@xmission.com "help"
  883. Administrator:  twegner@phoenix.net
  884. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  885.  
  886. ------------------------------
  887.  
  888. Date: Fri, 13 Mar 1998 12:25:55 -0500 (EST)
  889. From: kragen@pobox.com (Kragen)
  890. Subject: Re: (fractint) List of URL's
  891.  
  892. On Fri, 13 Mar 1998, Janet Preslar wrote:
  893. > How about a weekly or bi-monthly post of a list of URL's that would give
  894. > newbies, lurkers, and the rest of us an easy way to get to the vast information
  895. > online concerning this list traffic (and Fractint in general, though Spanky
  896. > already has so much of that)? I'm thinking of . . .
  897.  
  898. Sounds great!  I spent a considerable time wandering, lost, in the Web
  899. wilderness to find this list.
  900.  
  901. I'll be happy to keep your post on a web-page too.
  902.  
  903. Anyone up for registering fractint.org?
  904.  
  905. Kragen
  906.  
  907.  
  908. - -
  909. - ------------------------------------------------------------
  910. Thanks for using Fractint, The Fractals and Fractint Discussion List
  911. Post Message:   fractint@xmission.com
  912. Get Commands:   majordomo@xmission.com "help"
  913. Administrator:  twegner@phoenix.net
  914. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  915.  
  916. ------------------------------
  917.  
  918. Date: Fri, 13 Mar 1998 11:40:55 -0600
  919. From: "Damien M. Jones" <dmj@fractalus.com>
  920. Subject: Re: (fractint) List of URL's
  921.  
  922. Kragen,
  923.  
  924.  - Anyone up for registering fractint.org?
  925.  
  926. I never even thought of that--the name's available, someone just needs to
  927. cough up $100 to register it.  I'd do it, but I still owe $140 to a book
  928. club I forgot to send a forwarding address to when I moved... :(
  929.  
  930. Damien M. Jones   \\
  931. dmj@fractalus.com  \\  http://www.icd.com/tsd/ (temporary sanity designs)
  932.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  933.  
  934. - -
  935. - ------------------------------------------------------------
  936. Thanks for using Fractint, The Fractals and Fractint Discussion List
  937. Post Message:   fractint@xmission.com
  938. Get Commands:   majordomo@xmission.com "help"
  939. Administrator:  twegner@phoenix.net
  940. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  941.  
  942. ------------------------------
  943.  
  944. Date: Fri, 13 Mar 1998 16:44:11 -0800
  945. From: Peter Jakubowicz <pfjakub@earthlink.net>
  946. Subject: (fractint) HARD HARDWARE QUESTION
  947.  
  948. Hi,
  949. I am going to buy a new computer soon and want to make sure Fractint, among
  950. other things, will work on it. I know I want at least a 17'' monitor, 64
  951. megs of RAM, and a 64 GB hard-drive.  I'm considering a package from one of
  952. these mail order places (Dell or Gateway), but as I am totally clueless
  953. about this, I wld _really_ appreciate any specific recommendations on
  954. graphics hardware, and general info, too. I am looking for the ideal setup
  955. to run fractal programs and Quake. Pls send any info or flames to me
  956. personally, so as not to SPAM up the list.
  957. Thank you. 
  958.  
  959.  
  960. - -
  961. - ------------------------------------------------------------
  962. Thanks for using Fractint, The Fractals and Fractint Discussion List
  963. Post Message:   fractint@xmission.com
  964. Get Commands:   majordomo@xmission.com "help"
  965. Administrator:  twegner@phoenix.net
  966. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  967.  
  968. ------------------------------
  969.  
  970. Date: Fri, 13 Mar 1998 17:37:07 EST
  971. From: Genealogy1 <Genealogy1@aol.com>
  972. Subject: Re: (fractint) HARD HARDWARE QUESTION
  973.  
  974. In a message dated 98-03-13 16:41:30 EST, Peter Jakubowicz you write:
  975.  
  976. <<  I'm considering a package from one of these mail order places (Dell or
  977. Gateway), but as I am totally clueless about this, I wld _really_ appreciate
  978. any specific recommendations on graphics hardware, and general info, too.  >>
  979.  
  980. I'd make sure the monitor has 1600 X 1200 resolution capability. Also make
  981. sure the video card you order has that capability and that the video card
  982. works with FRACTINT.
  983.  
  984. - --Bob Carr--(Ocala, FL)
  985.  
  986. PS For those who haven't seen PHC (PseudoHigh Color) images at 1600 x 1200
  987. resolution, you are missing a treat. The images almost look like photographs.
  988.  
  989. - -
  990. - ------------------------------------------------------------
  991. Thanks for using Fractint, The Fractals and Fractint Discussion List
  992. Post Message:   fractint@xmission.com
  993. Get Commands:   majordomo@xmission.com "help"
  994. Administrator:  twegner@phoenix.net
  995. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  996.  
  997. ------------------------------
  998.  
  999. Date: Fri, 13 Mar 1998 17:54:50 -0800
  1000. From: Wizzle <wizzle@cci-internet.com>
  1001. Subject: Re: (fractint) List of URL's
  1002.  
  1003. Way to go Damien!!! Step right up to those onerous problems. 
  1004.  
  1005. Janet...
  1006.  
  1007. I think it's a great idea. I'll keep writing and collecting lessons if you
  1008. keep track of them....you have a deal!!
  1009.  
  1010. Angela
  1011.  
  1012. t 10:32 AM 3/13/98 -0600, you wrote:
  1013. >Janet,
  1014. >
  1015. > - How about a weekly or bi-monthly post of a list of URL's that would give
  1016. > - newbies, lurkers, and the rest of us an easy way to get to the vast
  1017. > - information online concerning this list traffic
  1018. > [snip]
  1019. > - Does anyone else think this would be handy or useful? If so, I
  1020. volunteer to
  1021. > - collect, assemble, update and post the information to the list.
  1022. >
  1023. >I volunteer to consider it useful if you volunteer to do the work. :)
  1024. >
  1025. >Damien M. Jones   \\
  1026. >dmj@fractalus.com  \\  http://www.icd.com/tsd/ (temporary sanity designs)
  1027.  
  1028.  
  1029. - -
  1030. - ------------------------------------------------------------
  1031. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1032. Post Message:   fractint@xmission.com
  1033. Get Commands:   majordomo@xmission.com "help"
  1034. Administrator:  twegner@phoenix.net
  1035. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1036.  
  1037. ------------------------------
  1038.  
  1039. Date: Fri, 13 Mar 1998 18:19:55 -0800
  1040. From: Wizzle <wizzle@cci-internet.com>
  1041. Subject: (fractint) Color Maps
  1042.  
  1043. Unless anyone has objections....I volunteer to be the color map
  1044. co-ordinator. Here is my proposed approach.
  1045.  
  1046. 1. Tim tells us about how many color maps he'd like to bundle - 75 seems
  1047. about right
  1048. 2. Color artists submit their maps to me and/or I ask some of the folks if
  1049. their maps can be used (I already have some in mind)
  1050. 3. Maps will be divided into "technical" areas
  1051.     Mid-tone gradient maps - with sub-categories for short and long steps
  1052. between colors (these are the most useful and also often read as pastels
  1053. when cycled)
  1054.     Maps with colors plus fair amounts of black
  1055.     Jewel tone gradients
  1056.     Maps with 1, 2, or 3 colors
  1057.     Striped maps (not my favorite so I need help here)
  1058.     Specialty maps like 3D glasses (these leave me clueless)
  1059.     Anything else I like and find useful or you can talk me into 
  1060. 4. I will post the maps, by category, at my site for viewing and downloading
  1061. 5. If we have more maps submitted than Tim wants to bundle....we have a map
  1062. vote.....say...vote for 5 maps in category 1.....5 in 2, etc. 
  1063. 6. All maps submitted (except in the specialty category) must be able to be
  1064. cycled .....please do not submit a map that looks great only with a
  1065. particular fractal.
  1066. 7. Maps will be named to give credit to the author, i.e. wizzle1.map,
  1067. gumbycat8.map, carlson3.map
  1068.  
  1069. Feedback?
  1070.  
  1071. Angela
  1072.  
  1073. - -
  1074. - ------------------------------------------------------------
  1075. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1076. Post Message:   fractint@xmission.com
  1077. Get Commands:   majordomo@xmission.com "help"
  1078. Administrator:  twegner@phoenix.net
  1079. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1080.  
  1081. ------------------------------
  1082.  
  1083. Date: Fri, 13 Mar 1998 20:11:59 -0600
  1084. From: "Damien M. Jones" <dmj@fractalus.com>
  1085. Subject: Re: (fractint) Color Maps
  1086.  
  1087. Angela,
  1088.  
  1089.  - Unless anyone has objections....I volunteer to be the color map
  1090.  - co-ordinator. Here is my proposed approach.
  1091.  - [snip]
  1092.  - Feedback?
  1093.  
  1094. Sounds reasonable.  Do you have any idea how much hassle you've just
  1095. brought on yourself? :)
  1096.  
  1097. Damien M. Jones   \\
  1098. dmj@fractalus.com  \\  http://www.icd.com/tsd/ (temporary sanity designs)
  1099.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  1100.  
  1101. - -
  1102. - ------------------------------------------------------------
  1103. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1104. Post Message:   fractint@xmission.com
  1105. Get Commands:   majordomo@xmission.com "help"
  1106. Administrator:  twegner@phoenix.net
  1107. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1108.  
  1109. ------------------------------
  1110.  
  1111. End of fractint-digest V1 #131
  1112. ******************************
  1113.  
  1114.