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

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #207
  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, May 17 1998          Volume 01 : Number 207
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Sun, 17 May 1998 10:20:02 -0500 (CDT)
  18. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  19. Subject: (fractint) A devil of a formula
  20.  
  21. comment {
  22. In this image you will see Satan rising from the flames of
  23. hell with his arms raised in supplication.  In supplication
  24. to whom?  To the larger and even more ominous figure that
  25. looms behind him.
  26.  
  27. I used to post this image to the abpf newsgroup every
  28. Halloween.  I happened to mention it on the fractal chat
  29. last night, and so I'm posting it to the list now because
  30. I'll probably forget about it come Halloween since I rarely
  31. post to abpf anymore.
  32.  
  33. The formula is a different rendering of one of Noel Giffin's
  34. formulas - I don't remember the name of his formula - I did
  35. this image for the first time several years ago and I had a
  36. devil of a time reconstructing it.
  37.  
  38. Paul Carlson
  39. }
  40.  
  41. frm:devil { ; Copyright (c) Paul W. Carlson, 1998
  42.         ; Based on one of Noel Giffin's formulas
  43.     w = pixel
  44.     z = iter = wp1 = wp2 = bailout = 0
  45.     :
  46.     old_w = w
  47.     w = w * w - wp2
  48.     wp2 = wp1
  49.     wp1 = real(old_w) - flip(imag(old_w))
  50.     IF (|w| > 4)
  51.     bailout = 1
  52.     z = 4 * iter + 30
  53.     z = z - real(216) * trunc(z / real(216))
  54.     ENDIF
  55.     iter = iter + 1
  56.     z = z - iter
  57.     bailout == 0
  58. }
  59.  
  60. satan              { ; Copyright (c) Paul W. Carlson, 1998
  61.                ; t=  0:11:04.71, 1024x768, 60MHz Pentium
  62.   reset=1960 type=formula formulafile=devil.par
  63.   formulaname=devil passes=1
  64.   center-mag=0.115617/0.621436/4.205406
  65.   float=y maxiter=500 outside=summ
  66.   colors=000o42<25>z0H<7>z02z00z00z00z40<12>zT0zV0zW0zX0<2>zb0z\
  67.   d0ze0zf0<7>zv0zx0zy0zz0zz0yz0xz0vz0tz0<60>z60000<115>000
  68.   }
  69.  
  70.  
  71. - --------------------------------------------------------------
  72. Thanks for using Fractint, The Fractals and Fractint Discussion List
  73. Post Message:   fractint@lists.xmission.com
  74. Get Commands:   majordomo@lists.xmission.com "help"
  75. Administrator:  twegner@phoenix.net
  76. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  77.  
  78. ------------------------------
  79.  
  80. Date: Sun, 17 May 98 17:30:57 +0100
  81. From: Oliver Klimek <klimek@bgb.mannheim-netz.de>
  82. Subject: (fractint) Formula repost test
  83.  
  84. I just discovered by reading digest #206 that my last post suddenly has
  85. got the much dreaded 3D disease. This could have been caused by a special
  86. character which might has induced my e-mail client to encapsulate the
  87. post. I have changed this setting and try to repost the formulas and pars.
  88. Sorry for the inconvenience, but I have been so annoyed by all the 3Ds in
  89. the archives that I want to try as hard as possible to prevent my own
  90. posts from screwing up
  91.  
  92. Oliver
  93. - ---- begin test.frm -------
  94.  
  95. LorentzM{; Mutated Mandelbrot set based on Lorentz contraction
  96.       ;keep p1 between 0 and 1, <0.7 is best, negative values mirror
  97.       ;Re(p1)=Im(p1) -> 0 converges to standard Mandel rotated by 90 deg.
  98.       ;Size increases with |p1|
  99.       ;p2=unused
  100.       ;p3=bailout
  101. z=0 
  102. c=pixel:
  103. z=sqrt(1-(z*z)/(p1*p1))+c
  104. |z|<=p3
  105. }
  106. LorentzJ{; Julia Set for LorentzM
  107.       ;keep p1 between 0 and 1, <0.7 is best
  108.       ;p2=julia parameter
  109.       ;p3=bailout
  110. z=pixel
  111. c=p2:
  112. z=sqrt(1-(z*z)/(p1*p1))+c
  113. |z|<=p3
  114. }
  115.  
  116. FourierM{; First three terms of a Fourier series
  117.       ; p1 and p2: coefficients of the sine waves
  118.       ; bailout fixed at 8
  119. z=0 
  120. c=pixel:
  121. z=p1*sin(z)+p2*sin(2*z)+c
  122. |z|<=8
  123. }
  124.  
  125. FourierJ{; Julia Set of FourierM
  126.       ; p1 and p2: coefficients of the sine waves
  127.       ; bailout fixed at 8
  128. z=pixel
  129. c=p3:
  130. z=p1*sin(z)+p2*sin(2*z)+c
  131. |z|<=8
  132. }
  133. - ------- end test.frm ---------
  134.  
  135. - ------ begin test.par -------
  136. LorentzM_01        { ; Bent Mandel
  137.                      ;    (c) Oliver Klimek, MCMXCVIII
  138.                      ; time=  0:00:25.15 on P-100 1024x768
  139.   reset=1960 type=formula formulafile=test.frm formulaname=LorentzM
  140.   center-mag=-1.00292/0.0443091/4.862883 params=0.15/0.15/0/0/8/0
  141.   float=y maxiter=2000 inside=0
  142.   colors=CCCdYk<8>vek<9>UE_<4>soS<8>OSp<7>pWA<23>uoYvpZuoZ<23>DJR<18>`nQbp\
  143.   PboP<18>bXGbVFcVI<5>j_`l`dl`d<29>fPCeOBcOB<14>3TO0UP0UP<21>2EY<8>nTe<29>\
  144.   coebpd`peYqg   }
  145.  
  146. LorentzM_02        { ; Bent some more
  147.                      ;    (c) Oliver Klimek, MCMXCVIII
  148.                      ; time=  0:00:35.76 on P-100 1024x768
  149.   reset=1960 type=formula formulafile=test.frm formulaname=LorentzM
  150.   center-mag=-0.993157/0.226858/0.8503401 params=0.3/0.4/0/0/8/0
  151.   float=y maxiter=2000 inside=0
  152.   colors=CCCdYk<8>vek<9>UE_<4>soS<8>OSp<7>pWA<23>uoYvpZuoZ<23>DJR<18>`nQbp\
  153.   PboP<18>bXGbVFcVI<5>j_`l`dl`d<29>fPCeOBcOB<14>3TO0UP0UP<21>2EY<8>nTe<29>\
  154.   coebpd`peYqg   }
  155.  
  156. LorentzM_03        { ; Seriously bent
  157.                      ;    (c) Oliver Klimek, MCMXCVIII
  158.                      ; time=  0:01:23.84 on P-100 1024x768
  159.   reset=1960 type=formula formulafile=test.frm formulaname=LorentzM
  160.   center-mag=-1.12467/0.198405/0.5867347 params=0.5/0.45/0/0/8/0
  161.   float=y maxiter=2000 inside=0
  162.   colors=CCCdYk<8>vek<9>UE_<4>soS<8>OSp<7>pWA<23>uoYvpZuoZ<23>DJR<18>`nQbp\
  163.   PboP<18>bXGbVFcVI<5>j_`l`dl`d<29>fPCeOBcOB<14>3TO0UP0UP<21>2EY<8>nTe<29>\
  164.   coebpd`peYqg cyclerange=1/15
  165.   }
  166.  
  167. LorentzJ_01        { ; Flaming stars
  168.                      ;    (c) Oliver Klimek, MCMXCVIII
  169.                      ; time=  0:00:52.03 on P-100 1024x768
  170.   reset=1960 type=formula formulafile=test.frm formulaname=LorentzJ
  171.   center-mag=0/0/0.6666667 params=0.44/0.5/-0.87/-0.48/8/0 float=y
  172.   maxiter=1000 inside=0
  173.   colors=000FFF<29>x11z00z10<29>zx0zz0zz1<29>zzxzzzzzz<61>zV1zU0zU0zT0<28>\
  174.   z10z00z00y00<30>c00b11a11`22_22<25>FFF   }
  175.  
  176. LorentzJ_02        { ; Spiral out of halved spirals
  177.                      ;    (c) Oliver Klimek, MCMXCVIII
  178.                      ; time=  0:02:54.65 on P-100 1024x768
  179.   reset=1960 type=formula formulafile=test.frm formulaname=LorentzJ
  180.   center-mag=0/0/0.5518507 params=0.3/0.73/-0.76/-0.37/8/0 float=y
  181.   maxiter=2000 inside=0
  182.   colors=00000A<76>b01c00c00c10<60>yy9zzAzzAzzA<109>zzz
  183.     }
  184.  
  185. LorentzJ_03        { ; Fake Barnsley 
  186.                      ;    (c) Oliver Klimek, MCMXCVIII
  187.                      ; time=  0:03:17.84 on P-100 1024x768
  188.   reset=1960 type=formula formulafile=test.frm formulaname=LorentzJ
  189.   center-mag=-8.88178e-016/0.0841783/0.2862541
  190.   params=0.66/0.51/-1.35/-0.6/8/0 float=y maxiter=2000 inside=0
  191.   colors=00000A<76>b01c00c00c10<60>yy9zzAzzAzzA<109>zzz
  192.     }
  193.  
  194. FourierM_01        { ; Spiral between lakes
  195.                      ;    (c) Oliver Klimek, MCMXCVIII
  196.                      ; time=  0:00:30.41 on P-100 1024x768
  197.   reset=1960 type=formula formulafile=test.frm formulaname=FourierM
  198.   center-mag=0.000881142/0.0233854/1.983961
  199.   params=0.82/-0.47/0.15/-0.07000000000000001 float=y maxiter=2000
  200.   inside=0 colors=@volcano.map   }
  201.  
  202. FourierM_02        { ; S blob
  203.                      ;    (c) Oliver Klimek, MCMXCVIII
  204.                      ; time=  0:00:43.88 on P-100 1024x768
  205.   reset=1960 type=formula formulafile=test.frm formulaname=FourierM
  206.   center-mag=0.000881142/0.0233854/0.6138887
  207.   params=1.18/0.35/-0.42/-0.3 float=y maxiter=2000 inside=0
  208.   colors=@volcano.map   }
  209.  
  210. FourierM_03        { ; Broken weenie
  211.                      ;    (c) Oliver Klimek, MCMXCVIII
  212.                      ; time=  0:00:29.41 on P-100 1024x768
  213.   reset=1960 type=formula formulafile=test.frm formulaname=FourierM
  214.   center-mag=0.000881142/0.0233854/0.3627524
  215.   params=0.15/-0.1/0.01/-0.31 float=y maxiter=2000 inside=0
  216.   colors=@volcano.map   }
  217.  
  218. FourierJ_01        { ; Dancing Spirals
  219.                      ;    (c) Oliver Klimek, MCMXCVIII
  220.                      ; time=  0:02:24.25 on P-100 1024x768
  221.   reset=1960 type=formula formulafile=test.frm formulaname=FourierJ
  222.   center-mag=1.13548/0.0835463/0.4065041
  223.   params=0.93/0.42/0.06/-0.18/-0.26/0.46 float=y maxiter=2000 inside=0
  224.   colors=@volcano.map   }
  225.  
  226. FourierJ_02        { ; String of Petals with spirals
  227.                      ;    (c) Oliver Klimek, MCMXCVIII
  228.                      ; time=  0:00:38.53 on P-100 1024x768
  229.   reset=1960 type=formula formulafile=test.frm formulaname=FourierJ
  230.   center-mag=1.13548/0.0835463/0.4065041
  231.   params=1.95/0.12/-0.5/-0.23/0.2/0.02 float=y maxiter=2000 inside=0
  232.   colors=@volcano.map   }
  233.  
  234. FourierJ_03        { ; A chain of roses
  235.                      ;    (c) Oliver Klimek, MCMXCVIII
  236.                      ; time=  0:00:07.44 on P-100 1024x768
  237.   reset=1960 type=formula formulafile=test.frm formulaname=FourierJ
  238.   center-mag=1.13548/0.0835463/0.4065041
  239.   params=1.45/-0.38/-0.19/0.12/1.22/0.06 float=y maxiter=2000 inside=0
  240.   colors=@volcano.map   }
  241.  
  242.  
  243. - --------------------------------------------------------------
  244. Thanks for using Fractint, The Fractals and Fractint Discussion List
  245. Post Message:   fractint@lists.xmission.com
  246. Get Commands:   majordomo@lists.xmission.com "help"
  247. Administrator:  twegner@phoenix.net
  248. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  249.  
  250. ------------------------------
  251.  
  252. Date: Sun, 17 May 1998 11:46:07 EDT
  253. From: SKarl52884 <SKarl52884@aol.com>
  254. Subject: Re: (fractint)newbe needs video mode
  255.  
  256. Hi 
  257. F3  is pretty low res.    
  258. Try SF6.
  259. ALSO    explore the other possibilities on the same menue.
  260. Just try them and look at the results. 
  261. Good Luck,
  262. Steve
  263.  
  264. - --------------------------------------------------------------
  265. Thanks for using Fractint, The Fractals and Fractint Discussion List
  266. Post Message:   fractint@lists.xmission.com
  267. Get Commands:   majordomo@lists.xmission.com "help"
  268. Administrator:  twegner@phoenix.net
  269. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  270.  
  271. ------------------------------
  272.  
  273. Date: Sun, 17 May 1998 11:50:18 EDT
  274. From: SKarl52884 <SKarl52884@aol.com>
  275. Subject: Re: (fractint) Formula repost test
  276.  
  277. In a message dated 98-05-17 11:40:14 EDT, you write:
  278.  
  279. << Oliver
  280.  ---- begin test.frm ------- >>
  281. They look normal on AOL mail
  282. Steve
  283.  
  284. - --------------------------------------------------------------
  285. Thanks for using Fractint, The Fractals and Fractint Discussion List
  286. Post Message:   fractint@lists.xmission.com
  287. Get Commands:   majordomo@lists.xmission.com "help"
  288. Administrator:  twegner@phoenix.net
  289. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  290.  
  291. ------------------------------
  292.  
  293. Date: Sun, 17 May 98 08:51:10 PDT
  294. From: Colleen Johnson <noginspctr@thegrid.net>
  295. Subject: (fractint) Re: RE: Attempt to help newbie
  296.  
  297. Hi Marie
  298. I guess you sent my message to someone else who might be able to help? =
  299.  If so, thanks.
  300. And yes, you're right, at least 600x800 would be nice.  I see all these =
  301. fractals on the Internet, and they all look beautiful on my computer; onl=
  302. y the ones I make in Fractint look kind of clunky.  It's encouraging to =
  303. hear that you had the same kind of adapter, and apparently had better per=
  304. formance out of it.  I'm sure it's a matter of getting everything set up =
  305. properly.
  306. Anyway, thanks again.
  307. Colleen
  308. - -------------------------------------------------------------------------=
  309. - --
  310. >I'll go back and reread  your message. My last computer had the >ET4000 =
  311. adapter which I used successfully with both Windows 3.1 and >Win95.
  312. >Meanwhile, I hope someone with more technical knowledge will jump in >wi=
  313. th some suggestions. It's a shame not to be able to view these in at >lea=
  314. st 600x800.
  315.  
  316. - -------------------------------------------------------------------------=
  317. - ---------
  318.  
  319.  
  320. - --------------------------------------------------------------
  321. Thanks for using Fractint, The Fractals and Fractint Discussion List
  322. Post Message:   fractint@lists.xmission.com
  323. Get Commands:   majordomo@lists.xmission.com "help"
  324. Administrator:  twegner@phoenix.net
  325. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  326.  
  327. ------------------------------
  328.  
  329. Date: Sun, 17 May 1998 12:08:32 EDT
  330. From: SKarl52884 <SKarl52884@aol.com>
  331. Subject: Re: (fractint) Re: RE: Attempt to help newbie
  332.  
  333. In a message dated 98-05-17 11:57:37 EDT, you write:
  334.  
  335. <<  It's a shame not to be able to view these in at >least 600x800.
  336.   >>
  337. Is your 'puter not allowing you to use SF6???
  338.  
  339. - --------------------------------------------------------------
  340. Thanks for using Fractint, The Fractals and Fractint Discussion List
  341. Post Message:   fractint@lists.xmission.com
  342. Get Commands:   majordomo@lists.xmission.com "help"
  343. Administrator:  twegner@phoenix.net
  344. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  345.  
  346. ------------------------------
  347.  
  348. Date: Sun, 17 May 1998 09:26:17 -0700
  349. From: "Angela Wilczynski" <wizzle@beachnet.com>
  350. Subject: Re: (fractint) Black Hole formula and par
  351.  
  352. Paul and/or Joyce Carlson wrote:
  353. > comment {
  354. > This image is a slightly modified version of one I posted to abpf
  355. > several months ago.  While I was trying to produce a decent PHC image
  356. > (which I never was able to) I noticed that one of the two intermixed
  357. > images looked a lot what I imagined a black hole about to swallow a
  358. > nebula might look like.  So I modified Bob Carr's excellent PHC formula
  359. > and used just half of it.  The result is almost what I wanted, but it
  360. > could use a little help from the masters of color on this list.
  361. > Paul Carlson
  362. > }
  363.  
  364.  
  365. <<snipped>>
  366.  
  367. Paul....
  368.  
  369. Here is a very minor modification on your color map.  I got the idea from
  370. looking at some of the astronomy pics I've gotten from NASA....many seem to have
  371. a touch of teal....so that's what I used.  
  372.  
  373. Pauls_par          { ; recolor of Paul Carlson's Black Hole par
  374.   reset=1960 type=formula formulafile=fractint.frm
  375.   formulaname=carr2821b passes=t
  376.   center-mag=1.86825/-0.299843/0.03429727/1.25/-12.499
  377.   params=200/300/400/550 float=y maxiter=647
  378.   invert=1e-006/-0.091053706883/-0.43584099076 periodicity=0
  379.   colors=000<104>000<6>rri<14>wHPxENxBOx7Qx4Rt4Qq4P<23>D4GB3FB3F<5>82A7296\
  380.   29629<10>61950A52B<9>1IJ0KK0JK<12>458000<47>000
  381.   }
  382.  
  383.  
  384. And I just HAD to join the resort coloring/zooming fray......those were really
  385. scary mountains Lee!!!!!  And I love your another_shore par Kathy.....I think my
  386. version is a drive along Pacific Coast Highway during a red tide.....maybe near
  387. Malibu. Yo Dudes.......avoid this water!!!!
  388.  
  389. offshore_eddies    { ; (c) A Wilczynski May 17, 1998 t=  0:28:48.68 on 266 PII
  390.                      ; zoom on Lee Skinner's mtn_lake
  391.                      ;  
  392.                      ;  
  393.   reset=1960 type=formula formulafile=dmj-pub.frm
  394.   formulaname=dmj-mand-cr2-ang
  395.   center-mag=-1.62434002184750600/+0.00000004021583828/2.394758e+009/1.244\
  396.   7/-6.241/2.237 params=1/10/10/1/10/1 float=y maxiter=4095 inside=33
  397.   outside=real
  398.   colors=004000000201402000603804B06<10>M0AN0AO0AP0AR0B<4>Y2E_3F`5F<14>wm0\
  399.   <15>Q0E<8>C0BA0A808<2>202000000<3>000000101112<2>325326437548<20>JGTKHUK\
  400.   HT<8>ECKDBICAHB9FA8E<12>111000000000<3>00010330650A<25>00U00U00T<21>00I0\
  401.   0H00G10F30E50D60B<2>E08H06K05N03Q02U00<18>wmK<17>K44<3>000000
  402.   }
  403.  
  404. - --------------------------------------------------------------
  405. Thanks for using Fractint, The Fractals and Fractint Discussion List
  406. Post Message:   fractint@lists.xmission.com
  407. Get Commands:   majordomo@lists.xmission.com "help"
  408. Administrator:  twegner@phoenix.net
  409. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  410.  
  411. ------------------------------
  412.  
  413. Date: Sun, 17 May 1998 11:30:46 -0500 (CDT)
  414. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  415. Subject: (fractint) Join us next time!
  416.  
  417. We had another great fractal chat last night.  Like last time
  418. we swapped pars and formulas and everybody learned something.
  419. Some of the things discussed:
  420.  
  421. 1) Pros and cons of various fractal programs.
  422. 2) Best books on fractals and best places to buy them.
  423. 3) How to do various things in Fractint.  I learned a
  424.    neat trick from Bob Margolis about how to create
  425.    kaleidoscopic images.
  426. 4) How to do things in IRC.
  427.  
  428. And, of course, we all got to know each other a little better.
  429. If it sounds like I'm trying to seduce others into joining us
  430. next time - you're absolutely right!  It really is a great way
  431. to learn.  Expert Fractint users like Bob Margolis can answer
  432. almost any question on using Fractint and expert IRC users
  433. like Wizzle and Earl can answer almost any IRC question.  So
  434. if you're new to IRC (I was a few weeks ago) or a Fractint
  435. newbie, don't be afraid to join us next time (to be announced
  436. by Wizzle).  It's great fun!
  437.  
  438. If you need to get IRC software and instructions on installing
  439. and using it, contact Wizzle (I'm pretty good at volunteering
  440. your time, aren't I Wiz? :) ).
  441.  
  442. Paul Carlson
  443.  
  444.  
  445. - --------------------------------------------------------------
  446. Thanks for using Fractint, The Fractals and Fractint Discussion List
  447. Post Message:   fractint@lists.xmission.com
  448. Get Commands:   majordomo@lists.xmission.com "help"
  449. Administrator:  twegner@phoenix.net
  450. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  451.  
  452. ------------------------------
  453.  
  454. Date: Sun, 17 May 1998 09:26:58 -0700 (PDT)
  455. From: "James R. McKenzie" <whookam88@yahoo.com>
  456. Subject: Re: (fractint) Pixel Counting
  457.  
  458. Paint Shop Pro counts colors, so does Graphic Workshop for Windows.
  459.  
  460. Both are available in 16 - Bit and 32 - Bit Windows versions.  You
  461. should be able to find them on any Shareware repositiory.
  462.  
  463.  
  464.  
  465.                                                      L8R
  466.  
  467.  
  468.  
  469.                                            James R. McKenzie
  470.  
  471.  
  472.  
  473.                                    WHOOKAM88@YAHOO.COM
  474.  
  475.  
  476. _________________________________________________________
  477. DO YOU YAHOO!?
  478. Get your free @yahoo.com address at http://mail.yahoo.com
  479.  
  480.  
  481. - --------------------------------------------------------------
  482. Thanks for using Fractint, The Fractals and Fractint Discussion List
  483. Post Message:   fractint@lists.xmission.com
  484. Get Commands:   majordomo@lists.xmission.com "help"
  485. Administrator:  twegner@phoenix.net
  486. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  487.  
  488. ------------------------------
  489.  
  490. Date: Sun, 17 May 1998 11:33:12 -0500 (CDT)
  491. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  492. Subject: Re: (fractint) Black Hole formula and par
  493.  
  494. Wiz...
  495.  
  496. >Here is a very minor modification on your color map.  I got the idea
  497. >from looking at some of the astronomy pics I've gotten from NASA....
  498. >many seem to have a touch of teal....so that's what I used.  
  499.  
  500. Thanks much - I like it!
  501.  
  502. Paul Carlson
  503.  
  504.  
  505.  
  506. - --------------------------------------------------------------
  507. Thanks for using Fractint, The Fractals and Fractint Discussion List
  508. Post Message:   fractint@lists.xmission.com
  509. Get Commands:   majordomo@lists.xmission.com "help"
  510. Administrator:  twegner@phoenix.net
  511. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  512.  
  513. ------------------------------
  514.  
  515. Date: Sun, 17 May 1998 09:55:36 -0700
  516. From: "Mike and Linda Allison" <gumbycat@ix.netcom.com>
  517. Subject: (fractint) Having a wonderful time!
  518.  
  519. I'm still having a great time using Mark "Bud" Christenson's gravijul
  520. formulas.  I found all of these using a variation of gravijul.frm.
  521.  
  522. Enjoy!
  523. Linda
  524. http://www.fractalus.com/gumbycat/ (last update 4/29/98)
  525. http://www.geocities.com/Paris/5519 (last update 5/8/98)
  526. http://www.toptown.com/innercircle/gumbycat/index.html (last update
  527. 3/20/98)
  528.  
  529. +++++++++++begin+++++++++++
  530.  
  531. deepdark           { ; copyright Linda Allison created May 17, 1998
  532.                      ; gumbycat@ix.netcom.com
  533.                      ; calc time   0:01:27.38  on P166
  534.   reset=1960 type=formula formulafile=gumbycat.frm
  535.   formulaname=grav-lla function=log/log/recip
  536.  
  537. center-mag=+0.64562209388675280/-0.73011152140140270/1607.295/1.1211/-30
  538.   params=2/-2/4/-4 float=y maxiter=500 inside=bof60 decomp=256
  539.  
  540. colors=000<10>los<13>SNCQL9QL9RL9<4>`UGbWIeYKg_MjaO<5>xn_<12>VPBTN9TN9SN
  541. \
  542.  
  543. A<2>VQHWSJXTLYVOZYS<8>nru<15>000200501000<14>99`AAcBAd<14>ZPz<14>3Be0Ac0
  544. \
  545.  
  546. Ab<13>01C00A00A<14>G7II8JH8J<13>22G01F02H<10>09a0Ac1Ad2Be<12>IOxKPzKPy<1
  547. \
  548.   2>CCfBBeAAcAAa<10>33A228227<4>000
  549.   }
  550.  
  551. the-vine           { ; copyright Linda Allison created May 17, 1998
  552.                      ; gumbycat@ix.netcom.com
  553.                      ; calc time   0:01:43.09  on P166
  554.   reset=1960 type=formula formulafile=gumbycat.frm
  555.   formulaname=grav-lla function=log/log/recip
  556.  
  557. center-mag=-0.59762709499087630/+0.23440995734856330/57.51117/1/-29.999
  558.   params=1.5/-1.5/4/-4 float=y maxiter=500 inside=bof60 decomp=256
  559.  
  560. colors=hkkhkk<2>nru<15>000200100000<13>0A40B40C50C6<13>AQNBRPBRO<13>1D70
  561. \
  562.  
  563. C50C5<13>01900A00A10A<13>G7II8JH8J<13>22G01F02H<10>09a0Ac1Ad2Be<12>IOxKP
  564. \
  565.  
  566. zKPy<12>CCfBBeAAcAAa<14>000<13>los<13>SNCQL9PK8QK6<14>xn_<13>TN9RL7PJ7PK
  567. \
  568.   8<10>ghg
  569.   }
  570.  
  571. blueblue           { ; copyright Linda Allison created May 17, 1998
  572.                      ; gumbycat@ix.netcom.com
  573.                      ; calc time   0:03:19.27 on P166
  574.   reset=1960 type=formula formulafile=gumbycat.frm
  575.   formulaname=grav-lla function=log/log/recip
  576.  
  577. center-mag=-2.82112811173902500/-2.22596266815481700/3918.152/1/-29.998
  578.   params=1/-1/4/-4 float=y maxiter=500 inside=bof60 decomp=256
  579.  
  580. colors=dXJ<2>ZTFXRDVPBTN9RL7PJ7PK8<14>nru<15>000200100000<13>0A40B40C50C
  581. \
  582.  
  583. 6<13>AQNBRPBRO<13>1D70C50C5<13>01900A00A10A<13>G7II8JH8J<13>22G01F02H<10
  584. \
  585.  
  586. >09a0Ac1Ad2Be<12>IOxKPzKPy<12>CCfBBeAAcAAa<14>000<13>los<13>SNCQL9PK8QK6
  587. \
  588.   <14>xn_<7>fZL
  589.   }
  590.  
  591. spikes1            { ; copyright Linda Allison created May 17, 1998
  592.                      ; gumbycat@ix.netcom.com
  593.                      ; calc time   0:03:21.68 on P166
  594.   reset=1960 type=formula formulafile=gumbycat.frm
  595.   formulaname=grav-lla function=log/log/recip
  596.  
  597. center-mag=-2.84666334870138900/-2.28353493741157400/208.5362/1/-29.999
  598.   params=1/-1/4/-4 float=y maxiter=1000 inside=bof61
  599.  
  600. colors=xn_<13>TN9RL7PJ7PK8<14>nru<15>000200100000<13>0A40B40C50C6<13>AQN
  601. \
  602.  
  603. BRPBRO<13>1D70C50C5<13>01900A00A10A<13>G7II8JH8J<13>22G01F02H<10>09a0Ac1
  604. \
  605.  
  606. Ad2Be<12>IOxKPzKPy<12>CCfBBeAAcAAa<14>000<13>los<13>SNCQL9PK8QK6<14>xn_
  607.   }
  608.  
  609. vines_2            { ; copyright Linda Allison created May 17, 1998
  610.                      ; gumbycat@ix.netcom.com
  611.                      ; calc time   0:03:46.68 on P166
  612.   reset=1960 type=formula formulafile=gumbycat.frm
  613.   formulaname=grav-lla function=log/log/recip
  614.  
  615. center-mag=-1.15967415771013100/-0.17998714197830430/261.2244/1/-29.998
  616.   params=1.5/-1.5/4/-4 float=y maxiter=500 inside=bof60 decomp=256
  617.  
  618. colors=TN9SM9RL8PJ7PK8<14>nru<15>000200100000<13>0A40B40C50C6<13>AQNBRPB
  619. \
  620.  
  621. RO<13>1D70C50C5<13>01900A00A10A<13>G7II8JH8J<13>22G01F02H<10>09a0Ac1Ad2B
  622. \
  623.  
  624. e<12>IOxKPzKPy<12>CCfBBeAAcAAa<14>000<13>los<13>SNCQL9PK8QK6<14>xn_<12>V
  625. \
  626.   PB
  627.   }
  628.  
  629. offcenter          { ; copyright Linda Allison created May 17, 1998
  630.                      ; gumbycat@ix.netcom.com
  631.                      ; calc time   0:01:04.59  on P166
  632.   reset=1960 type=formula formulafile=gumbycat.frm
  633.   formulaname=grav-lla function=log/log/recip
  634.  
  635. center-mag=-0.62974618472394960/+0.60430456524979540/87.64974/1/-29.999
  636.   params=1.5/-1.5/4/-4 float=y maxiter=500 inside=bof60 decomp=256
  637.  
  638. colors=9PM<6>5JE5ID4HC3GA3F92E81D70C5<14>01900A00A10A<13>G7II8JH8J<13>22
  639. \
  640.  
  641. G01F02H<10>09a0Ac1Ad2Be<12>IOxKPzKPy<12>CCfBBeAAcAAa<14>000<13>los<13>SN
  642. \
  643.  
  644. CQL9PK8QK6<14>xn_<13>TN9RL7PJ7PK8<14>nru<15>000200100000<13>0A40B40C50C6
  645. \
  646.   <13>AQNBRPBROAQN
  647.   }
  648.  
  649. bubbly             { ; copyright Linda Allison created May 17, 1998
  650.                      ; gumbycat@ix.netcom.com
  651.                      ; calc time   0:02:05.07 on P166
  652.   reset=1960 type=formula formulafile=gumbycat.frm
  653.   formulaname=grav-lla function=log/log/recip
  654.   center-mag=+0.50798142291530790/+0.44660720505682650/64.69435/1/90
  655.   params=-2.125/-0.875/4/-4 float=y maxiter=500 inside=bof60
  656.   decomp=256
  657.  
  658. colors=YRD<3>RL9PJ7PK8<14>nru<15>000200100000<13>0A40B40C50C6<13>AQNBRPB
  659. \
  660.  
  661. RO<13>1D70C50C5<13>01900A00A10A<13>G7II8JH8J<13>22G01F02H<10>09a0Ac1Ad2B
  662. \
  663.  
  664. e<12>IOxKPzKPy<12>CCfBBeAAcAAa<14>000<13>los<13>SNCQL9PK8QK6<14>xn_<10>_
  665. \
  666.   TF
  667.   }
  668.  
  669. BusySpir               { ; copyright Linda Allison created May 17, 1998
  670.                      ; gumbycat@ix.netcom.com
  671.                      ; calc time   0:02:00.89  on P166
  672.   reset=1960 type=formula formulafile=gumbycat.frm
  673.   formulaname=grav-lla function=log/log/recip
  674.   center-mag=+0.70867283493704720/+0.31840594795862230/660.9399/1/90
  675.   params=-2.125/-0.875/4/-4 float=y maxiter=500 inside=bof60
  676.   decomp=256
  677.  
  678. colors=xn_<13>TN9RL7PJ7PK8<14>nru<15>000200100000<13>0A40B40C50C6<13>AQN
  679. \
  680.  
  681. BRPBRO<13>1D70C50C5<13>01900A00A10A<13>G7II8JH8J<13>22G01F02H<10>09a0Ac1
  682. \
  683.  
  684. Ad2Be<12>IOxKPzKPy<12>CCfBBeAAcAAa<14>000<13>los<13>SNCQL9PK8QK6<14>xn_
  685.   }
  686.  
  687. frm:grav-lla { ; Linda Allison's variation of
  688.                ; Mark "Bud" Christenson's gravijul frm
  689.                ; defaults: p1 = (1,0) p2 = (4,0)
  690.    z = c = pixel:
  691.    w = fn1(z)*fn1(z)
  692.    z = fn3(p1/fn2(w*w)) + c
  693.     |z| < p2
  694.   }
  695.  
  696. +++++++++++++end++++++++++++++++++++++++
  697.  
  698.  
  699.  
  700.  
  701.  
  702. - --------------------------------------------------------------
  703. Thanks for using Fractint, The Fractals and Fractint Discussion List
  704. Post Message:   fractint@lists.xmission.com
  705. Get Commands:   majordomo@lists.xmission.com "help"
  706. Administrator:  twegner@phoenix.net
  707. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  708.  
  709. ------------------------------
  710.  
  711. Date: Sun, 17 May 1998 13:23:14 -0400 (EDT)
  712. From: Jim Muth <jamth@mindspring.com>
  713. Subject: Re: (fractint) Fractal-Art list threatened with extinction!   To Jim & Jay
  714.  
  715. At 08:03 AM 5/17/98 -0700, you wrote:
  716. >Jim & Jay,
  717. >
  718. >Are you tweo going to post to XMISSION i.e. FRACTINT's listserv after
  719. >June 15?  I hope so, I'd hate to lose both of your contributions in
  720. >addition to the FRACTAL- ART list.  There's gotta be a way to keep 'Em
  721. >coming. 
  722. >
  723.  
  724. No problem.  The Fractal-Art list has been saved.
  725.  
  726.  
  727. Jim Muth
  728. jamth@mindspring.com
  729.  
  730.  
  731. - --------------------------------------------------------------
  732. Thanks for using Fractint, The Fractals and Fractint Discussion List
  733. Post Message:   fractint@lists.xmission.com
  734. Get Commands:   majordomo@lists.xmission.com "help"
  735. Administrator:  twegner@phoenix.net
  736. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  737.  
  738. ------------------------------
  739.  
  740. Date: Sun, 17 May 1998 12:39:26 -0600
  741. From: "Tim Wegner" <twegner@phoenix.net>
  742. Subject: Re: (fractint) Fractal-Art list threatened with extinction!   To Jim & Jay
  743.  
  744. James R. McKenzie wrote:
  745.  
  746. > Jim & Jay,
  747. > Are you tweo going to post to XMISSION i.e. FRACTINT's listserv after
  748. > June 15?  I hope so, I'd hate to lose both of your contributions in
  749. > addition to the FRACTAL- ART list.  There's gotta be a way to keep 'Em
  750. > coming. 
  751. > PLEASE at least consider it.
  752.  
  753. Have no fear, the fractal-art list has been rehosted and has a new administrator. 
  754. The new administrator is Damien Jones, and the new address is
  755. fractal-art@icd.com. Members of the old list have automatically been moved to 
  756. the new address.
  757.  
  758. Jim and Jay are welcome to post the "fractal of the day" and "fractal of the 
  759. night" here, but personally I think it is better the way it is. Their postings are 
  760. more visible in that quieter forum.
  761.  
  762. I'd entertain suggestions for splitting this forum to make it work better for 
  763. members.  Should we consider a PAR and FRM only list, and another for 
  764. questions and discussion? The truck is splitting the forum in such a way that 
  765. one doesn't have all the traffic.
  766.  
  767. Tim
  768.  
  769.  
  770.  
  771.  
  772.  
  773.  
  774.  
  775. - --------------------------------------------------------------
  776. Thanks for using Fractint, The Fractals and Fractint Discussion List
  777. Post Message:   fractint@lists.xmission.com
  778. Get Commands:   majordomo@lists.xmission.com "help"
  779. Administrator:  twegner@phoenix.net
  780. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  781.  
  782. ------------------------------
  783.  
  784. Date: Sun, 17 May 1998 11:39:47 -0700
  785. From: "Angela Wilczynski" <wizzle@beachnet.com>
  786. Subject: Re: (fractint) My first efforts in formula writing
  787.  
  788. Oliver Klimek wrote:
  789. > I have just completed my first two self-made formulas. As they are very
  790. > simple they already might have been "invented" by someone else, but I
  791. > haven't came across them before.
  792. <<snipped>>
  793.  
  794. Oliver...
  795.  
  796. I didn't have any problems with your first posting.  I'm using Communicator as a
  797. mail client.
  798.  
  799. Nice formula and pars!!! I particularly like the julia frm
  800.  
  801. Angela
  802.  
  803. - --------------------------------------------------------------
  804. Thanks for using Fractint, The Fractals and Fractint Discussion List
  805. Post Message:   fractint@lists.xmission.com
  806. Get Commands:   majordomo@lists.xmission.com "help"
  807. Administrator:  twegner@phoenix.net
  808. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  809.  
  810. ------------------------------
  811.  
  812. Date: Sun, 17 May 1998 14:26:45 EDT
  813. From: SKarl52884 <SKarl52884@aol.com>
  814. Subject: Re: (fractint) Having a wonderful time!
  815.  
  816. In a message dated 98-05-17 13:02:03 EDT, you write:
  817.  
  818. << I'm still having a great time using Mark "Bud" Christenson's gravijul
  819.  formulas.  I found all of these using a variation of gravijul.frm.
  820.  
  821.  Enjoy!
  822.  Linda >>
  823. I enjoyed!       { Interesting how raising the real p2 [22] in bubbly closes
  824. the burst in the         
  825.                       bubbles but, diminishes the gold crosses.}
  826. I like 'em,
  827. Steve
  828.  
  829. - --------------------------------------------------------------
  830. Thanks for using Fractint, The Fractals and Fractint Discussion List
  831. Post Message:   fractint@lists.xmission.com
  832. Get Commands:   majordomo@lists.xmission.com "help"
  833. Administrator:  twegner@phoenix.net
  834. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  835.  
  836. ------------------------------
  837.  
  838. Date: Sun, 17 May 1998 20:43:21 +0100
  839. From: "Christian Strik" <cstrik.isg@hetnet.nl>
  840. Subject: Re: RE: (fractint) Newbie needs help
  841.  
  842. Marie Drozdis wrote:
  843.  
  844. >I'll go back and reread  your message. My last computer had the ET4000
  845. >adapter which I used successfully with both Windows 3.1 and Win95.
  846. >Meanwhile, I hope someone with more technical knowledge will jump in with
  847. >some suggestions. It's a shame not to be able to view these in at least
  848. >600x800.
  849.  
  850. Guess you mean 800x600. Fractint's got a lot of crazy vid modes, but 600x800
  851. :-)
  852.  
  853. Christian
  854.  
  855.  
  856.  
  857.  
  858. - --------------------------------------------------------------
  859. Thanks for using Fractint, The Fractals and Fractint Discussion List
  860. Post Message:   fractint@lists.xmission.com
  861. Get Commands:   majordomo@lists.xmission.com "help"
  862. Administrator:  twegner@phoenix.net
  863. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  864.  
  865. ------------------------------
  866.  
  867. Date: Sun, 17 May 1998 20:41:09 +0100
  868. From: "Christian Strik" <cstrik.isg@hetnet.nl>
  869. Subject: Re: (fractint) Newbie needs help
  870.  
  871. Colleen wrote:
  872.  
  873. >Wow, am I glad to find you guys.  I'm fairly new to computers, and very
  874. >new to  Fractint, and I'm having trouble figuring out how to configure
  875. >Fractint to maximize my computer's potential.  And I need to maximize it
  876. >because I have a 486 and Windows 3.1.  Anyway, I'm getting what
  877. >seems to me to be rather low resolution on my fractals, and I've been
  878. >trying to add the specs of my video driver to the config file, in hopes
  879. >that that might improve things, but so far all I get on the screen when I
  880. >do that is scrambled pixels.  Can anyone help?
  881. >
  882. ><<snipped>>
  883. >
  884. >So, if anyone can suggest how to write the appropriate line in the
  885. >config file, I'd really appreciate it.
  886. >
  887. >Thanks!!!!
  888.  
  889. You didn't specify whether you're running fractint from Windows or from DOS.
  890. Windows (especially v3.1) usually doesn't allow hires dos programs to run,
  891. so switching to a higher res is quite unlikely to work. If you *are*
  892. starting fractint from windows, you could better exit and run fractint from
  893. the dos prompt.
  894.  
  895. Christian
  896.  
  897.  
  898.  
  899.  
  900. - --------------------------------------------------------------
  901. Thanks for using Fractint, The Fractals and Fractint Discussion List
  902. Post Message:   fractint@lists.xmission.com
  903. Get Commands:   majordomo@lists.xmission.com "help"
  904. Administrator:  twegner@phoenix.net
  905. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  906.  
  907. ------------------------------
  908.  
  909. Date: Sun, 17 May 1998 15:29:07 EDT
  910. From: SKarl52884 <SKarl52884@aol.com>
  911. Subject: re:(fractint) offshore_eddies
  912.  
  913. Angela...
  914. Nice ...it reminds me of  some of the more dramatic music in Fantasia...Night
  915. on Bald mountain.
  916. Steve
  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, 17 May 1998 20:34:38 +0100
  928. From: "Les St Clair" <les_stclair@crosstrees.prestel.co.uk>
  929. Subject: Re: (fractint) Christmas_giftwrap
  930.  
  931. Hi Kathy,
  932.  
  933. >>1_another-shore     ; midgets on another shore<<
  934.  
  935. Wow!
  936. Super 3D-effect!
  937.  
  938. I had a dabble with your "midgets caught in spider web" and came up with
  939. these...
  940.  
  941. leafy_m            { ; leafy midget                         t=  0:04:24.96
  942.                      ; t=calc time [h:mm:ss.] using a PII-266 at 1600x1200
  943.                      ; (c) 1998 by Les St Clair [Par date: May 16, 1998]
  944.                      ; e-mail to: les_stclair@compuserve.com
  945.   reset=1960 type=formula formulafile=frac_ml.frm
  946.   formulaname=dmj-mand-cr2-ang passes=t
  947.   center-mag=+0.16331754865604500/+0.63975427681142860/94.17433/1.25
  948.   params=0.33/12/10/1/10/10 float=y maxiter=200 inside=zmag decomp=256
  949.   colors=000fnr<12>IQVGOTGOU<12>8`j7al7al<14>hpukqvkpu<13>kbYlaWk`W<13>NKR\
  950.   LIQKIQ<14>5VV<15>jsw<13>HL_FJYFJYEIX<14>tlo<14>VKNTILSIL<14>AUO<15>esm<1\
  951.   4>KHGIEDJGF<13>bgodjrciq<13>MSaKQ_LR`<14>iqu cyclerange=0/255
  952.   }
  953. steely_m           { ; steely midget                        t=  0:02:37.25
  954.                      ; t=calc time [h:mm:ss.] using a PII-266 at 1600x1200
  955.                      ; (c) 1998 by Les St Clair [Par date: May 16, 1998]
  956.                      ; e-mail to: les_stclair@compuserve.com
  957.   reset=1960 type=formula formulafile=frac_ml.frm
  958.   formulaname=dmj-mand-cr2-ang passes=t
  959.   center-mag=0.337048/0.639754/19.29802/1.25 params=-6/0.5/4/1/4/4
  960.   float=y maxiter=200 inside=zmag decomp=256
  961.   colors=202642A82A46E86EC2IG2MK2MG6IC6I8AI4EM8EMCAQGAQCEUGEUKAUO6QK6QO2<2\
  962.   >a_2aW6YS6YOAYKEaOEaSAeWAeSEiWEi_Aic6e_6ec2ig2mk2mg6qk6qo2us2yw2ys6uo6uk\
  963.   AyoAykEugEqcEqgAmcA<2>mSMqWMq_IucIygIycMu_MuWQy_QyWUuSUqOUqSQmOQmKUiGUeC\
  964.   UeGQiKQiOMiSIeOIeKMaGMaKIYGIYCMY8QaCQa8UY4UY0Ya4Ya0aY4aY8eYCia8ia4ee0ee4\
  965.   ii0ii4ei8ae4ae8YiCYmGYmCaqGaqKYuOYySYyOauKauGeyKeyGiuCiq8iqCem8em4im0mm4\
  966.   qq0qq4mu8myCmy8qu4qu0uy4uy0yu4yq8yq4um8umCyiGyeKyeGuiCui8qi4me8meCqaGqaC\
  967.   mYGmYKqYOuaKuaOy<2>Q_yQWuUSuUOqUKmQOmQSqMWqMSmIWmI_qIcuM_uMcyIgyEkyEguAk\
  968.   uAoy6sy2wy2su6ou6kq2oq2km6gmAcmAgqEcq<2>ESeAWeA_i6ci2gi2ce6_e6Wa2_a2WY6S\
  969.   YAOYASaEOaEKYIGYMCYMGaIKaIOeISiMOiMKeQGeQKiUGiUCeU8aQCaQ8YU4YU0UQ4UQ0QU4\
  970.   QU8MUCIQ8IQ4MM0MM4II0II4MI8QM4QM8UICUEGUECQAGQAKU6OU2SU2OQ6KQ6GM2KM2GI6C\
  971.   IA8IACME8ME4IE0EE4AA0AA4E68E2CE28A64A606246 cyclerange=0/255
  972.   }
  973.  
  974. cheers, Les
  975.  
  976.  
  977.  
  978. - --------------------------------------------------------------
  979. Thanks for using Fractint, The Fractals and Fractint Discussion List
  980. Post Message:   fractint@lists.xmission.com
  981. Get Commands:   majordomo@lists.xmission.com "help"
  982. Administrator:  twegner@phoenix.net
  983. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  984.  
  985. ------------------------------
  986.  
  987. Date: Sun, 17 May 1998 20:57:18 +0100
  988. From: "Les St Clair" <les_stclair@crosstrees.prestel.co.uk>
  989. Subject: Re: (fractint) Carlson formula pars
  990.  
  991. Hi kathy,
  992.  
  993. >>"Basket_Weave" 
  994. >>Les, I hope you don't mind me posting your par.
  995.  
  996. Not at all, but I noticed that the aspect ratio has changed to 0.6:1
  997. >>viewwindows=1/0.6/yes/0/0
  998.  
  999. Was this intentional?
  1000. (it is also the way in which all of your most recent postings have been done)
  1001.  
  1002. just checking!
  1003.  
  1004. cheers, Les
  1005.  
  1006.  
  1007.  
  1008. - --------------------------------------------------------------
  1009. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1010. Post Message:   fractint@lists.xmission.com
  1011. Get Commands:   majordomo@lists.xmission.com "help"
  1012. Administrator:  twegner@phoenix.net
  1013. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1014.  
  1015. ------------------------------
  1016.  
  1017. Date: Sun, 17 May 1998 15:18:18 -0500 (CDT)
  1018. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  1019. Subject: (fractint) LorentzM with FlexBalls Formula
  1020.  
  1021. comment {
  1022. This formula applies my FlexBall rendering method to Oliver
  1023. Klimek's LorentzM formula.  Both of the pars are zooms into
  1024. Oliver's LorentzM_03 par.
  1025.  
  1026. Paul Carlson
  1027. }
  1028.  
  1029. frm:LorentzM_FB {; Copyright (c) Paul W. Carlson, 1998
  1030.     ;keep p1 between 0 and 1, <0.7 is best, negative values mirror
  1031.     ;Re(p1)=Im(p1) -> 0 converges to standard Mandel rotated by 90
  1032.     ;Size increases with |p1|
  1033.     ; real(p2) = radius of center of ring (0.01 to 10)
  1034.     ; imag(p2) = one half thickness of ring (0.01 to real(p2))
  1035.     ; real(p3) = bailout test value
  1036.     ; imag(p3) = iterations to skip
  1037.     c = pixel
  1038.     w = z = iter = bailout = 0
  1039.     k = real(p2)
  1040.     d0 = k + imag(p2)
  1041.     test = real(p3)
  1042.     skip = imag(p3)
  1043.     d1 = 0.382683432365 * k
  1044.     d2 = 0.923879532511 * k
  1045.     dsqd = d0 * d0 + k * k - (d0 + d0) * d2:
  1046.     ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1047.     ; Oliver Klimek's Lorentz equation (using w instead of z)
  1048.     w = sqrt(1 - (w * w) / (p1 * p1)) + c
  1049.     ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1050.     IF ((abs(cabs(w) - k) < imag(p2)) && iter > skip)
  1051.     bailout = 1
  1052.     wr = real(w), wi = imag(w)
  1053.     awr = abs(wr), awi = abs(wi)
  1054.     IF (awr >= awi)
  1055.         dist = (awr - d2)*(awr - d2) + (awi - d1)*(awi - d1)
  1056.         adjust = 1
  1057.     ELSE
  1058.         dist = (awr - d1)*(awr - d1) + (awi - d2)*(awi - d2)
  1059.         adjust = 0
  1060.     ENDIF
  1061.     IF     (wr >= 0 && wi >= 0)
  1062.         range_num = 1 - adjust
  1063.     ELSEIF (wr < 0 && wi >= 0)
  1064.         range_num = 2 + adjust
  1065.     ELSEIF (wr < 0 && wi < 0)
  1066.         range_num = 5 - adjust
  1067.     ELSE
  1068.         range_num = 6 + adjust
  1069.     ENDIF
  1070.     ratio = sqrt(dist / dsqd)
  1071.     z = 29 * ratio + range_num * 30 + 1
  1072.     ENDIF
  1073.     iter = iter + 1
  1074.     z = z - iter
  1075.     bailout == 0 && |w| < test
  1076. }
  1077.  
  1078. lorentz_brot       { ; Copyright (c) Paul W. Carlson, 1998
  1079.              ; t=  0:24:11.13, 1024x768, 60MHz Pentium
  1080.   reset=1960 type=formula formulafile=lorzfb.frm
  1081.   formulaname=lorentzm_fb passes=t
  1082.   center-mag=-0.87709724048014150/+0.70571620673051020/5877.123\
  1083.   /1/-112.999 params=0.5/0.45/0.1/0.06/8/50
  1084.   float=y maxiter=1000 inside=253 outside=summ
  1085.   colors=000z88<28>O00zW0<28>c40zz0<28>aG00zR<28>0C40zz<28>0CCG\
  1086.   Gz<28>00OfOz<28>I0Kz0f<28>O08000<13>000
  1087.   }
  1088.  
  1089. lorentz_brot2      { ; Copyright (c) Paul W. Carlson, 1998
  1090.              ; t=  0:11:48.82, 1024x768, 60MHz Pentium
  1091.   reset=1960 type=formula formulafile=lorzfb.frm
  1092.   formulaname=lorentzm_fb passes=t
  1093.   center-mag=-1.95545788583318400/+1.00095876009412100/244.3233\
  1094.   /1/-168.5 params=0.5/0.45/1/0.04/8/25
  1095.   float=y maxiter=500 inside=253 outside=summ
  1096.   colors=0LLzW0<28>c40zW0<28>c40zW0<28>c400zz<28>0CC0zz<28>0CC0\
  1097.   zz<28>0CC0zz<28>0CCzW0<28>c40000<13>000
  1098.   }
  1099.  
  1100.  
  1101.  
  1102. - --------------------------------------------------------------
  1103. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1104. Post Message:   fractint@lists.xmission.com
  1105. Get Commands:   majordomo@lists.xmission.com "help"
  1106. Administrator:  twegner@phoenix.net
  1107. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1108.  
  1109. ------------------------------
  1110.  
  1111. Date: Sun, 17 May 1998 16:24:41 -0400
  1112. From: "Marie Drozdis" <mariedrozdis@worldnet.att.net>
  1113. Subject: RE: RE: (fractint) Newbie needs help
  1114.  
  1115. Right you are!  That's not only the ol' math instructor in me coming out,
  1116. but a reflection of my use of Paint programs. I like that size to work in.
  1117. Cheers.  Marie :)
  1118. - -----Original Message-----
  1119. From:    owner-fractint@lists.xmission.com
  1120. [mailto:owner-fractint@lists.xmission.com] On Behalf Of Christian Strik
  1121. Sent:    Sunday, May 17, 1998 3:43 PM
  1122. To:    fractint@lists.xmission.com
  1123. Subject:    Re: RE: (fractint) Newbie needs help
  1124.  
  1125. Marie Drozdis wrote:
  1126.  
  1127. >I'll go back and reread  your message. My last computer had the ET4000
  1128. >adapter which I used successfully with both Windows 3.1 and Win95.
  1129. >Meanwhile, I hope someone with more technical knowledge will jump in with
  1130. >some suggestions. It's a shame not to be able to view these in at least
  1131. >600x800.
  1132.  
  1133. Guess you mean 800x600. Fractint's got a lot of crazy vid modes, but 600x800
  1134. :-)
  1135.  
  1136. Christian
  1137.  
  1138.  
  1139.  
  1140.  
  1141. - --------------------------------------------------------------
  1142. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1143. Post Message:   fractint@lists.xmission.com
  1144. Get Commands:   majordomo@lists.xmission.com "help"
  1145. Administrator:  twegner@phoenix.net
  1146. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1147.  
  1148.  
  1149. - --------------------------------------------------------------
  1150. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1151. Post Message:   fractint@lists.xmission.com
  1152. Get Commands:   majordomo@lists.xmission.com "help"
  1153. Administrator:  twegner@phoenix.net
  1154. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1155.  
  1156. ------------------------------
  1157.  
  1158. End of fractint-digest V1 #207
  1159. ******************************
  1160.  
  1161.