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

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #134
  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         Sunday, March 15 1998         Volume 01 : Number 134
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Sat, 14 Mar 1998 21:48:21 -0800
  18. From: kathy roth <kroth@well.com>
  19. Subject: (fractint) more bugs
  20.  
  21. Here's a couple of more bugs, not in amber.  I couldn't quite get the
  22. colors right- does anyone else (Wizzle?) want to try?
  23.  
  24. scarab             { ; kathy roth 3-8-98
  25.                      ; frm by Paul Carlson
  26.   reset=1960 type=formula formulafile=triangl.frm
  27.   formulaname=Newt3_Atan_Mset
  28.   center-mag=+0.50047314317370660/+0.00000830285516731/2625.797/-1/270
  29.   params=0.001/0.1 float=y inside=bof60 outside=summ
  30.  colors=000MYD<6>PbF<6>svc<6>feBdc7``8<4>FOFJNF\
  31. <2>caEkfDrkDzqCzmC<8>v8A<5\
  32.   >x39<3>`A7QE6KG6<7>rDQ<2>tS_uXcvagwfkwknxpryuvzzz\
  33. <33>LguKguJfuHetHdrHcq<\
  34.  4>F`kE_iEZhEYfDYe<8>BUVBUUBTTASR<38>4AA\
  35. <13>BZUC`VBZU<22>6B56936A4<38>MYD
  36.   }
  37.  
  38. butterfly          { ; kathy roth 3-8-98
  39.                      ; frm by Mark Christenson
  40.   reset=1960 type=formula formulafile=triangl.frm
  41.   formulaname=gravijul-a1 function=asin/atanh/atan
  42.   center-mag=0.0103628/0.0154305/0.2575853/1/-19.998
  43.   params=1.1/0/1/0.93/0.966/2.2 float=y inside=111 outside=real
  44.   invert=1/0/0 decomp=256
  45.   colors=000QE6KG6<7>rDQ<2>tS_uXcvagwfkwknxpryuvzzz\
  46. <33>LguKguJfuHetHdrHcq<\
  47.  4>F`kE_iEZhEYfDYe<8>BUVBUUBTTASR<38>4AA\
  48. <13>BZUC`VBZU<22>6B56936A4<46>PbF\
  49.   <6>svc<6>feBdc7``8<4>FOFJNF<2>caEkfDrkDzqCzmC<8>v8A\
  50. <5>x39r48l68000mmm
  51.   cyclerange=0/255
  52.   }
  53.  
  54. Newt3_Atan_Mset {; Original formula by Paul Carlson
  55.                        ; with optimizations by Sylvie Gallet
  56.     ; F(w)   = w^3 + (c - 1) * w - c
  57.     ; F'(w)  = 3 * w^2 + c - 1
  58.     ; F''(w) = 6 * w,  so initialize w to zero
  59.     ;
  60.     ; p1 contols the "layering"
  61.     ;
  62.     c = pixel , c1 = c - 1
  63.     z = iter = bailout = prev_w = w = 0
  64.     colors_in_range = 80
  65.     colors_in_range_1 = 79
  66.     k = 0.5 * sqrt(1 - 4 * c)
  67.     root1 = (1,0)
  68.     root2 = -0.5 + k
  69.     root3 = -0.5 - k
  70.     :
  71.     ;
  72.     w2 = w * w
  73.     w = w - (w * (w2 + c1) - c) / (3 * w2 + c1)
  74.     ;
  75.     delta_w = w - prev_w
  76.     IF (|delta_w| < p1)
  77.         angle = atan(imag(delta_w) / real(delta_w))
  78.         IF (delta_w >= 0)
  79.             IF (imag(delta_w) < 0)
  80.                 angle = pi + angle
  81.             ELSE
  82.                 angle = pi - angle
  83.             ENDIF
  84.         ELSEIF (imag(delta_w) > 0)
  85.             angle = -angle
  86.         ENDIF
  87.         IF     (|w - root1| < p1)
  88.             range_num = 0
  89.         ELSEIF (|w - root2| < p1)
  90.             range_num = 1
  91.         ELSEIF (|w - root3| < p1)
  92.             range_num = 2
  93.         ENDIF
  94.         bailout = 1
  95.         z = colors_in_range_1*angle/pi+range_num*colors_in_range+1
  96.     ENDIF
  97.     prev_w = w
  98.     iter = iter + 1
  99.     z = z - iter
  100.     bailout = 0
  101. }
  102.  
  103. gravijul-a1 { ; generalized r^(-2) by Mark "Bud" Christenson 3/6/98
  104. ; defaults: p1 = (1,0) p2 = (0,0) p3 = (0,4)
  105.   q4 = real(p2)
  106.   q2 = p1
  107.   q1 = imag(p2) ; new knob 1
  108.   q3 = real(p3) ; new knob 2
  109.   q5 = imag(p3) ; bailout
  110.    z = pixel:
  111.    v = fn1(z)
  112.    w = q1*(v*v)
  113.    z = q3*fn3(q2/fn2(w)) + q4
  114.     |z| < q5
  115.   }
  116.  
  117.  
  118.  
  119.  
  120.  
  121. - -
  122. - ------------------------------------------------------------
  123. Thanks for using Fractint, The Fractals and Fractint Discussion List
  124. Post Message:   fractint@xmission.com
  125. Get Commands:   majordomo@xmission.com "help"
  126. Administrator:  twegner@phoenix.net
  127. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  128.  
  129. ------------------------------
  130.  
  131. Date: Sun, 15 Mar 1998 01:36:58 -0600
  132. From: "Justin A. Kolodziej" <4wg7kolodzie@vms.csd.mu.edu>
  133. Subject: Re: (fractint) HARD HARDWARE QUESTION
  134.  
  135. Ryan Jameson wrote:
  136. > At 02:35 PM 3/14/98 -0500, you wrote:
  137. > >64 gigs is reasonable these days.  I saw a supposedly-working 6.4G
  138. > >drive sell on auctionweb yesterday for $225.  Probably you could put
  139. > >together 64G of drive-space on a single machine for $3500 max, and
  140. > >maybe much less.
  141. > >
  142. > >(I'd be doing RAID4, though, with that much disk -- afraid of disk
  143. > >failures if I had ten disks!)
  144. > >
  145. > >I imagine the 64G is for fractals, though :)
  146. > >
  147. > >Kragen
  148. > You're right, I'd kill to have 64 gigs. My 6.4 gig ran out in about 4
  149. > months. I guess I'm just severly talented at filling up drive space....
  150.  
  151. Makes me wonder how I'm managing with a measly 2.5 gigs, of which 300
  152. are FreeBSD now and the rest are WinBl... oops, I mean Windoz... <smack>
  153.  
  154. Oh yeah... I don't make very many GIFs of fractals! because mine all
  155. suck! :-)
  156.  
  157. Maybe the PNG format will help that (the size not my skill as an
  158. artist).
  159.  
  160. Justin K.
  161. - -- 
  162. I sense a great disturbance in the Source.
  163. Justin A. Kolodziej
  164. I am vms.csd.mu.edu
  165. Marquette University is http://www.mu.edu
  166.  
  167. - -
  168. - ------------------------------------------------------------
  169. Thanks for using Fractint, The Fractals and Fractint Discussion List
  170. Post Message:   fractint@xmission.com
  171. Get Commands:   majordomo@xmission.com "help"
  172. Administrator:  twegner@phoenix.net
  173. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  174.  
  175. ------------------------------
  176.  
  177. Date: Sun, 15 Mar 1998 02:33:50 -0600
  178. From: Felix <aduhan@TTACS.TTU.EDU>
  179. Subject: Re: (fractint) FRACTINT.ORG - alternative
  180.  
  181. > Sounds like www.fractint.org is the choice then.
  182. > Justin K.
  183.  
  184. For $8 the name fractint.base.org can be pointed to the spanky server.  This
  185. is not the best solution, but it's maybe the cheapest and simplest...
  186.  
  187. - -Andrew
  188.  
  189. - --
  190. | Andrew Duhan    |     Cereal is     |
  191. | aduhan@ttu.edu  |       g00d.       |
  192. | http://chimera.acs.ttu.edu/~aduhan/ |
  193.  
  194.  
  195.  
  196. - -
  197. - ------------------------------------------------------------
  198. Thanks for using Fractint, The Fractals and Fractint Discussion List
  199. Post Message:   fractint@xmission.com
  200. Get Commands:   majordomo@xmission.com "help"
  201. Administrator:  twegner@phoenix.net
  202. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  203.  
  204. ------------------------------
  205.  
  206. Date: Sun, 15 Mar 1998 07:23:07 -0500
  207. From: davides <davides@pipeline.com>
  208. Subject: Re: (fractint) Color Maps
  209.  
  210. At 02:40 PM 3/14/98 -0600, you wrote:
  211. >My two drachmas worth:
  212.  If two or more people send in color maps with
  213. >the same name, such as orngblue.map, then they could be renamed
  214. >orngblu1.map and orngblu2.map.
  215. >
  216. >Bob Margolis
  217.  
  218. Perhaps with a modification: eg: for Bob Margolis: BMorngblu.map, for
  219. Wizzle: Worngblu.map, etc. 
  220. davides@pipeline.com
  221. Back up my hard drive?
  222. How do I put it in reverse?
  223.  
  224. - -
  225. - ------------------------------------------------------------
  226. Thanks for using Fractint, The Fractals and Fractint Discussion List
  227. Post Message:   fractint@xmission.com
  228. Get Commands:   majordomo@xmission.com "help"
  229. Administrator:  twegner@phoenix.net
  230. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  231.  
  232. ------------------------------
  233.  
  234. Date: Sun, 15 Mar 1998 08:46:15 -0800
  235. From: Ryan Jameson <ratguy@proaxis.com>
  236. Subject: Re: (fractint) HARD HARDWARE QUESTION
  237.  
  238. At 01:36 AM 3/15/98 -0600, you wrote:
  239. >Makes me wonder how I'm managing with a measly 2.5 gigs, of which 300
  240. >are FreeBSD now and the rest are WinBl... oops, I mean Windoz... <smack>
  241. >
  242. >Oh yeah... I don't make very many GIFs of fractals! because mine all
  243. >suck! :-)
  244. >
  245. >Maybe the PNG format will help that (the size not my skill as an
  246. >artist).
  247. >
  248. >Justin K.
  249.  
  250. Well, you have to realize that I have about 400 megs of MP3's, and about
  251. 500 megs of textures that I use for 3d work, and web pages. I really do
  252. waste a lot of space. Although, I would love to waste a lot more! 
  253.  
  254. I too can't wait for png to become more supported. the lastest version of
  255. the two major browsers support them, but not all thier functions. (the
  256. alpha channels, most notably) I'd really love to make my graphics fade into
  257. my background better, but it's still not supported! Ack! hurry it up Netscape!
  258.  
  259. Ryan
  260.  
  261. - -
  262. - ------------------------------------------------------------
  263. Thanks for using Fractint, The Fractals and Fractint Discussion List
  264. Post Message:   fractint@xmission.com
  265. Get Commands:   majordomo@xmission.com "help"
  266. Administrator:  twegner@phoenix.net
  267. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  268.  
  269. ------------------------------
  270.  
  271. Date: Sun, 15 Mar 1998 09:26:21 -0800
  272. From: Wizzle <wizzle@cci-internet.com>
  273. Subject: Re: (fractint) more bugs
  274.  
  275. At 09:48 PM 3/14/98 -0800, you wrote:
  276. >Here's a couple of more bugs, not in amber.  I couldn't quite get the
  277. >colors right- does anyone else (Wizzle?) want to try?
  278. >
  279. Sure....I'll try anything
  280.  
  281. The maps in the last two pars are worth comparing. The very last par has
  282. Paul Carlson's colorful map and the par right above it has one of my
  283. modifications of that map.  I've found it a particularly good one for
  284. coloring julias.....just stick the darkest and lightest colors of the area
  285. you want to change where paul did.  I also varied the map with areas of
  286. black. It's been great fun to work with. I asked Paul if we could use the
  287. map in our new set and he graciously agreed....no voting on this one!!! It
  288. goes in as it is so technically useful. 
  289.  
  290. scarab-v1          { ; wizzle 3/15/98 with kathy roth's pars
  291.                      ; frm by Paul Carlson
  292.   reset=1960 type=formula formulafile=mar98.frm
  293.   formulaname=newt3_atan_mset
  294.   center-mag=+0.50047314317370660/+0.00000830285516731/2625.797/-1.3333/27\
  295.   0 params=0.001/0.1 float=y inside=bof60 outside=summ
  296.   viewwindows=1/1/yes/0/0
  297.   colors=000OSW<10>CCHAAFAAFAAFABF<52>yyyzzzyyy<45>CCGAAFABG<44>luxmwzmvy<\
  298.   38>BCHAAFBCG<24>mzz<22>PUX
  299.   }
  300.  
  301. scarab-v2          { ; wizzle 3/15/98 with kathy roth's pars
  302.                      ; frm by Paul Carlson
  303.   reset=1960 type=formula formulafile=mar98.frm
  304.   formulaname=newt3_atan_mset
  305.   center-mag=+0.50047314317370660/+0.00000830285516731/2625.797/-1.3333/27\
  306.   0 params=0.001/0.1 float=y inside=bof60 outside=summ
  307.   viewwindows=1/1/yes/0/0
  308.   colors=00AykK<66>K1000K<72>00m00m00l<51>10KK00<55>zmKzmKylK
  309.   }
  310.  
  311. butterfly-v1       { ; wizzle 3/15/98 from kathy roth par
  312.                      ; frm by Mark Christenson
  313.   reset=1960 type=formula formulafile=mar98.frm
  314.   formulaname=gravijul-a1 function=asin/atanh/atan
  315.   center-mag=0.0103628/0.0154305/0.2575853/1/-19.998
  316.   params=1.1/0/1/0.93/0.966/2.2 float=y inside=111 outside=real
  317.   invert=1/0/0 decomp=256 viewwindows=1/1/yes/0/0
  318.   colors=nQO<5>c40aG0<14>xwizzmywj<11>aG00C4<15>0zc<12>0C40CC<15>0zz<12>0C\
  319.   C00O<14>FFwGGzFFw<11>00OK0K<15>rhz<11>K0KO08<15>zcm<11>W9AU67R34O00Q11<1\
  320.   4>zzm<12>O00000<14>000c40<14>xjizmmyjj<4>pTR cyclerange=0/255
  321.   }
  322.  
  323. butterfly-v2       { ; wizzle 3/15/98 from kathy roth par
  324.                      ; frm by Mark Christenson
  325.   reset=1960 type=formula formulafile=mar98.frm
  326.   formulaname=gravijul-a1 function=asin/atanh/atan
  327.   center-mag=0.0103628/0.0154305/0.2575853/1/-19.998
  328.   params=1.1/0/1/0.93/0.966/2.2 float=y inside=111 outside=real
  329.   invert=1/0/0 decomp=256 viewwindows=1/1/yes/0/0
  330.   colors=0000AKA00<15>zzc<12>A003A3<14>czc<13>3A3U0O<15>uhu<11>X4RU0OU3A<1\
  331.   6>zcc<12>U3AG75<13>zzc<11>LD9I96E53A0000A<11>7Od8Qg9SjAUmASj<10>13E00A00\
  332.   0<13>000F70<15>rZU<12>F700AK<15>0zz<11>0FO
  333.   }
  334.  
  335. butterfly-v3       { ; wizzle 3/15/98 from kathy roth par
  336.                      ; frm by Mark Christenson w paul carlson map
  337.   reset=1960 type=formula formulafile=mar98.frm
  338.   formulaname=gravijul-a1 function=asin/atanh/atan
  339.   center-mag=0.0103628/0.0154305/0.2575853/1/-19.998
  340.   params=1.1/0/1/0.93/0.966/2.2 float=y inside=111 outside=real
  341.   invert=1/0/0 decomp=256 viewwindows=1/1/yes/0/0
  342.   colors=000Q0A<14>z0f<13>O08O00<15>z88<12>O00000<13>000c40<14>xU0zW0yU0<1\
  343.   1>c40aG0<15>zz0<12>aG00C4<15>0zR<12>0C40CC<15>0zz<12>0CC00O<14>FFwGGzFFw\
  344.   <11>00OSA`<14>eNxfOzeNw<10>K2OO08
  345.   }
  346.  
  347.  
  348.  
  349. - -
  350. - ------------------------------------------------------------
  351. Thanks for using Fractint, The Fractals and Fractint Discussion List
  352. Post Message:   fractint@xmission.com
  353. Get Commands:   majordomo@xmission.com "help"
  354. Administrator:  twegner@phoenix.net
  355. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  356.  
  357. ------------------------------
  358.  
  359. Date: Sun, 15 Mar 1998 09:31:26 -0800
  360. From: Wizzle <wizzle@cci-internet.com>
  361. Subject: Re: (fractint) Color Maps
  362.  
  363. During the decision period I'm going to name the maps for people because
  364. that will help me keep straight whose maps I've posted and whose I still
  365. need to post (I'm starting ....but slowly). We can have The Great
  366. Nomenclature Debate after we figure out which maps are the ones we want to
  367. bundle.  
  368.  
  369. The people approach also helps me during this period because I'm trying to
  370. request permission to use some of the maps that come with the pars posted
  371. here. 
  372.  
  373. Angela
  374.  
  375. p.s. I have to work this week end (darn) so am behind already
  376.  
  377. At 07:23 AM 3/15/98 -0500, you wrote:
  378. >At 02:40 PM 3/14/98 -0600, you wrote:
  379. >>My two drachmas worth:
  380. > If two or more people send in color maps with
  381. >>the same name, such as orngblue.map, then they could be renamed
  382. >>orngblu1.map and orngblu2.map.
  383. >>
  384. >>Bob Margolis
  385. >
  386. >Perhaps with a modification: eg: for Bob Margolis: BMorngblu.map, for
  387. >Wizzle: Worngblu.map, etc. 
  388. >davides@pipeline.com
  389. >Back up my hard drive?
  390. >How do I put it in reverse?
  391.  
  392.  
  393. - -
  394. - ------------------------------------------------------------
  395. Thanks for using Fractint, The Fractals and Fractint Discussion List
  396. Post Message:   fractint@xmission.com
  397. Get Commands:   majordomo@xmission.com "help"
  398. Administrator:  twegner@phoenix.net
  399. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  400.  
  401. ------------------------------
  402.  
  403. Date: Sun, 15 Mar 1998 12:29:40 -0500
  404. From: Theran Cochran <theranc@geocities.com>
  405. Subject: (fractint) Re: fractint-digest V1 #132
  406.  
  407. On Sat, 14 Mar 1998 05:48:18 -0700, Tim Wegner wrote:
  408. >
  409. > >I should do this, I just need to get off my duff. Should it be
  410. > >fractint.org or fractint.com? What are the meanings of the domain
  411. > >names.
  412. >   Probably the .org domain would be more strictly correct but the
  413. > .com domain might be more useful.
  414. >   For instance, if you registered www.fractint.com, then anyone
  415. > using Netscape could just enter "fractint" in the Open dialog box and
  416. > Netscape would automatically resolve this to www.fractint.com.  I
  417. > don't think that a .org domain would be resolved.
  418.  
  419. It wouldn't. I just tried it with aclu and it tried to contact
  420. www.aclu.com! Of course, when I originaly went looking for the ACLU's
  421. homepage, I tried www.aclu.org from the very start, because I knew it
  422. was a nonprofit organization.
  423.  
  424. >   For most of us, whether it's .org or .com wouldn't matter but it
  425. > would be much easier for new folk to find a .com address.
  426.  
  427. But it would mistakenly identify Fractint as a commercial product. To be
  428. honest, I would be more inclined to trust a "free download" from a
  429. fractint.org than a fractint.com.
  430.  
  431. When I first heard about fractint in a graphics programming book, I
  432. tried fractint.org right off the bat, then fractint.com, then yahoo.com.
  433.  
  434. Any domain would be better than what fractint has now, but lets make it
  435. express fractint's nature as a freeware, volunteer supported, program.
  436.  
  437. - -
  438. - ------------------------------------------------------------
  439. Thanks for using Fractint, The Fractals and Fractint Discussion List
  440. Post Message:   fractint@xmission.com
  441. Get Commands:   majordomo@xmission.com "help"
  442. Administrator:  twegner@phoenix.net
  443. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  444.  
  445. ------------------------------
  446.  
  447. Date: Sun, 15 Mar 1998 10:08:12 -0800
  448. From: Wizzle <wizzle@cci-internet.com>
  449. Subject: (fractint) Submitting Colormaps
  450.  
  451. Please select the maps you submit to me with some degree of care and I
  452. would prefer maps in a variety of categories from each person. I have
  453. established the following categories
  454.  
  455. 1. 123 Maps - maps with 1, 2, or 3 colors
  456. 2. Midtones - those trusty gradients with two sub-categories ....maps with
  457. long versus short intervals between colors
  458. 3. Blacks
  459. 4. Jewel tones
  460. 5. Stripes
  461. 6. Specialty
  462.  
  463. The naming of maps for people is working well for me as I then don't have
  464. to sort thru to find if I have the same name among hundreds of maps
  465. (yes....hundreds already). For future submittals please re-name your maps
  466. with your name....i.e. wizzle1.map wizzle2.map, etc. 
  467.  
  468. I am clearly going to have to do some pruning among the maps submitted
  469. since I can't post hundreds of gifs.  I think I will impose an arbitary
  470. limit of 20 maps per person posted but zip up the whole shebang so everyone
  471. can see what was submitted, if they like. How does this sound?
  472.  
  473. Angela
  474.  
  475.  
  476.  
  477. - -
  478. - ------------------------------------------------------------
  479. Thanks for using Fractint, The Fractals and Fractint Discussion List
  480. Post Message:   fractint@xmission.com
  481. Get Commands:   majordomo@xmission.com "help"
  482. Administrator:  twegner@phoenix.net
  483. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  484.  
  485. ------------------------------
  486.  
  487. Date: Sun, 15 Mar 1998 10:58:50 -0800 (PST)
  488. From: "James R. McKenzie" <whookam88@yahoo.com>
  489. Subject: Re: (fractint) HARD HARDWARE QUESTION
  490.  
  491. - ---Paul Derbyshire <ao950@freenet.carleton.ca> wrote:
  492. >
  493. > >(I\'d be doing RAID4, though, with that much disk -- afraid of disk
  494. > >failures if I had ten disks!)
  495. > RAID4? WTF is RAID4?
  496.  
  497. The definition of RAID I'm familiar with is Redundant Array of
  498. Inexpensive Disks.  RAID 4 simply means 4 disks daisy chained together
  499. unless the acromyn has been redeifned and I missed it.  Freakier
  500. things have happened.
  501.  
  502.  
  503. Hope this was semi-psuedo-sorta-kinda-quasi useful.  
  504.  
  505.  
  506.  
  507.                                James R. McKenzie
  508.  
  509.  
  510.  
  511.                                 WHOOKAM88@YAHOO.COM
  512. _________________________________________________________
  513. DO YOU YAHOO!?
  514. Get your free @yahoo.com address at http://mail.yahoo.com
  515.  
  516.  
  517. - -
  518. - ------------------------------------------------------------
  519. Thanks for using Fractint, The Fractals and Fractint Discussion List
  520. Post Message:   fractint@xmission.com
  521. Get Commands:   majordomo@xmission.com "help"
  522. Administrator:  twegner@phoenix.net
  523. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  524.  
  525. ------------------------------
  526.  
  527. Date: Sun, 15 Mar 1998 14:30:13 -0500 (EST)
  528. From: kragen@pobox.com (Kragen)
  529. Subject: Re: (fractint) HARD HARDWARE QUESTION
  530.  
  531. On Sat, 14 Mar 1998, Paul Derbyshire wrote:
  532. > >(I'd be doing RAID4, though, with that much disk -- afraid of disk
  533. > >failures if I had ten disks!)
  534. > RAID4? WTF is RAID4?
  535.  
  536. This is probably off-topic for fractint; I'll send you a description in
  537. private email.  Anyone else who would like one can send me email to ask
  538. for it.
  539.  
  540. Kragen
  541.  
  542.  
  543. - -
  544. - ------------------------------------------------------------
  545. Thanks for using Fractint, The Fractals and Fractint Discussion List
  546. Post Message:   fractint@xmission.com
  547. Get Commands:   majordomo@xmission.com "help"
  548. Administrator:  twegner@phoenix.net
  549. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  550.  
  551. ------------------------------
  552.  
  553. Date: Sun, 15 Mar 1998 11:51:53 -0800
  554. From: Mark Christenson <mchris@hooked.net>
  555. Subject: (fractint) gravibrot: a technical question
  556.  
  557. While I'm no math slouch, I am not really good with fractal set 
  558. theory.  While investigating gravibrot, I have encountered a 
  559. disturbing phenomenon.  As opposed to every other fractal 
  560. I have previously dealt with in any detail, where the set 
  561. boundary is relatively stable with respect to bailout value,
  562. most of the gravibrot set boundaries undergo gross changes 
  563. as "bailout" varies.  These changes are not resolved by 
  564. increasing "maxiter".
  565.  
  566. Is something wrong with my formulation, or are multi-function
  567. fractals just fundamentally different?
  568.  
  569.  
  570. Thanks, Bud
  571.  
  572.  
  573. - -
  574. - ------------------------------------------------------------
  575. Thanks for using Fractint, The Fractals and Fractint Discussion List
  576. Post Message:   fractint@xmission.com
  577. Get Commands:   majordomo@xmission.com "help"
  578. Administrator:  twegner@phoenix.net
  579. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  580.  
  581. ------------------------------
  582.  
  583. Date: Sun, 15 Mar 1998 14:54:58 -0500 (EST)
  584. From: kragen@pobox.com (Kragen)
  585. Subject: Re: (fractint) HARD HARDWARE QUESTION
  586.  
  587. On Sun, 15 Mar 1998, James R. McKenzie wrote:
  588. > > RAID4? WTF is RAID4?
  589. > RAID 4 simply means 4 disks daisy chained together
  590. > unless the acromyn has been redeifned and I missed it.  
  591.  
  592. Nope.
  593.  
  594. Kragen
  595.  
  596.  
  597. - -
  598. - ------------------------------------------------------------
  599. Thanks for using Fractint, The Fractals and Fractint Discussion List
  600. Post Message:   fractint@xmission.com
  601. Get Commands:   majordomo@xmission.com "help"
  602. Administrator:  twegner@phoenix.net
  603. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  604.  
  605. ------------------------------
  606.  
  607. Date: Sun, 15 Mar 1998 15:20:30 -0500
  608. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  609. Subject: (fractint) Pseudo 3D and Orbit Traps
  610.  
  611. Hi Paul et al,
  612.  
  613.   Thanks for explaining your methods!
  614.  
  615.   I've played a bit woth one of your formulas, hope you will like the
  616. result!
  617.  
  618.   Cheers,
  619.  
  620.         - Sylvie
  621.  
  622. frm:Gallet-10-02 { ; Modified Paul W. Carlson formula ( Petals_Mset)
  623.     ;****************************************************
  624.     ; Always use floating point math and outside=3Dsumm.
  625.     ;
  626.     ; Parameters:
  627.     ;   p1       =3D radius of the circles
  628.     ;   p2       =3D circle offset factor
  629.     ;   real(p3) =3D number of color ranges
  630.     ;   imag(p3) =3D number of colors in each color range
  631.     ;
  632.     ; Note that the equation variable is w, not z.  Always
  633.     ; initialize z to zero.
  634.     ;****************************************************
  635.     w =3D 0
  636.     c =3D pixel
  637.     r =3D real(p1) , bailout =3D imag(p1)
  638.     r2 =3D r * r
  639.     ro =3D r + r * p2
  640.     f =3D 1 - (2 + p2) * p2
  641.     k =3D r * (p2 + sqrt(f))  ;abs val of petal center (k,k)
  642.     k1 =3D k*(1,1) , k2 =3D conj(k1)
  643.     plsqd =3D 2 * r2 * f        ;petal length squared
  644.     z =3D 0
  645.     num_ranges =3D real(p3)
  646.     colors_in_range =3D imag(p3)
  647.     range_num =3D 0
  648.     iter =3D 0:
  649.     ;
  650.     w =3D 1 / (w*w + c)
  651.     ;****************************************************
  652.     ; Determine which pair of overlapping circles the
  653.     ; orbit point falls in, if any.
  654.     ;****************************************************
  655.     c1 =3D (|w - ro| < r2)
  656.     c2 =3D (|w + flip(ro)| < r2)
  657.     c3 =3D (|w + ro| < r2)
  658.     c4 =3D (|w - flip(ro)| < r2)
  659.     IF (c1 && c4)
  660.       d =3D |w-k1|
  661.     ELSEIF (c1 && c2)
  662.       d =3D |w-k2|
  663.     ELSEIF (c2 && c3)
  664.       d =3D |w+k1|
  665.     ELSEIF (c3 && c4)
  666.       d =3D |w+k2|
  667.     ELSE
  668.       d =3D 0
  669.     ENDIF
  670.     ;
  671.     IF (d > 0)
  672.     ;************************************************
  673.     ; Set z equal to the index into the colormap.
  674.     ;************************************************
  675.     index =3D colors_in_range * d / plsqd
  676.     z =3D index + range_num * colors_in_range + 1
  677.     ENDIF
  678.     ;
  679.     range_num =3D range_num + 1
  680.     IF (range_num =3D=3D num_ranges)
  681.       range_num =3D 0
  682.     ENDIF
  683.     iter =3D iter + 1
  684.     z =3D z - iter
  685.     d =3D=3D 0 && |w| < bailout
  686.     }
  687.  
  688. sg10-0202          { ; .                                    t=3D  0:23:39=
  689. =2E87
  690.                      ; Copyright Sylvie Gallet, Mar 15, 1998
  691.                      ; <sylvie_gallet@compuserve.com>
  692.                      ; t=3Dcalc time using a Pentium 166 at 1600 x 1200
  693.   reset=3D1960 type=3Dformula formulafile=3Dgallet10.frm
  694.   formulaname=3DGallet-10-02 passes=3D1
  695.   corners=3D0.185752777/0.219864777/0.84119192/0.86677592
  696.   params=3D0.3/1000/0.02/0/5/50 float=3Dy maxiter=3D511 inside=3D0
  697.   outside=3Dsumm periodicity=3D0
  698.   colors=3D000ZF0<6>gN6iP7iQ7<6>pXEpYEqZFq_Gr`H<2>tcKudLudLueM<22>zzc0FK<=
  699. 48>\
  700.   rwzC0S<48>ptz0PF<48>mzrP67<48>zww000<3>000 cyclerange=3D1/250
  701.   }
  702.  
  703. sg10-0203          { ; .                                    t=3D  0:31:17=
  704. =2E49
  705.                      ; Copyright Sylvie Gallet, Mar 15, 1998
  706.                      ; <sylvie_gallet@compuserve.com>
  707.                      ; t=3Dcalc time using a Pentium 166 at 1600 x 1200
  708.   reset=3D1960 type=3Dformula formulafile=3Dgallet10.frm
  709.   formulaname=3DGallet-10-02 passes=3D1
  710.   corners=3D0.609461737/0.625555433/0.633289578/0.64535985
  711.   params=3D0.3/1000/0.02/0/5/50 float=3Dy maxiter=3D1023 inside=3D0
  712.   outside=3Dsumm periodicity=3D0
  713.   colors=3D000ZF0<6>gN6iP7iQ7<6>pXEpYEqZFq_Gr`H<2>tcKudLudLueM<22>zzc0FK<=
  714. 48>\
  715.   rwzC0S<48>ptz0PF<48>mzrP67<48>zww000<3>000 cyclerange=3D1/250
  716.   }
  717.  
  718. sg10-0204          { ; .                                    t=3D  0:21:27=
  719. =2E56
  720.                      ; Copyright Sylvie Gallet, Mar 15, 1998
  721.                      ; <sylvie_gallet@compuserve.com>
  722.                      ; t=3Dcalc time using a Pentium 166 at 1600 x 1200
  723.   reset=3D1960 type=3Dformula formulafile=3Dgallet10.frm
  724.   formulaname=3DGallet-10-02 passes=3D1
  725.   corners=3D0.5763041752/0.6038251267/1.165412336/1.176458896/0.580909369=
  726. 2/1\
  727.   .159272077 params=3D0.25/1000/0.005/0.005/5/50 float=3Dy maxiter=3D1023=
  728.  
  729.   inside=3D0 outside=3Dsumm periodicity=3D0
  730.   colors=3DAA0AF0<28>IK6IK6JL7KM7<15>W`HXaIYbJZcKZcL<29>yyxzzzzzz<41>rdGq=
  731. cEo\
  732.   bE<11>SH6QF5NF5<4>8I0<2>9I19J1AJ2AK2BK3<26>RXJSYKTZM<27>xyxzzzyyx<18>oh=
  733. N\
  734.   ngLmfKleJ<13>VS0000<3>000 cyclerange=3D1/250
  735.   }
  736.  
  737. sg10-0205          { ; .                                    t=3D  0:22:07=
  738. =2E60
  739.                      ; Copyright Sylvie Gallet, Mar 15, 1998
  740.                      ; <sylvie_gallet@compuserve.com>
  741.                      ; t=3Dcalc time using a Pentium 166 at 1600 x 1200
  742.   reset=3D1960 type=3Dformula formulafile=3Dgallet10.frm
  743.   formulaname=3DGallet-10-02 passes=3D1
  744.   corners=3D0.5772222692/0.6024069008/1.162908107/1.178565807/0.578773040=
  745. 3/1\
  746.   .160840412 params=3D0.25/1000/0.005/0.005/5/50 float=3Dy maxiter=3D1023=
  747.  
  748.   inside=3D0 outside=3Dsumm periodicity=3D0
  749.   colors=3D038038<30>prw<16>JLPGIMGIM<26>bdhceidfjdfjegkfhl<16>uvzddh<23>=
  750. ttw\
  751.   uuxvvywwzwwz<20>idiUKK<30>ploqmqplp<15>ZQSG9A<48>upuG22<3>F00
  752.   cyclerange=3D1/250
  753.   }
  754.  
  755.  
  756. - -
  757. - ------------------------------------------------------------
  758. Thanks for using Fractint, The Fractals and Fractint Discussion List
  759. Post Message:   fractint@xmission.com
  760. Get Commands:   majordomo@xmission.com "help"
  761. Administrator:  twegner@phoenix.net
  762. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  763.  
  764. ------------------------------
  765.  
  766. Date: Sun, 15 Mar 1998 12:41:35 -0800
  767. From: Wizzle <wizzle@cci-internet.com>
  768. Subject: (fractint) Colormaps Received and Evaluated
  769.  
  770. I have received maps from Linda, Bud, Marie Drozis, Kerry (incomprehensible
  771. to me), Damien, Morgan Owens and Sylvie. Did I miss anyone?
  772.  
  773. If anyone besides Kerry sent me a list of numbers (which I thought were
  774. just a mistake), please re-submit the maps to me......remember that I am
  775. very simple minded. I did not realize that numbers meant maps. 
  776.  
  777. Progress to date.....
  778.  
  779. I've sorted Linda's, Bud's, Damien's and Marie's maps into the categories.
  780. I only got 5 maps from Damien...is that right? Sylvie and Morgan's
  781. submissions should be sorted by the end of today...so see???? it's not that
  782. bad of a job. 
  783.  
  784. All the maps are GREAT, BTW......if I "cut" a map it's because I'm getting
  785. a way lot of great stuff!!!! 
  786.  
  787. A note......making up the rules here as we go......if you adore a map
  788. currently in the standard fractint set...please submit it even if you are
  789. not the author. My idea is to have a technically superior set of maps to
  790. make all of your fractals glorious. 
  791.  
  792. Tim reminded me to remind you that any map submitted will flounder into the
  793. public domain.....so don't submit anything you think you could copyright. I
  794. suspect that after the upcoming nomenclature debate is done....the maps
  795. will lose any sense of identity. I too like maps I can identify easily.
  796. Won't it be nice when we have long filenames some day? <<hint hint to the
  797. programming division>>.
  798.  
  799. Angela
  800.  
  801. - -
  802. - ------------------------------------------------------------
  803. Thanks for using Fractint, The Fractals and Fractint Discussion List
  804. Post Message:   fractint@xmission.com
  805. Get Commands:   majordomo@xmission.com "help"
  806. Administrator:  twegner@phoenix.net
  807. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  808.  
  809. ------------------------------
  810.  
  811. Date: Sun, 15 Mar 1998 12:41:25 -0800
  812. From: Mark Christenson <mchris@hooked.net>
  813. Subject: Re: (fractint) Colormaps 
  814.  
  815. At 12:41 PM 3/15/98 -0800, Wizzle wrote:
  816. >Tim reminded me to remind you that any map submitted will flounder into the
  817. >public domain.....so don't submit anything you think you could copyright. 
  818.  
  819. Is this even possible?  I know good maps are definitely products of
  820. considerable effort, but I didn't think you could copyright a color 
  821. scheme.  When applied to a copyrighted image or registered 
  822. trademark, it's a different story... 
  823.  
  824. Bud
  825.  
  826.  
  827. - -
  828. - ------------------------------------------------------------
  829. Thanks for using Fractint, The Fractals and Fractint Discussion List
  830. Post Message:   fractint@xmission.com
  831. Get Commands:   majordomo@xmission.com "help"
  832. Administrator:  twegner@phoenix.net
  833. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  834.  
  835. ------------------------------
  836.  
  837. Date: Sat, 14 Mar 1998 19:36:26 -0800
  838. From: "Compaq Customer" <gumbycatNO-SPAM@ix.netcom.com>
  839. Subject: Re: (fractint) Color Maps
  840.  
  841. Here's my two cents worth:
  842.  
  843. Wizzle would like us to submit them with an identifying name.  She gave
  844. examples like wizzle1.map, carlson2.map, etc. (I used Lindaxxx.map, since
  845. gumbycat takes us the whole 8 digits and leaves no room for numbers.)  
  846. Given Wizzle's volunteer status on this project, I think we should comply
  847. with her wishes, rather than pursue our own direction and thereby cause her
  848. additional work.
  849.  
  850. However, once the maps are chosen, then maybe the authors could elect to
  851. keep the name under which that map was submitted, or change it.
  852.  
  853. Whatever we decide, I think we must ask Wizzle, not dictate to her, how she
  854. performs her volunteer function.
  855.  
  856. So . . . Wizzle . . . what to you think?
  857. Linda
  858.  
  859. > Kragen wrote:
  860. > > 
  861. > > Perhaps it would be better to let the authors decide what to name the
  862. > > maps, allowing them to choose either self-promoting, creative, or
  863. > > descriptive names -- or whatever else they choose.
  864.  
  865.  
  866.  
  867. - -
  868. - ------------------------------------------------------------
  869. Thanks for using Fractint, The Fractals and Fractint Discussion List
  870. Post Message:   fractint@xmission.com
  871. Get Commands:   majordomo@xmission.com "help"
  872. Administrator:  twegner@phoenix.net
  873. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  874.  
  875. ------------------------------
  876.  
  877. Date: Sat, 14 Mar 1998 23:43:38 -0600
  878. From: Lavondyss <nguy0505@tc.umn.edu>
  879. Subject: (fractint) Nove formula
  880.  
  881. Paul Derbyshire,
  882.  
  883. I like your Nova formulas, they rock!!! I used the one for Fractint, but it's seems
  884. to be jumbled or garbled when I use the floating point algorithm. I do not like the
  885. looks of it with the it. Do you have a better formula? Or do I have to alter the
  886. program myself? Becuase I have no clue how. I think I might fudge up the formula
  887. even worse. Thanx in advanced.
  888.  
  889. - -Lav
  890.  
  891.  
  892.  
  893.  
  894.  
  895. - -
  896. - ------------------------------------------------------------
  897. Thanks for using Fractint, The Fractals and Fractint Discussion List
  898. Post Message:   fractint@xmission.com
  899. Get Commands:   majordomo@xmission.com "help"
  900. Administrator:  twegner@phoenix.net
  901. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  902.  
  903. ------------------------------
  904.  
  905. Date: Sun, 15 Mar 1998 13:05:19 -0800
  906. From: Wizzle <wizzle@cci-internet.com>
  907. Subject: Re: (fractint) Colormaps 
  908.  
  909. It is probably not possible any more than it is possible to copyright a
  910. recipe......a book of recipes...yes....but a single one..no.  Nor can a
  911. math formula be copyrighted....along with a bunch of other stuff that can't
  912. be. But people persist in thinking they can copyright anything that is
  913. applied to paper.
  914.  
  915. At 12:41 PM 3/15/98 -0800, you wrote:
  916. >At 12:41 PM 3/15/98 -0800, Wizzle wrote:
  917. >>Tim reminded me to remind you that any map submitted will flounder into the
  918. >>public domain.....so don't submit anything you think you could copyright. 
  919. >
  920. >Is this even possible?  I know good maps are definitely products of
  921. >considerable effort, but I didn't think you could copyright a color 
  922. >scheme.  When applied to a copyrighted image or registered 
  923. >trademark, it's a different story... 
  924. >
  925. >Bud
  926.  
  927.  
  928. - -
  929. - ------------------------------------------------------------
  930. Thanks for using Fractint, The Fractals and Fractint Discussion List
  931. Post Message:   fractint@xmission.com
  932. Get Commands:   majordomo@xmission.com "help"
  933. Administrator:  twegner@phoenix.net
  934. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  935.  
  936. ------------------------------
  937.  
  938. Date: Sun, 15 Mar 1998 14:57:07 -0600
  939. From: "Damien M. Jones" <dmj@fractalus.com>
  940. Subject: Re: (fractint) Nove formula
  941.  
  942. Lavondyss,
  943.  
  944.  - [to Paul Derbyshire]
  945.  - I like your Nova formulas, they rock!!! I used the one for Fractint, but
  946.  - it's seems to be jumbled or garbled when I use the floating point
  947.  - algorithm.
  948.  
  949. Try turning off periodicity.  Press "g", type "periodicity=no", press RETURN.
  950.  
  951. Damien M. Jones   \\
  952. dmj@fractalus.com  \\  http://www.icd.com/tsd/ (temporary sanity designs)
  953.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  954.  
  955. - -
  956. - ------------------------------------------------------------
  957. Thanks for using Fractint, The Fractals and Fractint Discussion List
  958. Post Message:   fractint@xmission.com
  959. Get Commands:   majordomo@xmission.com "help"
  960. Administrator:  twegner@phoenix.net
  961. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  962.  
  963. ------------------------------
  964.  
  965. Date: Sun, 15 Mar 1998 14:58:53 -0600
  966. From: "Damien M. Jones" <dmj@fractalus.com>
  967. Subject: Re: (fractint) Colormaps Received and Evaluated
  968.  
  969. Angela,
  970.  
  971.  - I only got 5 maps from Damien...is that right?
  972.  
  973. Yes, I only sent you five maps.  You want more? :)  Most of my maps are
  974. done by hue-rotating a few basic maps that I make using a graphics package,
  975. so I didn't want to overload you with a bunch of maps that were different
  976. color variations of the same light/dark theme.  I can send more.  My maps
  977. tend to be very simple.
  978.  
  979. Damien M. Jones   \\
  980. dmj@fractalus.com  \\  http://www.icd.com/tsd/ (temporary sanity designs)
  981.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  982.  
  983. - -
  984. - ------------------------------------------------------------
  985. Thanks for using Fractint, The Fractals and Fractint Discussion List
  986. Post Message:   fractint@xmission.com
  987. Get Commands:   majordomo@xmission.com "help"
  988. Administrator:  twegner@phoenix.net
  989. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  990.  
  991. ------------------------------
  992.  
  993. Date: Sun, 15 Mar 1998 13:13:16 -0800
  994. From: Wizzle <wizzle@cci-internet.com>
  995. Subject: Re: (fractint) Color Maps
  996.  
  997. Linda...
  998.  
  999. Thanks...that is right in line with my thinking. Now that I've started the
  1000. project it seems we need to go in steps.
  1001.  
  1002. 1. submit and sort maps
  1003. 2. get them up for review (I plan on a zipped file and gifs at my site)
  1004. 3. narrow down the many many wonderful maps submitted to a reasonable
  1005. number.....we will prolly need a discussion about what the criteria ought
  1006. to be for this....but that is tomorrow's problem.
  1007. 4. name those maps selected in some reasonable way. 
  1008.  
  1009. Having gotten introduced to this group during the great Fractint Contest of
  1010. 1997, I'm sure everyone will have an opinion about steps 3 and 4!!!!!  My
  1011. job is to get us that far.....<<grin>>
  1012.  
  1013. Angela
  1014.  
  1015. At 07:36 PM 3/14/98 -0800, you wrote:
  1016. >Here's my two cents worth:
  1017. >
  1018. >Wizzle would like us to submit them with an identifying name.  She gave
  1019. >examples like wizzle1.map, carlson2.map, etc. (I used Lindaxxx.map, since
  1020. >gumbycat takes us the whole 8 digits and leaves no room for numbers.)  
  1021. >Given Wizzle's volunteer status on this project, I think we should comply
  1022. >with her wishes, rather than pursue our own direction and thereby cause her
  1023. >additional work.
  1024. >
  1025. >However, once the maps are chosen, then maybe the authors could elect to
  1026. >keep the name under which that map was submitted, or change it.
  1027. >
  1028. >Whatever we decide, I think we must ask Wizzle, not dictate to her, how she
  1029. >performs her volunteer function.
  1030. >
  1031. >So . . . Wizzle . . . what to you think?
  1032. >Linda
  1033. >
  1034. >> Kragen wrote:
  1035. >> > 
  1036. >> > Perhaps it would be better to let the authors decide what to name the
  1037. >> > maps, allowing them to choose either self-promoting, creative, or
  1038. >> > descriptive names -- or whatever else they choose.
  1039.  
  1040.  
  1041.  
  1042.  
  1043. - -
  1044. - ------------------------------------------------------------
  1045. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1046. Post Message:   fractint@xmission.com
  1047. Get Commands:   majordomo@xmission.com "help"
  1048. Administrator:  twegner@phoenix.net
  1049. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1050.  
  1051. ------------------------------
  1052.  
  1053. Date: Sun, 15 Mar 1998 13:32:34 -0800
  1054. From: Wizzle <wizzle@cci-internet.com>
  1055. Subject: Re: (fractint) Colormaps Received and Evaluated
  1056.  
  1057. I'm posting this reply to the list rather than just to Damien because I
  1058. have already discovered some very interesting things by reviewing the maps
  1059. submitted.
  1060.  
  1061. First and foremost.....people appear to gravitate toward a single
  1062. "technical area." By this I mean....long gradient maps....maps with 1,2 or
  1063. 3 colors, standard gradients, etc. Everyone also seems to have a strong
  1064. color preference. I happen to avoid orange and yellow....modifying them in
  1065. my maps to peach and light gold.
  1066.  
  1067. Hopefully one of the outcomes of the map exercise will be to get us all
  1068. trying out new sorts of "stuff." I'm now thinking of zipping the submitted
  1069. maps by category rather than as a giant blob so folks can stretch into new
  1070. areas. Feedback?
  1071.  
  1072. If I was able to sort the maps quickly...one day...it is because I looked
  1073. at them from a purely technical standpoint.....how fast did the colors
  1074. change....how much black.....were there oddly defined periods or the abrupt
  1075. changes that signify stripes? I tried to make no judgements on colors used.
  1076.  
  1077. One of the reasons I separated the maps into categories is because that is
  1078. a useful way to quickly improve an image. Rather than floundering among
  1079. dozens of possibilities.....I check out an image with all my
  1080. categories.....then narrow into the ideal map. 
  1081.  
  1082. I'm learning lots just by looking at your great maps...thanks so much!!! 
  1083.  
  1084. Angela
  1085.  
  1086.  
  1087. At 02:58 PM 3/15/98 -0600, you wrote:
  1088. >Angela,
  1089. >
  1090. > - I only got 5 maps from Damien...is that right?
  1091. >
  1092. >Yes, I only sent you five maps.  You want more? :)  Most of my maps are
  1093. >done by hue-rotating a few basic maps that I make using a graphics package,
  1094. >so I didn't want to overload you with a bunch of maps that were different
  1095. >color variations of the same light/dark theme.  I can send more.  My maps
  1096. >tend to be very simple.
  1097. >
  1098. >
  1099.  
  1100. - -
  1101. - ------------------------------------------------------------
  1102. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1103. Post Message:   fractint@xmission.com
  1104. Get Commands:   majordomo@xmission.com "help"
  1105. Administrator:  twegner@phoenix.net
  1106. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1107.  
  1108. ------------------------------
  1109.  
  1110. Date: Sun, 15 Mar 1998 23:18:29 +0100
  1111. From: abs <bengo@redestb.es>
  1112. Subject: (fractint) WinFract --> Bryce2
  1113.  
  1114. Hi, friends !
  1115. I newly began to use Bryce2 and Vistapro4 to represent in 3D images of
  1116. the Mandelbrot set generated with WinFract. I need information on that
  1117. maps of colors are the most appropriate. Is somebody able to help me ?
  1118. Thanx.
  1119.  
  1120. Albert
  1121.  
  1122.  
  1123.  
  1124.  
  1125. - -
  1126. - ------------------------------------------------------------
  1127. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1128. Post Message:   fractint@xmission.com
  1129. Get Commands:   majordomo@xmission.com "help"
  1130. Administrator:  twegner@phoenix.net
  1131. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1132.  
  1133. ------------------------------
  1134.  
  1135. Date: Sun, 15 Mar 1998 15:03:27 -0800
  1136. From: Mark Christenson <mchris@hooked.net>
  1137. Subject: (fractint) Sender: owner-fractint@lists.xmission.com
  1138.  
  1139. comment { commentary by Mark "Bud" Christenson 3/15/98
  1140.  
  1141. To those who have been waiting, my apologies; I have been busy,
  1142. and it has taken a while to select just one good example for each=20
  1143. type.  The .pars are, with one exception, by the author of each=20
  1144. formula.
  1145.  
  1146. For those with Fractint 19.6, you can copy everything from the=20
  1147. start to just before the signature text into a file with the extension
  1148. .par, move it to your Fractint directory, and load as usual.   For=20
  1149. those with older versions, you will have to copy the parameter sets=20
  1150. into a *.par file, delete the frm: prefix from the formulae and copy=20
  1151. them into a *.frm file, and load as usual.
  1152.  
  1153. I am posting this to the Fractal Art list by request, and to the Fractint=20
  1154. list to provide all existing formulae, and one example of each type,=20
  1155. in one location.
  1156.  
  1157.  
  1158. Enjoy, Bud
  1159.  
  1160. P.S.: Sylvie, I only had one example of gravijul-v2 from you, and it=20
  1161. wasn't periodic.  I hope you don't mind me using my own, since tiles=20
  1162. are one of the formula's coolest features :o)
  1163. }
  1164.  
  1165. gj11               { ; "Angelica", (c) Mark "Bud" Christenson 2/3/98
  1166.   reset=3D1930 type=3Dformula formulafile=3Dbudz.frm formulaname=3Dgravijul
  1167.   function=3Dasinh/atanh/atan passes=3Db
  1168.   center-mag=3D0/2.46231/0.3521127 params=3D1/0/0/0/2.95/0
  1169.   float=3Dy maxiter=3D300 inside=3D200 outside=3Datan
  1170.   colors=3D00_<22>S0`<6>eMfhQgiSh<2>n_koblqdmrfn<5>xuvzxxzzz<41>V22U00U11<39=
  1171. \
  1172.   >btxcvzbtx<4>WkpVinUglTekScjRai<4>MScLQbJO`HM_<5>AAU2451230001K7<2>0K20K\
  1173.   00K0<44>0z00z00y0<12>0l00k02j0<20>gE0000kkkFDWNJTRLRTLPVLN
  1174.   }
  1175.  
  1176. gja1-03a           { ; "Stargate", (c) Mark "Bud" Christenson 3/6/98
  1177.   reset=3D1930 type=3Dformula formulafile=3Dbudz.frm formulaname=3Dgravijul-=
  1178. a1
  1179.   function=3Dsqr/atanh/atan passes=3Dt center-mag=3D0/8.88178e-016/0.4841549
  1180.   params=3D1.2/0/0/0.93/0.966/2.2 float=3Dy inside=3D111 outside=3Dreal
  1181.   decomp=3D256
  1182.   colors=3D200<30>z00<31>000<8>FFFHHHJJJLLLMMMOOO<17>sss<30>222000012<30>0kz=
  1183. \
  1184.   <30>022000211<30>zsX<31>000
  1185.   }
  1186.  
  1187. gja2-031           { ; (c) (c) Mark "Bud" Christenson 3/15/98
  1188.   reset=3D1930 type=3Dformula formulafile=3Dbudz.frm formulaname=3Dgravijul-=
  1189. a2
  1190.   function=3Dcos/atanh/atan passes=3Dt
  1191.   center-mag=3D-0.82901/0.853874/1.990881 params=3D0.6/1.4/0.5/0.7/2.7/3.5
  1192.   float=3Dy inside=3D111 decomp=3D256
  1193.   colors=3DLK0<18>d20e10g00i00<8>z00<8>i00g00f00e11<18>MJJKKKKKK<21>cccdddff=
  1194. \
  1195.   f<6>sss<5>iiigggfffeee<21>LLLKKKKKL<15>5Ta4Ub3Vc3Wd2Xf<2>1_k1am0bo0dq0es\
  1196.   <2>0jy0kz0jx<6>0_k0Zi0Yh0Xf1We<18>JLMKKKLKK<18>d`LeaLgbMicN<8>zsX<6>mgQk\
  1197.   ePidOhcN<21>KK0 cyclerange=3D0/255
  1198.   }
  1199.  
  1200. gjv2-14a           { ; "Baroque", (c)  Bud 3/5/98 - formula by Sylvie Gallet
  1201.   reset=3D1930 type=3Dformula formulafile=3Dfilist.frm
  1202.   formulaname=3Dgravijul-v2 function=3Dtan/log/log passes=3Dt
  1203.   center-mag=3D0/0/0.425 params=3D0/1.8/0.7/0.7/6/0 float=3Dy maxiter=3D300
  1204.   inside=3D0 decomp=3D256
  1205.   colors=3D000<31>zsX<31>000<31>z00<31>000<8>FFFHHHJJJLLLMMMOOO<17>sss<30>22=
  1206. \
  1207.   2000012<30>0kz<30>022 cyclerange=3D0/255
  1208.   }
  1209.  
  1210. sg_gravijul-v3_09  { ; Copyright Sylvie Gallet, Mar 03, 1998
  1211.                      ; <sylvie_gallet@compuserve.com>
  1212.                      ; t=3Dcalc time using a Pentium 166 at 1600 x 1200
  1213.   reset=3D1960 type=3Dformula formulafile=3Dsg_gravj.frm
  1214.   formulaname=3Dgravijul-v3 function=3Dcotanh/flip/log passes=3D1
  1215.   center-mag=3D0/2.77556e-017/0.6987274/0.6283/-18.855/14.713
  1216.   params=3D-3.6/0/1/0/3.14159265358979/0 float=3Dy maxiter=3D256 inside=3D0
  1217.   decomp=3D256 periodicity=3D0
  1218.  
  1219.  }
  1220.  
  1221. grav2u01          { (c)  Philip. DiGiorgi - Mar '98
  1222.                      ; Generated on a K6-266 at 1600x1200
  1223.   reset=3D1960 type=3Dformula formulafile=3Dgrav.frm formulaname=3Dgravijul_=
  1224. 2u
  1225.   function=3Dcabs/acosh/abs/log passes=3D1
  1226.   center-mag=3D0/4.44089e-016/0.3854591/1/180 params=3D0.6/0.9/1/0/0.15/1
  1227.   float=3Dy maxiter=3D300 inside=3D0 decomp=3D256 periodicity=3D0
  1228.   colors=3DB36<10>UAHWBIYDK<24>zzz<21>000801<22>801801A44<12>Umc<5>zzz<6>Yof=
  1229. \
  1230.   UmcSi`<10>A55812812<9>634634533<14>00000S<21>77u<7>zzz<15>55f<12>22L11K1\
  1231.   1I00G00G10G000<8>000000100201<2>412513513513<13>513613824A25
  1232.   cyclerange=3D0/255
  1233.   }
  1234.  
  1235. ; *** start formulae
  1236.  
  1237. frm:gravijul { ; generalized r^(-2) by Mark "Bud" Christenson 1/25/98
  1238. ; defaults: p1 =3D (1,0) p2 =3D (0,0) p3 =3D (4,0)
  1239.    z =3D pixel:
  1240.  
  1241.    w =3D fn1(z)
  1242.    z =3D fn3(p1/fn2(w*w)) + p2
  1243.     |z| < p3
  1244.   }
  1245.  
  1246. frm:gravijul-v2 { ; Variation on Mark Christenson's gravijul by Sylvie=
  1247.  Gallet
  1248.    z =3D pixel :
  1249.    w =3D fn1(real(z)) , x =3D fn3(p1/fn2(w*w))
  1250.    w =3D fn1(imag(z)) , y =3D fn3(p1/fn2(w*w))
  1251.    z =3D x + flip(y) + p2
  1252.     |z| < p3
  1253.   }
  1254.  
  1255. frm:gravijul-v3 { ; Variation on Mark Christenson's gravijul by Sylvie=
  1256.  Gallet
  1257.    z =3D pixel:
  1258.    w =3D fn1(z)
  1259.    z =3D fn3(fn2(w*w)^p1) + p2
  1260.     |z| < p3
  1261.   }
  1262.  
  1263. frm:gravijul-a1 { ; generalized r^(-2) by Mark "Bud" Christenson 3/6/98
  1264. ; defaults: p1 =3D (1,0) p2 =3D (0,1) p3 =3D (1,4)
  1265.   q4 =3D real(p2)
  1266.   q2 =3D p1
  1267.   q1 =3D imag(p2) ; new knob 1
  1268.   q3 =3D real(p3) ; new knob 2
  1269.   q5 =3D imag(p3) ; bailout
  1270.    z =3D pixel:
  1271.  
  1272.    v =3D fn1(z)
  1273.    w =3D q1*(v*v)
  1274.    z =3D q3*fn3(q2/fn2(w)) + q4
  1275.     |z| < q5
  1276.   }
  1277.  
  1278. frm:gravijul-a2 { ; generalized r^(-2) by Mark "Bud" Christenson 3/6/98
  1279. ; favors p2
  1280. ; defaults: p1 =3D (1,1) p2 =3D (0,0) p3 =3D (1,4)
  1281.   q4 =3D p2
  1282.   q2 =3Dreal(p1)
  1283.   q1 =3D imag(p1) ; new knob 1
  1284.   q3 =3D real(p3) ; new knob 2=7F
  1285.   q5 =3D imag(p3) ; bailout
  1286.    z =3D pixel:
  1287.  
  1288.    v =3D fn1(z)
  1289.    w =3D q1*(v*v)
  1290.    z =3D q3*fn3(q2/fn2(w)) + q4
  1291.     |z| < q5
  1292.   }
  1293.  
  1294. frm:gravijul_2u { ; Variation of gravijul formula - Philip DiGiorgi 3/98
  1295.      ; Original formula by Mark Christenson
  1296.   bailout =3D imag(p3), k =3D real(p3)
  1297.   z =3D abs(pixel):
  1298.   x =3D real(z), y =3D imag(z)
  1299.   w =3D fn1(x) + k*y, v =3D fn1(y) + k*x
  1300.   u =3D fn2(w + flip(v))
  1301.   z =3D fn4(p1/fn3(u*u)) + p2
  1302.   |z| < bailout
  1303. }
  1304.  
  1305.  
  1306.  
  1307. - -
  1308. - ------------------------------------------------------------
  1309. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1310. Post Message:   fractint@xmission.com
  1311. Get Commands:   majordomo@xmission.com "help"
  1312. Administrator:  twegner@phoenix.net
  1313. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1314.  
  1315. ------------------------------
  1316.  
  1317. End of fractint-digest V1 #134
  1318. ******************************
  1319.  
  1320.