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

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #342
  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       Monday, December 14 1998       Volume 01 : Number 342
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Thu, 10 Dec 1998 21:27:36 -0500
  18. From: Paul DeCelle <PaulDC@prodigy.net>
  19. Subject: (fractint) A Seasonal Par
  20.  
  21. Hi, Everyone--
  22.  
  23. Here's my fractal contribution to the holidays - 
  24.  
  25.  
  26. Regards, Paul DeCelle
  27. Fractint Site  http://members.xoom.com/PaulDeCelle/welcome.html
  28. (Updated a couple of days ago with another 200+ hour Mandelbrot zoom..)
  29.  
  30.  
  31.  
  32. Fractal_Flake_98   { ; Paul DeCelle 12/10/98
  33.                      ; frm pd-hc_grav2
  34.                      ; frm by Phil DiGiorgi adapted from Paul Carlson
  35. reset=1960 type=formula formulafile=*.frm
  36. formulaname=pd-hc_grav2 function=conj/ident/sqr/sqrt passes=1
  37. center-mag=4.55191e-015/-3.68455e-015/0.9907546/1.0286/138.257/-0.53
  38. params=4.2/0.2/2.5/0.3/2/0.2 float=y maxiter=1023 inside=0
  39. outside=summ logmode=fly invert=1/0/0 viewwindows=1/0.75/yes/0/0
  40. colors=000000<44>RK`SKaTLbUMb<16>jhh<8>FEF<11>b`Z<10>I4IG0GH2H<16>kih<14\
  41. >XRgWPgVOgTMfTMf<30>khlkhlkgl<32>VMwVMwWNw<25>jjlkkkkjk<20>YKvQ3_P1Z
  42. }
  43.  
  44. frm:pd-HC_Grav2     {; formula by P. DiGiorgi, May, 1998
  45.        ; P. Carlson's Hi_Cycle method (modified)
  46.        ; applied to Mark Christenson's Gravijul formula
  47.     z = w = iter = range_num = bailout = 0
  48.  pa = real(p3), pb = imag(p3)
  49.   w = pixel
  50.   c = p2
  51.   i = (0,1)
  52.      k = 1.2 - pb
  53.      :
  54.   u = fn1(w)
  55.   w = fn3(p1/fn2(u*u))
  56.   wr = real(w)
  57.      w = w - wr + abs(wr) - c
  58.   angle = atan(imag(w)/wr)
  59.      ka = k * angle / pb
  60.      rw = k * cos(angle) + pb * cos(ka)
  61.      iw = k * sin(angle) + pb * sin(ka)
  62.      ww = rw + i * iw
  63.      ww = fn4(1 - ww)/ww
  64.   dist = abs(|w|-|ww|)
  65.      IF (dist < pa && iter > 1)
  66.  bailout = 1
  67.  index = 63 * dist / pa
  68.  z = index + range_num * 63 + 1
  69.      ENDIF
  70.      iter = iter + 1
  71.      range_num = range_num + 1
  72.      IF (range_num == 4)
  73.  range_num = 0
  74.      ENDIF
  75.      z = z - iter
  76.      bailout == 0 && |w| < 100
  77.  }
  78.  
  79. - --------------------------------------------------------------
  80. Thanks for using Fractint, The Fractals and Fractint Discussion List
  81. Post Message:   fractint@lists.xmission.com
  82. Get Commands:   majordomo@lists.xmission.com "help"
  83. Administrator:  twegner@phoenix.net
  84. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  85.  
  86. ------------------------------
  87.  
  88. Date: Thu, 10 Dec 1998 19:37:13 -0800
  89. From: kathy roth <kroth@well.com>
  90. Subject: (fractint) CSin_Atan_Julia
  91.  
  92. Lee Lane wrote:
  93.  
  94. > the
  95. > formula csin_atan_julia could not be found. Could you send it along or
  96. > otherwise advise me.
  97. >
  98.  
  99.  
  100. Hi-  Thanks!   :-)
  101. Here is Csin_Atan_Julia.
  102.  
  103. CSin_Atan_Julia {; Copyright (c) Paul W. Carlson, 1998
  104.     ;****************************************************
  105.     ; Always use floating point math and outside=summ.
  106.     ;
  107.     ; Parameters:
  108.     ;   p1       = Julia set coordinates
  109.     ;   real(p2) = maximum value of abs(real(w))
  110.     ;   real(p3) = number of color ranges
  111.     ;   imag(p3) = number of colors in each color range
  112.     ;****************************************************
  113.     prev_w = pixel
  114.     c = p1
  115.     z = 0
  116.     bailout = 0
  117.     iter = 0
  118.     range_num = 0
  119.     max_real = real(p2)
  120.     num_ranges = real(p3)
  121.     colors_in_range = imag(p3):
  122.     ;****************************************************
  123.     w = c * sin(prev_w)
  124.     ;****************************************************
  125.     IF (abs(real(w)) > max_real)
  126.  delta_i = imag(w) - imag(prev_w)
  127.  delta_r = real(w) - real(prev_w)
  128.  angle = abs(atan(delta_i / delta_r))
  129.  bailout = 1
  130.  range_index = 2 * colors_in_range * angle / pi
  131.  z = range_index + range_num * colors_in_range + 1
  132.     ENDIF
  133.     prev_w = w
  134.     range_num = range_num + 1
  135.     IF (range_num == num_ranges)
  136.         range_num = 0
  137.     ENDIF
  138.     iter = iter + 1
  139.     z = z - iter
  140.     bailout == 0
  141. }
  142.  
  143.  
  144. - --------------------------------------------------------------
  145. Thanks for using Fractint, The Fractals and Fractint Discussion List
  146. Post Message:   fractint@lists.xmission.com
  147. Get Commands:   majordomo@lists.xmission.com "help"
  148. Administrator:  twegner@phoenix.net
  149. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  150.  
  151. ------------------------------
  152.  
  153. Date: Fri, 11 Dec 1998 14:31:35 -0500
  154. From: Gedeon Peteri <gedeon@InfoAve.Net>
  155. Subject: (fractint) new page on website
  156.  
  157. I added a new page to my Geocities website consisting of Theme and
  158. Variations based on one of my Contest 98 entries. Yes, I am quite late
  159. with this sort of thing :) but much to my regret I was otherwise
  160. engaged. I hope you'll enjoy it.
  161.  
  162. Gedeon
  163.  
  164. - --
  165. - --------------------------------------------------------------
  166. Fractals: http://www.geocities.com/~gedeonp/index.html
  167. Member Infinite Fractal Loop
  168. Last updated: December 11, 1998 - new page added
  169. Photography: http://members.xoom.com/gedeonp/index.html
  170. Last updated: November 8, 1998
  171. - --------------------------------------------------------------
  172.  
  173.  
  174.  
  175. - --------------------------------------------------------------
  176. Thanks for using Fractint, The Fractals and Fractint Discussion List
  177. Post Message:   fractint@lists.xmission.com
  178. Get Commands:   majordomo@lists.xmission.com "help"
  179. Administrator:  twegner@phoenix.net
  180. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  181.  
  182. ------------------------------
  183.  
  184. Date: Fri, 11 Dec 1998 16:10:12 -0600
  185. From: Lee&SusanLane <slane@kiwi.dep.anl.gov>
  186. Subject: (fractint) St Clair's sstools.ini
  187.  
  188. Hi Les,
  189.  
  190. I too want to thank you for your sstools demo. I found comment= 
  191. particularly useful. A few questions:
  192.  
  193.   Is there a way to set viewwindows=3 but still have Fractint start with 
  194.   full screen, not the viewwindow?
  195.  
  196.   Askvideo=no works well on my IBM laptop which has only 800x600 
  197.   resolution, but on my PC with many possible resolutions, it gives a 
  198.   small sceen and incomplete calculation.
  199.  
  200.   What (and I hope you'll forgive my ignorance) is partobat?
  201.  
  202. Thanks,     Lee
  203.  
  204.  
  205. - --------------------------------------------------------------
  206. Thanks for using Fractint, The Fractals and Fractint Discussion List
  207. Post Message:   fractint@lists.xmission.com
  208. Get Commands:   majordomo@lists.xmission.com "help"
  209. Administrator:  twegner@phoenix.net
  210. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  211.  
  212. ------------------------------
  213.  
  214. Date: Fri, 11 Dec 1998 18:26:01 EST
  215. From: JimBeau549@aol.com
  216. Subject: Re: (fractint) new page on website
  217.  
  218.   Gedeon,
  219.  
  220.     I just viewed your new page and enjoyed it very much.  Great stuff!  I
  221. don't recall making any images with that formula in the past but I think I
  222. will in the near future though. <g>  Nice page Gedeon.
  223.  
  224.     Take care~
  225.  
  226.   Jim
  227.  
  228. - ---How many surrealists does it take to change a light-bulb?
  229. - -
  230. - -
  231. - ----------a fish!
  232.  
  233. - --------------------------------------------------------------
  234. Thanks for using Fractint, The Fractals and Fractint Discussion List
  235. Post Message:   fractint@lists.xmission.com
  236. Get Commands:   majordomo@lists.xmission.com "help"
  237. Administrator:  twegner@phoenix.net
  238. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  239.  
  240. ------------------------------
  241.  
  242. Date: Tue, 11 Aug 1998 20:29:38 -0400
  243. From: "Blake Hyde" <bhyde@connectu.net>
  244. Subject: (fractint) Finally, a gallery update!
  245.  
  246. ....,....|....,....|....,....|....,....|....,....|....,....|....,....|....,.
  247. ...|
  248. Well, it's been awhile.  I imagine most of you have forgotten me.  :) It's
  249. been quite a while (six months, in fact) since my galleries were last
  250. updated.  I have added a new gallery page, however, with eight new fractals
  251. generated with various formulae, as well as classic Julias.
  252.  
  253. For those who don't know, my pages are at:
  254.      http://www.connectu.net/bhyde/fractal.htm
  255.  
  256. BBL
  257.  Blake Hyde (ROT13: oulqr@pbaarpgh.arg)
  258. - -==(UDIC)==-
  259. Novan Dragon
  260. - --------------
  261. d+ e- N+ T--- Om-- U1347'!S'8!K u uC++ uF uG++ uLB+ uA nC+ nR nH- nP nI-- 
  262. nPT nS+ nT wM wC+ wS- wI++ wN- o oA++ y   a666
  263. - --------------
  264.  
  265.  
  266. - --------------------------------------------------------------
  267. Thanks for using Fractint, The Fractals and Fractint Discussion List
  268. Post Message:   fractint@lists.xmission.com
  269. Get Commands:   majordomo@lists.xmission.com "help"
  270. Administrator:  twegner@phoenix.net
  271. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  272.  
  273. ------------------------------
  274.  
  275. Date: Fri, 11 Dec 1998 18:17:13 -0700
  276. From: Xylen <mctupper@holly.colostate.edu>
  277. Subject: Re: (fractint) Finally, a gallery update!
  278.  
  279. Blake Hyde wrote:
  280. >=20
  281. > Well, it's been awhile.  I imagine most of you have forgotten me.  :) -=
  282. - -=20
  283.  
  284. I don't know about forgetting about you, but it seems like your caught
  285. in a fractal time warp. I got your message today, but it was sent in
  286. August!
  287.  
  288. Received: Fri, 11 Dec  1998 17:42:20 -0700
  289. Date:  Tue, 11 Aug 1998 20:29:38 -0400
  290.  
  291. Maybe you shouldn't try to follow Dr J. in his travels. Either that, or
  292. my mail server is somewhere in the East bud of a big Mandlebrot.  :)
  293.  
  294. btw, I love your images, especially the Winter Wonderland pair. I'm
  295. printing up a very similar picture for a Xmas gift for my parents.  :)
  296.  
  297. Xylen
  298. *maybe after finals, I can get back to making fractals*
  299.  
  300. xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  301. Windows 98   Pentium of Borg--=94Prepare to be assimil-Gated=94
  302. xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  303.  
  304. - --------------------------------------------------------------
  305. Thanks for using Fractint, The Fractals and Fractint Discussion List
  306. Post Message:   fractint@lists.xmission.com
  307. Get Commands:   majordomo@lists.xmission.com "help"
  308. Administrator:  twegner@phoenix.net
  309. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  310.  
  311. ------------------------------
  312.  
  313. Date: Fri, 11 Dec 1998 21:18:49 -0500
  314. From: "Blake Hyde" <bhyde@connectu.net>
  315. Subject: Re: (fractint) Finally, a gallery update!
  316.  
  317. At 06:17 PM 12/11/1998 -0700, you wrote:
  318. >
  319. >Blake Hyde wrote:
  320. >> 
  321. >> Well, it's been awhile.  I imagine most of you have forgotten me.  :) -- 
  322. >
  323. >I don't know about forgetting about you, but it seems like your caught
  324. >in a fractal time warp. I got your message today, but it was sent in
  325. >August!
  326. >
  327. >Received: Fri, 11 Dec  1998 17:42:20 -0700
  328. >Date:  Tue, 11 Aug 1998 20:29:38 -0400
  329. >
  330. >Maybe you shouldn't try to follow Dr J. in his travels. Either that, or
  331. >my mail server is somewhere in the East bud of a big Mandlebrot.  :)
  332. >
  333.  
  334. Sorry 'bout that, it's just a bit of craziness on my computer's part.
  335. I think its clock battery is about dead.
  336.  
  337. >btw, I love your images, especially the Winter Wonderland pair. I'm
  338. >printing up a very similar picture for a Xmas gift for my parents.  :)
  339. >
  340. I must give credit where credit is due.  I used Paul Carlson's formulae
  341. for those, since he is a much more talented formula writer than myself.
  342. :)
  343.  
  344. >Xylen
  345. >*maybe after finals, I can get back to making fractals*
  346. Bah.  I have finals in a week.  :P
  347.  Blake Hyde (ROT13: oulqr@pbaarpgh.arg)
  348. - -==(UDIC)==-
  349. Novan Dragon
  350. - --------------
  351. d+ e- N+ T--- Om-- U1347'!S'8!K u uC++ uF uG++ uLB+ uA nC+ nR nH- nP nI-- 
  352. nPT nS+ nT wM wC+ wS- wI++ wN- o oA++ y   a666
  353. - --------------
  354.  
  355.  
  356. - --------------------------------------------------------------
  357. Thanks for using Fractint, The Fractals and Fractint Discussion List
  358. Post Message:   fractint@lists.xmission.com
  359. Get Commands:   majordomo@lists.xmission.com "help"
  360. Administrator:  twegner@phoenix.net
  361. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  362.  
  363. ------------------------------
  364.  
  365. Date: Fri, 11 Dec 1998 21:48:50 -0500
  366. From: davides <davides@pipeline.com>
  367. Subject: (fractint) A par
  368.  
  369. Thought this one might be worth taking a quick look at :
  370.  
  371. ===========================================================================
  372.  
  373. New_Dimension44    { ;  (c) David Shanholtzer Dec 11, 1998 t=0:00:27.25
  374.                      ;  P200 MMX 1024x768
  375.                      ; color map: Dav48
  376.   reset=1960 type=formula formulafile=fractint.frm
  377.   formulaname=hc_julstar function=cos/ident/tan/asin
  378.   center-mag=0.0173824/0.023879/5.859492/1/29.999
  379.   params=1.345/0.375/3/-1/-1.5/0.5 float=y maxiter=500 bailout=100
  380.   fillcolor=0 inside=zmag outside=summ logmode=fly periodicity=0
  381.   viewwindows=1/0.75/yes/0/0
  382.   colors=000U19<24>l4P0Kz<2>00w<13>116222444<34>xxuzzwyyv<11>hhfmAcmAc<28>\
  383.   A20<10>yhW<22>A20111<32>zzw<22>111MC7RGA00A00AgUL<2>yhW<14>A20K00<13>U18
  384.   }
  385.  
  386.  
  387.  
  388. davides@pipeline.com
  389. ds30@umail.umd.edu
  390. Back up my hard drive?
  391. How do I put it in reverse?
  392.  
  393. - --------------------------------------------------------------
  394. Thanks for using Fractint, The Fractals and Fractint Discussion List
  395. Post Message:   fractint@lists.xmission.com
  396. Get Commands:   majordomo@lists.xmission.com "help"
  397. Administrator:  twegner@phoenix.net
  398. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  399.  
  400. ------------------------------
  401.  
  402. Date: Sat, 12 Dec 1998 00:35:48 EST
  403. From: JimBeau549@aol.com
  404. Subject: (fractint) The Wall...
  405.  
  406.     Here are my favs for today.  Good night everyone and Happy Holidays~
  407.  
  408.   Jim
  409.  
  410. ******************************************************************************
  411. ********
  412.  
  413.  
  414. The_Wall           { ; image(c)1998 JimWeaver   manlam(fn:fn)    t=02min02s
  415.                      ; sngd13z1.gif
  416.   reset=1960 type=manlam(fn||fn) function=log/sqr passes=t
  417.   center-mag=-0.54360090506085960/-0.08383292001005951/25.72496/0.766/-75
  418.   params=-0.3854/0/0.5 float=y maxiter=25 bailout=32767
  419.   bailoutest=imag inside=bof60 periodicity=0
  420.   colors=000113<13>325436534423<8>wuu<11>YJ9VF4SD4<5>421445<9>`THdWJfXJ<4>\
  421.   n`IoaIn`I<16>Y54X33Y65<13>skYuo`un`<4>riYqhYogX<31>221000101<17>J4AK4AL4\
  422.   BM5BN6BP7B<26>xdEzfFyeF<28>K7CI5BH5A<2>E4873D<9>112000000<12>112
  423.   }
  424.  
  425. AmneJa_Vu          { ; image(c)1998 JimWeaver   OK-20            t=12min39s
  426.                      ; k20face5.gif
  427.   reset=1960 type=formula formulafile=overkill.frm formulaname=OK-20
  428.   function=tan/cos passes=t
  429.   center-mag=-0.09969732104928353/-0.19396544131408460/61.85725/1/70
  430.   params=0/0 float=y inside=bof60 periodicity=0
  431.   colors=000YPG_RF<20>G62F51F53<7>KCMLDPMFQ<13>ago<8>IBJF7FF7F<12>CC3000kk\
  432.   kHFN<4>mia<5>J9D<7>a_R<11>FC7D95DA8<3>GFLHHPJJQ<18>uum<7>HBB<19>a_e<15>5\
  433.   11<17>VSSWTTYVV_XW<12>yyu<5>edba`_ZXXVTTVST<18>K3KJ1JK2J<11>XNG
  434.   }
  435.  
  436. JustAnotherSpiral  { ; image(c)1998 JimWeaver   OK-20            t=09min51s
  437.                      ; k20face6.gif
  438.   reset=1960 type=formula formulafile=overkill.frm formulaname=OK-20
  439.   function=tan/cos passes=t
  440.   center-mag=-0.06635723132939489/-0.16875897981081990/107.4897/1/180
  441.   params=0/0 float=y inside=bof60 periodicity=0
  442.   colors=00063I<8>IBpJCtIBo<8>203417000kkkO8XI6PS9bO8XXBhVBe`Dn`DmeFtfFujH\
  443.   z<15>431<10>vgD<15>743A65<15>c7be8ee8e<33>D8988C<2>859<16>6Bs<18>33C2292\
  444.   3AC35<22>qJe<25>D46<9>uJQ<12>ttC<5>103<2>53F
  445.   }
  446.  
  447.  
  448. - --------------------------------------------------------------
  449. Thanks for using Fractint, The Fractals and Fractint Discussion List
  450. Post Message:   fractint@lists.xmission.com
  451. Get Commands:   majordomo@lists.xmission.com "help"
  452. Administrator:  twegner@phoenix.net
  453. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  454.  
  455. ------------------------------
  456.  
  457. Date: Sat, 12 Dec 1998 11:39:25 -0500
  458. From: Gedeon Peteri <gedeon@InfoAve.Net>
  459. Subject: Re: (fractint) new page on website
  460.  
  461. Thanks for your comments, Jim. You posted another great par based on the
  462. manlam formula -- I don't know anyone who has done as well with that formula
  463. as you have. I very much liked The Wall too.
  464.  
  465. Gedeon
  466.  
  467. JimBeau549@aol.com wrote:
  468.  
  469. >   Gedeon,
  470. >
  471. >     I just viewed your new page and enjoyed it very much.  Great stuff!  I
  472. > don't recall making any images with that formula in the past but I think I
  473. > will in the near future though. <g>  Nice page Gedeon.
  474. >
  475. >     Take care~
  476. >
  477. >   Jim
  478. >
  479. > ---How many surrealists does it take to change a light-bulb?
  480. > -
  481. > -
  482. > ----------a fish!
  483. >
  484. > --------------------------------------------------------------
  485. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  486. > Post Message:   fractint@lists.xmission.com
  487. > Get Commands:   majordomo@lists.xmission.com "help"
  488. > Administrator:  twegner@phoenix.net
  489. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  490.  
  491. - --
  492. - --------------------------------------------------------------
  493. Fractals: http://www.geocities.com/~gedeonp/index.html
  494. Member Infinite Fractal Loop
  495. Last updated: December 11, 1998 - new page added
  496. Photography: http://members.xoom.com/gedeonp/index.html
  497. Last updated: November 8, 1998
  498. - --------------------------------------------------------------
  499.  
  500.  
  501.  
  502. - --------------------------------------------------------------
  503. Thanks for using Fractint, The Fractals and Fractint Discussion List
  504. Post Message:   fractint@lists.xmission.com
  505. Get Commands:   majordomo@lists.xmission.com "help"
  506. Administrator:  twegner@phoenix.net
  507. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  508.  
  509. ------------------------------
  510.  
  511. Date: Sat, 12 Dec 1998 11:53:04 -0600
  512. From: "Tim Wegner" <twegner@phoenix.net>
  513. Subject: (fractint) Function variable presets
  514.  
  515. I have a question for users about the function variables in Fractint. 
  516. These are the variables fn1, fn2, etc. that are used in some built-in 
  517. fractal types and can also be used in formula types.  
  518.  
  519. Currently there are no preset values for these that are fractal-type-
  520. specific. For example, if fn1 = sin and fn2 = tanh, these values are 
  521. remembered when you change fractal types even though the 
  522. function variables probably have completely different meaning for 
  523. the new type.  
  524.  
  525. I have two related issues, both relating to some code contributed 
  526. by Humberto Baptista.
  527.  
  528. 1. Humberto has added a new type (another from the prolific Cliff 
  529. Pickover) that generates just a naked blue dot with the default 
  530. values of the function variables. This fractal type is begging for 
  531. some different default function variable values, but I'm not sure what 
  532. the logic would be. Change to the defaults only when the fractal 
  533. type changes? But if you played with this fractal, moved to a 
  534. different type, then came back, would the function variables be 
  535. reset? Or should Fractint remember the function variable values, 
  536. and have separate defaults, for each fractal that uses them?  
  537.  
  538. 2. Humberto has also added a generalized popcornjul fractal. I 
  539. dislike adding new types unncessesarily, and would prefer to 
  540. merge the generalized type with the limited one. This, however, 
  541. requires making the function variables default to the values that 
  542. make the generalized popcornjul the same as the ungeneralized 
  543. one, so the issue of preset values for function variables comes up 
  544. again.  
  545.  
  546. Does anyone object to giving all fractals that use function variables 
  547. preset values that are reset to the defaults whenever the fractal 
  548. type is changed to that type?  
  549.  
  550. Tim
  551.  
  552.  
  553.  
  554.  
  555.  
  556. - --------------------------------------------------------------
  557. Thanks for using Fractint, The Fractals and Fractint Discussion List
  558. Post Message:   fractint@lists.xmission.com
  559. Get Commands:   majordomo@lists.xmission.com "help"
  560. Administrator:  twegner@phoenix.net
  561. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  562.  
  563. ------------------------------
  564.  
  565. Date: Sat, 12 Dec 1998 13:20:15 EST
  566. From: SKarl52884@aol.com
  567. Subject: Re: (fractint) Function variable presets
  568.  
  569. In a message dated 12/12/98 12:55:02 PM Eastern Standard Time,
  570. twegner@phoenix.net writes:
  571.  
  572. << Does anyone object to giving all fractals that use function variables 
  573.  preset values that are reset to the defaults whenever the fractal 
  574.  type is changed to that type?  
  575.  
  576.  Tim
  577.   >>
  578. Hi Tim,
  579.  
  580.     If I'm hearing you correctly...this would eliminate the
  581. "surprize" factor ...when one has been working with a specific formula and
  582. then
  583. changes to an other without "restarting" fractint???
  584.     " If " this is the case... I, personally, might miss the occasional surprize
  585. of finding that fractint has retained some info. from the last type
  586. used....but I wouldn't call it an objection. 
  587.     Maybe....in an instance where there is going to be information
  588. carried over from the last "type"....fractint could prompt with the option...
  589. "Restart fractint? y or n ?"   right at the point where one would begin to
  590. move to and other .frm?
  591. Just a thought. Either way is ok with me.
  592. { awaiting 2.0 with baited breath!}
  593. Steve
  594.    
  595.  
  596.  
  597. - --------------------------------------------------------------
  598. Thanks for using Fractint, The Fractals and Fractint Discussion List
  599. Post Message:   fractint@lists.xmission.com
  600. Get Commands:   majordomo@lists.xmission.com "help"
  601. Administrator:  twegner@phoenix.net
  602. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  603.  
  604. ------------------------------
  605.  
  606. Date: Sat, 12 Dec 1998 13:28:09 EST
  607. From: SKarl52884@aol.com
  608. Subject: Re: (fractint) Function variable presets
  609.  
  610. In a message dated 12/12/98 12:55:02 PM Eastern Standard Time,
  611. twegner@phoenix.net writes:
  612.  
  613. << Does anyone object to giving all fractals that use function variables 
  614.  preset values that are reset to the defaults whenever the fractal 
  615.  type is changed to that type?   >>
  616.  
  617. Hi...
  618.  
  619. How about an option is sstools.ini?
  620. resetfn=yes/no
  621.  
  622. Also....possibly... and option to "not" load the default color map when
  623. changing types...but stay with the last map used?
  624.  
  625. defaultmap=y/n
  626. Steve
  627.  
  628.  
  629. - --------------------------------------------------------------
  630. Thanks for using Fractint, The Fractals and Fractint Discussion List
  631. Post Message:   fractint@lists.xmission.com
  632. Get Commands:   majordomo@lists.xmission.com "help"
  633. Administrator:  twegner@phoenix.net
  634. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  635.  
  636. ------------------------------
  637.  
  638. Date: Sat, 12 Dec 1998 13:34:01 EST
  639. From: SKarl52884@aol.com
  640. Subject: (fractint) PBS/Fractals
  641.  
  642. Greetings,
  643. I heard rumor that there was a PBS special on fractals?
  644. Does anyone know if is it planned to be re-run?
  645. Steve
  646.  
  647. - --------------------------------------------------------------
  648. Thanks for using Fractint, The Fractals and Fractint Discussion List
  649. Post Message:   fractint@lists.xmission.com
  650. Get Commands:   majordomo@lists.xmission.com "help"
  651. Administrator:  twegner@phoenix.net
  652. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  653.  
  654. ------------------------------
  655.  
  656. Date: Sat, 12 Dec 1998 12:42:07 -0600
  657. From: "Justin A. Kolodziej" <4wg7kolodzie@vms.csd.mu.edu>
  658. Subject: Re: (fractint) Function variable presets
  659.  
  660. SKarl52884@aol.com wrote:
  661. > In a message dated 12/12/98 12:55:02 PM Eastern Standard Time,
  662. > twegner@phoenix.net writes:
  663. > << Does anyone object to giving all fractals that use function variables
  664. >  preset values that are reset to the defaults whenever the fractal
  665. >  type is changed to that type?   >>
  666.  
  667. Finally... something that has to do wih the program itself rather than its
  668. results :)
  669.  
  670. > Hi...
  671. > How about an option is sstools.ini?
  672. > resetfn=yes/no
  673.  
  674. Yea... and make it a menu option somewhee.
  675.  
  676. > Also....possibly... and option to "not" load the default color map when
  677. > changing types...but stay with the last map used?
  678. > defaultmap=y/n
  679.  
  680. Also yes, and also make it a menu option somewhere.
  681.  
  682. (Still) waiting very impatiently for version 20!!! (2.0 was a LONG time ago  
  683. :)  )
  684.  
  685. Justin A. Kolodziej
  686. - -- 
  687. DU
  688. DU HAST
  689. DU HAST MICH...    --Rammstein
  690.  
  691. - --------------------------------------------------------------
  692. Thanks for using Fractint, The Fractals and Fractint Discussion List
  693. Post Message:   fractint@lists.xmission.com
  694. Get Commands:   majordomo@lists.xmission.com "help"
  695. Administrator:  twegner@phoenix.net
  696. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  697.  
  698. ------------------------------
  699.  
  700. Date: Sat, 12 Dec 1998 20:17:48 -0000
  701. From: "Les St Clair" <les_stclair@crosstrees.prestel.co.uk>
  702. Subject: Re: (fractint) St Clair's sstools.ini
  703.  
  704. Hi Lee,
  705.  
  706. >  Is there a way to set viewwindows=3 but still have Fractint start with
  707. >  full screen, not the viewwindow?
  708.  
  709.  
  710. I don't know a way to do this directly with an sstools.ini command. However,
  711. here's a workaround:
  712.  
  713. Edit your sstools.ini file to contain the line
  714. viewwindows=3
  715.  
  716. Now write a "key" file (just a plain text file) containing the following lines
  717.  
  718. "v"
  719. "n"
  720. "ENTER"
  721.  
  722. Save this file as "vw_no.key"
  723.  
  724. Now start Fractint using the command line "fractint autokeyname=vw_no.key
  725. autokey=play"
  726. (This command line can be saved as a batch file to allow you to start Fractint
  727. this way every time).
  728.  
  729. The net result of all this is to launch Fractint with a viewwindows setting of
  730. "3", but immediately press the keys <v> <n> and <enter>, thus returning you to
  731. full screen mode. Now whenever you press <v> the default viewwindow reduction
  732. factor will be "3"
  733.  
  734. Clear as mud ?
  735.  
  736. >  What (and I hope you'll forgive my ignorance) is partobat?
  737.  
  738. It's a stand-alone program dedicated to producing Fractint batch files from
  739. Fractint par files.
  740. It simply scans the contents of the par file and writes a batch file based on
  741. any settings (e.g. video mode etc.) in the [partobat] section of sstools.ini
  742.  
  743. You can get partobat from Jo Weber's site at:
  744.  
  745. http://ourworld.compuserve.com/homepages/joweber
  746.  
  747. cheers, Les
  748.  
  749.  
  750.  
  751.  
  752. - --------------------------------------------------------------
  753. Thanks for using Fractint, The Fractals and Fractint Discussion List
  754. Post Message:   fractint@lists.xmission.com
  755. Get Commands:   majordomo@lists.xmission.com "help"
  756. Administrator:  twegner@phoenix.net
  757. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  758.  
  759. ------------------------------
  760.  
  761. Date: Sat, 12 Dec 1998 16:44:36 -0800
  762. From: Mark Christenson <mchris@hooked.net>
  763. Subject: Re: (fractint) fn variable presets
  764.  
  765. At 11:53 AM 12/12/98 -0600, Tim wrote:
  766. >Does anyone object to giving all fractals that use function variables 
  767. >preset values that are reset to the defaults whenever the fractal 
  768. >type is changed to that type?  
  769.  
  770. Sounds fair.  I would also like the ability to have preset 
  771. (default) fn and parameter (p1 - p3) variables for formula types 
  772. (and perhaps more of them?).
  773.  
  774. Since we're talking about Fractint v20 final tweaks (I know,
  775. I should use the wish list, but... well, I'm lazy - e.g.:), how 
  776. about an easy one with big benefits: the ability to delete pars 
  777. from the "@" (load par) screen?  It would spare me a lot of 
  778. note taking and manual editing!
  779.  
  780.  
  781. Another frenzied Fractint fanatic filling his umpteenth
  782. drool cup in anticipation,
  783.                 Bud
  784.  
  785.  
  786. - --------------------------------------------------------------
  787. Thanks for using Fractint, The Fractals and Fractint Discussion List
  788. Post Message:   fractint@lists.xmission.com
  789. Get Commands:   majordomo@lists.xmission.com "help"
  790. Administrator:  twegner@phoenix.net
  791. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  792.  
  793. ------------------------------
  794.  
  795. Date: Sat, 12 Dec 1998 22:35:19 EST
  796. From: PKyleCA@aol.com
  797. Subject: Re: (fractint) fn variable presets
  798.  
  799. In a message dated 12/12/98 4:47:01 PM Pacific Standard Time,
  800. mchris@hooked.net writes:
  801.  
  802. <<  how 
  803.  about an easy one with big benefits: the ability to delete pars 
  804.  from the "@" (load par) screen?  It would spare me a lot of 
  805.  note taking and manual editing! >>
  806.  
  807.  
  808. I go for that one
  809.  
  810. - --------------------------------------------------------------
  811. Thanks for using Fractint, The Fractals and Fractint Discussion List
  812. Post Message:   fractint@lists.xmission.com
  813. Get Commands:   majordomo@lists.xmission.com "help"
  814. Administrator:  twegner@phoenix.net
  815. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  816.  
  817. ------------------------------
  818.  
  819. Date: Sun, 13 Dec 1998 12:26:40 -0500
  820. From: JoWeber <JoWeber@compuserve.com>
  821. Subject: (fractint) MotW 11 + Jennen-pars
  822.  
  823. Hi All,
  824.  
  825. today I updated my site with the latest work of Arno Jennen - see the
  826. GraphDevelopers Page.
  827. Also take a look at the Mandel of the Week 11.
  828.  
  829. Cheers --Jo--
  830.  
  831. http://ourworld.compuserve.com/homepages/joweber
  832.  
  833. - --------------------------------------------------------------
  834. Thanks for using Fractint, The Fractals and Fractint Discussion List
  835. Post Message:   fractint@lists.xmission.com
  836. Get Commands:   majordomo@lists.xmission.com "help"
  837. Administrator:  twegner@phoenix.net
  838. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  839.  
  840. ------------------------------
  841.  
  842. Date: Sun, 13 Dec 1998 13:36:51 -0500
  843. From: wdecker@csc.com
  844. Subject: Re: (fractint) The Wall...
  845.  
  846. Nice images, Jim.
  847.  
  848. You got me started on the manlam formula and it was difficult to stop.
  849.  
  850. Bill Decker
  851.  
  852.  
  853. sea-catch          { ;  (c) Bill Decker Dec 13, 1998 t=  0:02:38.74
  854.                      ;  on P100 1024x768
  855.   reset=1960 type=manlam(fn||fn) function=ident/exp passes=1
  856.   center-mag=+1.13896158280369300/-1.38157675034323400/32.85922/1.0353/149\
  857.   .949/14.604 params=-0.3854/1/0.5 float=y maxiter=25 bailout=32767
  858.   bailoutest=imag inside=bof60 periodicity=0
  859.   colors=000<15>000<14>zzz<14>000<208>000
  860.   }
  861.  
  862.  
  863.  
  864.  
  865. - --------------------------------------------------------------
  866. Thanks for using Fractint, The Fractals and Fractint Discussion List
  867. Post Message:   fractint@lists.xmission.com
  868. Get Commands:   majordomo@lists.xmission.com "help"
  869. Administrator:  twegner@phoenix.net
  870. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  871.  
  872. ------------------------------
  873.  
  874. Date: Sun, 13 Dec 1998 14:02:27 -0800
  875. From: "Faye Williams" <arkangel@sb.net>
  876. Subject: (fractint) website
  877.  
  878. Hi All,
  879.  
  880. I've updated my site with 4 new galleries plus I redid most of gallery 4.
  881. Please take a look.  Comments are greatly appreciated.
  882.  
  883. Cheers.
  884. Faye
  885.  
  886.  
  887. I like deadlines. I especially like the whooshing sound of them
  888. as they go flying by. 
  889.  
  890. arkangel1@mindspring.com
  891. http://www.sb.net/arkangel/
  892.  
  893.  
  894. - --------------------------------------------------------------
  895. Thanks for using Fractint, The Fractals and Fractint Discussion List
  896. Post Message:   fractint@lists.xmission.com
  897. Get Commands:   majordomo@lists.xmission.com "help"
  898. Administrator:  twegner@phoenix.net
  899. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  900.  
  901. ------------------------------
  902.  
  903. Date: Sun, 13 Dec 1998 19:42:49 EST
  904. From: JimBeau549@aol.com
  905. Subject: (fractint) slide show help
  906.  
  907.   Hi folks,
  908.  
  909.     I was wondering if there's any kind of program that will allow me to have
  910. a slide show of GIFs that cycles the colormap while each image is shown.  Is
  911. this even possible??  If ANYone knows how I can achieve this PLEASE let me
  912. know? :)
  913.  
  914.    Thanks~
  915.  
  916.   Jim
  917.  
  918. - --------------------------------------------------------------
  919. Thanks for using Fractint, The Fractals and Fractint Discussion List
  920. Post Message:   fractint@lists.xmission.com
  921. Get Commands:   majordomo@lists.xmission.com "help"
  922. Administrator:  twegner@phoenix.net
  923. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  924.  
  925. ------------------------------
  926.  
  927. Date: Sun, 13 Dec 1998 19:48:36 -0600 (CST)
  928. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  929. Subject: (fractint) Five Holiday 'Brots
  930.  
  931. comment {
  932. I couldn't help it - I just had to make a few more holiday images.
  933. Here's five holiday 'Brots using a formula/rendering method
  934. combination that I don't think I've posted before.
  935.  
  936. Paul Carlson
  937. }
  938.  
  939. czxmasm01          {; Copyright (c) Paul W. Carlson, 1998
  940.   reset=1960 type=formula formulafile=czxmas.frm
  941.   formulaname=CoszzcM passes=t
  942.   center-mag=-3.35175255556370600/-0.16400258599379950/46713.02\
  943.   /1/-69.998 params=0.7/0/2/125
  944.   float=y maxiter=500 inside=253 outside=summ
  945.   colors=400T11<29>v77w77x77z88z88z88<88>O000T0<49>0o00o00o00o0\
  946.   0o0<11>0j00j00j00j00i0<53>0T0000000zzz000000
  947.   }
  948.  
  949. czxmasm02          {; Copyright (c) Paul W. Carlson, 1998
  950.   reset=1960 type=formula formulafile=czxmas.frm
  951.   formulaname=CoszzcM passes=t
  952.   center-mag=-8.92227/2.81025e-016/49.31842/1/90
  953.   params=0.5/0/2/125
  954.   float=y maxiter=500 inside=253 outside=summ
  955.   colors=400T11<29>v77w77x77z88z88z88<88>O000T0<49>0o00o00o00o0\
  956.   0o0<11>0j00j00j00j00i0<53>0T0000000zzz000000
  957.   }
  958.  
  959. czxmasm03          {; Copyright (c) Paul W. Carlson, 1998
  960.   reset=1960 type=formula formulafile=czxmas.frm
  961.   formulaname=CoszzcM passes=t
  962.   center-mag=-5.33068752105679000/+0.05702652356468915/1330764/\
  963.   1/-99.999 params=0.7/0/2/125
  964.   float=y maxiter=500 inside=253 outside=summ
  965.   colors=400T11<29>v77w77x77z88z88z88<88>O000T0<49>0o00o00o00o0\
  966.   0o0<11>0j00j00j00j00i0<53>0T0000000zzz000000
  967.   }
  968.  
  969. czxmasm04          {; Copyright (c) Paul W. Carlson, 1998
  970.   reset=1960 type=formula formulafile=czxmas.frm
  971.   formulaname=CoszzcM passes=t
  972.   center-mag=5.14742/2.22045e-016/10.07049/1/90
  973.   params=0.5/0/2/125
  974.   float=y maxiter=500 inside=253 outside=summ
  975.   colors=400T11<29>v77w77x77z88z88z88<88>O000T0<49>0o00o00o00o0\
  976.   0o0<11>0j00j00j00j00i0<53>0T0000000zzz000000
  977.   }
  978.  
  979. czxmasm05          {; Copyright (c) Paul W. Carlson, 1998
  980.   reset=1960 type=formula formulafile=czxmas.frm
  981.   formulaname=CoszzcM passes=t
  982.   center-mag=-5.32645/8.32667e-017/12.53133/1/90
  983.   params=0.7/0/2/125
  984.   float=y maxiter=500 inside=253 outside=summ
  985.   colors=400T11<29>v77w77x77z88z88z88<88>O000T0<49>0o00o00o00o0\
  986.   0o0<11>0j00j00j00j00i0<53>0T0000000zzz000000
  987.   }
  988.  
  989. frm:CoszzcM {; Copyright (c) Paul W. Carlson, 1998
  990.     ; real(p1) = controls size of elements
  991.     ; imag(p1)   not used
  992.     ; real(p2) = number of color ranges
  993.     ; imag(p2) = number of colors in a range
  994.     ;
  995.     pw = z = iter = range_num = bailout = 0
  996.     c = pixel
  997.     max_ratio = real(p1)
  998.     num_ranges = real(p2)
  999.     colors_in_range = imag(p2)
  1000.     factor = (colors_in_range - 1) / max_ratio
  1001.     :
  1002.     w = cos(pw * pw) + c
  1003.     ;
  1004.     ratio = |pw| / |w|
  1005.     pw = w
  1006.     IF (ratio < max_ratio && iter > 0)
  1007.     bailout = 1
  1008.     z = factor * ratio + range_num * colors_in_range + 1
  1009.     ENDIF
  1010.     range_num = range_num + 1
  1011.     IF (range_num == num_ranges)
  1012.     range_num = 0
  1013.     ENDIF
  1014.     iter = iter + 1
  1015.     z = z - iter
  1016.     bailout == 0 && |w| < 1.0e20
  1017. }
  1018.  
  1019.  
  1020. - --------------------------------------------------------------
  1021. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1022. Post Message:   fractint@lists.xmission.com
  1023. Get Commands:   majordomo@lists.xmission.com "help"
  1024. Administrator:  twegner@phoenix.net
  1025. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1026.  
  1027. ------------------------------
  1028.  
  1029. Date: Mon, 14 Dec 1998 03:30:07 EST
  1030. From: JimBeau549@aol.com
  1031. Subject: (fractint) 9 manlam pars
  1032.  
  1033.    Hi again,
  1034.  
  1035.       These get more and more strange every day!  Enjoy~
  1036.  
  1037.     Jim
  1038.  
  1039. ****************************************************************************
  1040.  
  1041.  
  1042. jwmlam01.gif       { ; image(c)1998 JimWeaver   manlam(fn:fn)    t=00min42s
  1043.                      ;  
  1044.   reset=1960 type=manlam(fn||fn) function=log/sqr passes=t
  1045.   center-mag=+0.31002070116860740/-0.00000000000000733/0.9178909/1/-90
  1046.   params=-0.606/0/0.333 float=y maxiter=25 bailoutest=imag
  1047.   inside=bof60 periodicity=0
  1048.   colors=000jbX<21>CA6A95985<2>553443444545745864<14>SF6TG7VH7WI7YJ8<10>wb\
  1049.   O<8>cQB`O9`O9<47>P00A5D<2>I9P<7>kgloloqoq<2>wutyxvyxv<5>fiocgn_dlWbkT_jQ\
  1050.   YiMVg<6>BPh<18>wUw<9>52N<34>eJcfJcfKc<10>lXVlYVm_W<6>yog<8>kdY
  1051.   }
  1052.  
  1053. jwmlam02.gif       { ; image(c)1998 JimWeaver   manlam(fn:fn)    t=01min28s
  1054.                      ; zoom of jwmlam01.gif
  1055.   reset=1960 type=manlam(fn||fn) function=log/sqr passes=t
  1056.   center-mag=+0.46967812945945240/-0.30144846240982800/4.874556/0.9573/-53\
  1057.   .751/12.624 params=-0.606/0/0.333 float=y maxiter=25 bailoutest=imag
  1058.   inside=bof60 periodicity=0
  1059.   colors=zzenWS<6>d70<3>qaN<6>E20<3>400<4>H00<6>zzh<5>qV7oP0lM0<3>cB0<3>lP\
  1060.   D<3>c00<3>m00o00o42<3>rLDsPGvVLtXM<6>zze<13>z`6zb7zX0zV0<6>cD0_B0YB1aH6<\
  1061.   3>vpX<3>gQBcJ5aG5<4>P13pTA<4>kGA<5>zud<5>S14<7>E11K00U77P00<2>U00<9>oeRq\
  1062.   iUtnYuq_wubzzf<13>pHFoDDpGG<16>nk1mm0mm3<16>zzz<4>zzzzai<6>zxY<10>zynzye\
  1063.   <8>shYui_rdW<2>oZT
  1064.   }
  1065.  
  1066. Mayhem             { ; image(c)1998 JimWeaver   manlam(fn:fn)    t=01min34s
  1067.                      ; zoom of jwmlam01.gif
  1068.   reset=1960 type=manlam(fn||fn) function=log/sqr passes=t
  1069.   center-mag=-0.43171736103573320/+0.42304406553753590/11.1842/0.9598/-57.\
  1070.   023/9.175 params=-0.606/0/0.333 float=y maxiter=25 bailoutest=imag
  1071.   inside=bof60 periodicity=0
  1072.   colors=000ZJE<6>wgF<8>XKDUHDSGC<6>AB7000HIC<10>svcsvc<9>VVLSSJPPHMMFKJD<\
  1073.   6>200pdJ<5>zjF<13>RCCEEE<13>kki<18>005332<17>zpa<12>UPFMJIEDLAAK<3>ALQAO\
  1074.   SARUBUWBXY<6>DqlDtnCqm<2>BghAdg9`e8Yd7Vb<7>14RC6QO8OP9NQBM000000UFJVHI<7\
  1075.   >zH0<8>SDF<4>L0KB8D1H5<19>Q`5Sa6R`6<16>2I6IIA
  1076.   }
  1077.  
  1078. jwmlam04.gif       { ; image(c)1998 JimWeaver   manlam(fn:fn)    t=01min24s
  1079.                      ;  
  1080.   reset=1960 type=manlam(fn||fn) function=log/sqr passes=t
  1081.   center-mag=-0.04646176908180999/-0.00000000000000799/1.519687/1/-90
  1082.   params=-0.144/0/0.663 float=y maxiter=25 bailoutest=imag
  1083.   inside=bof60 periodicity=0
  1084.   colors=000Q11Q11P00A5D<2>I9P<7>kgloloqoq<2>wutyxvyxv<5>fiocgn_dlWbkT_jQY\
  1085.   iMVg<6>BPh<18>wUw<9>52N<34>eJcfJcfKc<10>lXVlYVm_W<6>yog<31>CA6A95985<2>5\
  1086.   53443444545745864<14>SF6TG7VH7WI7YJ8<10>wbO<8>cQB`O9`O9<44>Q21
  1087.   }
  1088.  
  1089. Mayhem_II          { ; image(c)1998 JimWeaver   manlam(fn:fn)    t=01min49s
  1090.                      ; jwmlam05.gif
  1091.   reset=1960 type=manlam(fn||fn) function=log/sqr passes=t
  1092.   center-mag=-0.29648962890382420/-0.37066396028649800/5.600261/1/-122.5
  1093.   params=-0.144/0/0.663 float=y maxiter=25 bailoutest=imag
  1094.   inside=bof60 periodicity=0
  1095.   colors=000R31<4>P00A5D<2>I9P<7>kgloloqoq<2>wutyxvyxv<5>fiocgn_dlWbkT_jQY\
  1096.   iMVg<6>BPh<18>wUw<9>52N<34>eJcfJcfKc<10>lXVlYVm_W<6>yog<31>CA6A95985<2>5\
  1097.   53443444545745864<14>SF6TG7VH7WI7YJ8<10>wbO<8>cQB`O9`O9<41>R32
  1098.   }
  1099.  
  1100. jwmlam06.gif       { ; image(c)1998 JimWeaver   manlam(fn:fn)    t=01min34s
  1101.                      ;  
  1102.   reset=1960 type=manlam(fn||fn) function=log/sqr passes=t
  1103.   center-mag=+0.26439119607806970/+0.49497947487094860/29.50068/0.8892/-14\
  1104.   5 params=-0.144/0/0.663 float=y maxiter=25 bailoutest=imag
  1105.   inside=bof60 periodicity=0
  1106.   colors=000P00A5D<2>I9P<7>kgloloqoq<2>wutyxvyxv<5>fiocgn_dlWbkT_jQYiMVg<6\
  1107.   >BPh<18>wUw<9>52N<34>eJcfJcfKc<10>lXVlYVm_W<6>yog<31>CA6A95985<2>5534434\
  1108.   44545745864<14>SF6TG7VH7WI7YJ8<10>wbO<8>cQB`O9`O9<46>Q11
  1109.   }
  1110.  
  1111. jwmlam07.gif       { ; image(c)1998 JimWeaver   manlam(fn:fn)    t=01min42s
  1112.                      ;  
  1113.   reset=1960 type=manlam(fn||fn) function=log/sqr passes=t
  1114.   center-mag=-0.13083020442219580/+0.18697829716193750/2.62605/1/-17.499
  1115.   params=2/0/0.5 float=y maxiter=25 bailoutest=imag inside=bof60
  1116.   periodicity=0
  1117.   colors=000R42<7>P00A5D<2>I9P<7>kgloloqoq<2>wutyxvyxv<5>fiocgn_dlWbkT_jQY\
  1118.   iMVg<6>BPh<18>wUw<9>52N<34>eJcfJcfKc<10>lXVlYVm_W<6>yog<31>CA6A95985<2>5\
  1119.   53443444545745864<14>SF6TG7VH7WI7YJ8<10>wbO<8>cQB`O9`O9<38>S52
  1120.   }
  1121.  
  1122. Mayhem_III         { ; image(c)1998 JimWeaver   manlam(fn:fn)    t=01min53s
  1123.                      ; zoom of jwmlam07.gif
  1124.   reset=1960 type=manlam(fn||fn) function=log/sqr passes=t
  1125.   center-mag=-0.44462559241834520/+0.12136786372934020/10.7625/1/-87.5
  1126.   params=2/0/0.5 float=y maxiter=25 bailoutest=imag inside=bof60
  1127.   periodicity=0
  1128.   colors=000S52<8>P00A5D<2>I9P<7>kgloloqoq<2>wutyxvyxv<5>fiocgn_dlWbkT_jQY\
  1129.   iMVg<6>BPh<18>wUw<9>52N<34>eJcfJcfKc<10>lXVlYVm_W<6>yog<31>CA6A95985<2>5\
  1130.   53443444545745864<14>SF6TG7VH7WI7YJ8<10>wbO<8>cQB`O9`O9<37>S52
  1131.   }
  1132.  
  1133. Mayhem_IIIzoom     { ; image(c)1998 JimWeaver   manlam(fn:fn)    t=01min51s
  1134.                      ; zoom of jwmlam08.gif
  1135.   reset=1960 type=manlam(fn||fn) function=log/sqr passes=t
  1136.   center-mag=-0.52870037667209460/+0.07742044347231468/24.87634/1/-122.5
  1137.   params=2/0/0.5 float=y maxiter=25 bailoutest=imag inside=bof60
  1138.   periodicity=0
  1139.   colors=000S52<8>P00A5D<2>I9P<7>kgloloqoq<2>wutyxvyxv<5>fiocgn_dlWbkT_jQY\
  1140.   iMVg<6>BPh<18>wUw<9>52N<34>eJcfJcfKc<10>lXVlYVm_W<6>yog<31>CA6A95985<2>5\
  1141.   53443444545745864<14>SF6TG7VH7WI7YJ8<10>wbO<8>cQB`O9`O9<37>S52
  1142.   }
  1143.  
  1144.  
  1145. - --------------------------------------------------------------
  1146. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1147. Post Message:   fractint@lists.xmission.com
  1148. Get Commands:   majordomo@lists.xmission.com "help"
  1149. Administrator:  twegner@phoenix.net
  1150. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1151.  
  1152. ------------------------------
  1153.  
  1154. Date: Mon, 14 Dec 1998 10:06:17 -0800
  1155. From: Judy <jcoffman@sos.net>
  1156. Subject: (fractint) Need help with sstools.ini settings
  1157.  
  1158. With the recent discussion of sstools.ini I decided it was a great idea
  1159. to organize my maps in one folder, pars in another (All within the
  1160. fractint directory) Unfortunately, I've unintentionally gummed it up
  1161. somewhere because now if I try to change color maps "C", "L" and select
  1162. a map, my monitor looks like a TV with no reception. (Lines moving
  1163. everywhere but I can't see anything else).  I'm using the same video
  1164. mode as always "SF5" and the initial display of an image displays fine
  1165. so my guess is that it has something to do with my moving the maps to a
  1166. separate folder.  
  1167.  
  1168. Your suggestions are appreciated!
  1169. Judy
  1170.  
  1171. Below is my current sstools.ini for fractint:
  1172. [fractint]
  1173. textsafe=bios
  1174. fastrestore=yes
  1175. recordcolors=yes
  1176. video=sf5
  1177. float=yes
  1178. parmfile=g:\fractint\*.par
  1179. formulafile=g:\fractint\formula
  1180. map=g:\fractint\maps\blues.map
  1181.  
  1182. - --------------------------------------------------------------
  1183. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1184. Post Message:   fractint@lists.xmission.com
  1185. Get Commands:   majordomo@lists.xmission.com "help"
  1186. Administrator:  twegner@phoenix.net
  1187. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1188.  
  1189. ------------------------------
  1190.  
  1191. End of fractint-digest V1 #342
  1192. ******************************
  1193.  
  1194.