home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / fractint / archive / v01.n006 < prev    next >
Internet Message Format  |  1997-08-21  |  41KB

  1. From: fractint-owner@xmission.com (fractint Digest)
  2. To: fractint-digest@xmission.com
  3. Subject: fractint Digest V1 #6
  4. Reply-To: fractint@xmission.com
  5. Sender: fractint-owner@xmission.com
  6. Errors-To: fractint-owner@xmission.com
  7. Precedence: 
  8.  
  9.  
  10. fractint Digest        Friday, August 22 1997        Volume 01 : Number 006
  11.  
  12.  
  13.  
  14. In this issue:
  15.  
  16.     Re: (fractint) Hello
  17.     (fractint) Periodicity checking
  18.     (fractint) video-driver
  19.     (fractint) Fractal Creations 2nd edition
  20.     Re: (fractint) video-driver 
  21.     (fractint) 2nd Question: New Hole<G>
  22.     (fractint) Holey Fractals, Batman!
  23.     Re: (fractint) 2nd Question: New Hole<G>
  24.     Re: (fractint) 2nd Question: New Hole<G>
  25.     (fractint) 2nd Question: New Hole<G>
  26.     Re: (fractint) 2nd Question: New Hole<G>
  27.     (fractint) Re: Fractint formulas
  28.     Re: (fractint) Tru.c workings
  29.     Re: (fractint) Tru.c workings
  30.     (fractint) New Coloring Methods
  31.     (fractint) question & introduction
  32.     (fractint) PARs and FRMs
  33.  
  34. See the end of the digest for information on subscribing to the fractint
  35. or fractint-digest mailing lists and on how to retrieve back issues.
  36.  
  37. ----------------------------------------------------------------------
  38.  
  39. Date: Wed, 20 Aug 1997 09:59:44 -0700
  40. From: "Jay Hill"<jrhill@NOTESGW.NOSC.MIL>
  41. Subject: Re: (fractint) Hello
  42.  
  43. Russel wrote:
  44. >Here is my request, could you (being all who post formulas or parameters)
  45. >post them as e-mail attachments?  A few have done this and it makes
  46. >it so much easier.
  47.  
  48.  
  49. If we must use attachments please make it in addition to the email, when
  50. I export my email to an ascii file, attachments are lost.  Par files
  51. without
  52. the description are soon orphins.  I have found the Fractal of the Day
  53. email works great if I export the whole thing and name it with a .par
  54. extension. Fractint  19.6 reads it fine.
  55.  
  56. Jay
  57.  
  58.  
  59.  
  60. - ------------------------------------------------------------
  61. Thanks for using Fractint, The Fractals and Fractint Discussion List
  62. Post Message:   fractint@xmission.com
  63. Get Commands:   majordomo@xmission.com "help"
  64. Administrator:  twegner@phoenix.net
  65. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  66.  
  67. ------------------------------
  68.  
  69. Date: Wed, 20 Aug 1997 13:07:49 -0400
  70. From: "Damien M. Jones" <dmj@emi.net>
  71. Subject: (fractint) Periodicity checking
  72.  
  73. - --=====================_872111269==_
  74. Content-Type: text/plain; charset="us-ascii"
  75.  
  76. Alice,
  77.  
  78.  -   And the periodicity setting....Les St. Clair has tried to explain that
  79.  - to me, and it's like a big brick wall.<G>
  80.  
  81. OK, I'll take a stab at it.  Let me know if I obfuscate... ;-)
  82.  
  83. Your average garden-variety fractal takes each screen point and maps it to
  84. a complex number, running that number through the same equation over and
  85. over again to see what happens.  Points "outside" the set head off towards
  86. infinity (they get bigger than the "bailout" value) and points "inside" the
  87. set don't--they just kind of hang around.  Eventually you've run the point
  88. through so many iterations you "give up"--this is the maximum iterations
  89. value.
  90.  
  91. The problem (as far as speed is concerned) is that all of your inside
  92. points are run through your equation the *full* number of times.  If there
  93. was a way to detect early on that a point isn't going to head to infinity,
  94. you could quit early, safe in the knowledge that the point is "inside".
  95.  
  96. Well, for some points, you *can* find out early.  Some points, as they are
  97. pushed through the equation over and over, produce a repeating cycle of
  98. numbers.  For example, in the Mandelbrot set, the point at (-2,0), as it is
  99. run through the iterated equation z = z*z + c, produces the sequence (0,0),
  100. (-2,0).  One number produces the other.  Obviously that's not heading
  101. towards infinity, so if that can be detected, the program can quit early
  102. and not calculate 10,000 iterations of that point.
  103.  
  104. To see what's going on, start FractInt and let the M-set fully draw.  Press
  105. "O" (to turn on the Orbits window) and "L" (to connect all the points with
  106. Lines).  Now move the pointer over the M-set.  What FractInt is showing you
  107. is how the point you start at moves around as it is run through the
  108. iterative equation.  Move the pointer into the main bud at the left side,
  109. and you'll see the point ping-pongs between two areas.  Now move the
  110. pointer into the big bud at the top.  You'll see a rough triangle, as the
  111. point moves through three small areas that make up the triangle corners.
  112. (Press L again to see the point clusters.)
  113.  
  114. For many fractal types, inside points show this kind of periodic (cyclic)
  115. behavior.  But here's the catch: some points may *look* like they're doing
  116. this, but in fact the numbers are just a little bit different each time;
  117. and if you iterate long enough, they suddenly become unstable and shoot off
  118. towards infinity.  With FractInt's periodicity checking, sometimes these
  119. points are mistaken early on as periodic points, when in fact they just
  120. need to be iterated more to show that they shoot off to infinity.
  121.  
  122. To see an example of this, I've attached a PAR file of a Julia set.  If you
  123. generate this as is, you'll see the middle of the looping spiral is
  124. missing, even though the maximum iterations is set to 1000 and it should
  125. appear.  (And it uses two-pass rendering, so it's not being dropped out by
  126. guessing.)  If you press "G" and type "periodicity=no" to turn off
  127. periodicity checking, the fractal will redraw and you'll see the inner
  128. loops of the spiral.  The effect is much more pronounced at lower
  129. resolutions (like 640x480) than my normal working res of 1024x768.  This
  130. type of drop-out can be baffling if you forget to try turning off
  131. periodicity checking.
  132.  
  133. - --=====================_872111269==_
  134. Content-Type: text/plain; charset="us-ascii"
  135. Content-Disposition: attachment; filename="Period.par"
  136.  
  137. periodicityexample {
  138.   reset=1960 type=julia passes=2 center-mag=0/0/0.6666667
  139.   params=-0.7482893185793418/-0.025423566101695 float=y maxiter=1000
  140.   bailout=128 inside=0 colors=@atomic.map
  141.   }
  142.  
  143.  
  144. - --=====================_872111269==_
  145. Content-Type: text/plain; charset="us-ascii"
  146.  
  147.  
  148. Damien M. Jones  /  temporary sanity designs  /  http://www.emi.net/~dmj/
  149.    dmj@emi.net  /  my gallery: http://www.geocities.com/SoHo/Lofts/2605/
  150.  
  151. - --=====================_872111269==_--
  152.  
  153.  
  154. - ------------------------------------------------------------
  155. Thanks for using Fractint, The Fractals and Fractint Discussion List
  156. Post Message:   fractint@xmission.com
  157. Get Commands:   majordomo@xmission.com "help"
  158. Administrator:  twegner@phoenix.net
  159. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  160.  
  161. ------------------------------
  162.  
  163. Date: Wed, 20 Aug 97 19:29:05 +0200
  164. From: "Guenther Pfannhauser" <ongel@ibm.net>
  165. Subject: (fractint) video-driver
  166.  
  167. hello!
  168.  
  169. I have a question about graphic-adapters with fractint.
  170. Specially about the ATI MACH-64 chipset. 
  171. I read in the DOC that anyone (how knows everything about a
  172. graphics-adapter) can write his own video-driver. So, does anybody know
  173. where I can find these driver-files on the internet?
  174.  
  175. Thanks
  176. Guenther Pfannhauser
  177.  
  178.  
  179. - ------------------------------------------------------------
  180. Thanks for using Fractint, The Fractals and Fractint Discussion List
  181. Post Message:   fractint@xmission.com
  182. Get Commands:   majordomo@xmission.com "help"
  183. Administrator:  twegner@phoenix.net
  184. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  185.  
  186. ------------------------------
  187.  
  188. Date: Wed, 20 Aug 1997 11:09:04 -0700
  189. From: "Jay Hill"<jrhill@NOTESGW.NOSC.MIL>
  190. Subject: (fractint) Fractal Creations 2nd edition
  191.  
  192. Fractal Creations 2nd edition:
  193. What is the interest in this out of print book? Send my email if you are
  194. looking for a copy.
  195.  
  196. JAY.R.HILL@cpmx.saic.com
  197.  
  198. Jay
  199.  
  200.  
  201.  
  202. - ------------------------------------------------------------
  203. Thanks for using Fractint, The Fractals and Fractint Discussion List
  204. Post Message:   fractint@xmission.com
  205. Get Commands:   majordomo@xmission.com "help"
  206. Administrator:  twegner@phoenix.net
  207. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  208.  
  209. ------------------------------
  210.  
  211. Date: Wed, 20 Aug 1997 11:43:41 -0600
  212. From: Rich Thomson <rthomson@ptc.com>
  213. Subject: Re: (fractint) video-driver 
  214.  
  215. In article <199708201738.RAA126038@out1.ibm.net> ,
  216.     "Guenther Pfannhauser" <ongel@ibm.net>  writes:
  217. > I have a question about graphic-adapters with fractint.
  218. > Specially about the ATI MACH-64 chipset. 
  219. > I read in the DOC that anyone (how knows everything about a
  220. > graphics-adapter) can write his own video-driver. So, does anybody know
  221. > where I can find these driver-files on the internet?
  222.  
  223. You'll want to start with the source code for fractint.  It is
  224. available in all the same places that executable version is.  Here's a
  225. URL for the one at spanky <URL:
  226. http://spanky.triumf.ca/pub/fractals/programs/ibmpc/frasr196.zip>
  227. - --
  228.   ``Between stimulus and response is the will to choose.''  -- Steven Covey
  229.  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  230.      3D Paint: The Power to Create in 3D;        Rich Thomson
  231.      email me for more info                rthomson@ptc.com
  232.  
  233. - ------------------------------------------------------------
  234. Thanks for using Fractint, The Fractals and Fractint Discussion List
  235. Post Message:   fractint@xmission.com
  236. Get Commands:   majordomo@xmission.com "help"
  237. Administrator:  twegner@phoenix.net
  238. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  239.  
  240. ------------------------------
  241.  
  242. Date: Wed, 20 Aug 1997 17:52:22 -0400 (EDT)
  243. From: A M Kelley <amkelley@freenet.columbus.oh.us>
  244. Subject: (fractint) 2nd Question: New Hole<G>
  245.  
  246. - --1920402471-551766607-872114546:#19925
  247. Content-Type: TEXT/PLAIN; charset=US-ASCII
  248.  
  249. Well after that exciting success with my first holed fractal, which is now
  250. dressed up in a nice colormap and is ready for my gallery, I went running
  251. for this fractal, already on my gallery and one of my favorites, that also
  252. has a hole in its spiral vortex; I was eager to apply what I've learned to
  253. fill
  254. in its hole. I'll bet since you see there's an attached par file you can
  255. guess what happened.<G> Since this one's formula does not allow for a
  256. bailout value, I wrote one in the par file. No good. Playing with the
  257. maxiter and logmap values makes no difference. This fractal has a distest
  258. of 1000, and I tried varying that. Raising it to 50000000 or so fills in
  259. the hole with some busy looking stuff, but still, it's a hole. I am almost
  260. certain this is my last holed fractal, by the way.<G> The par has a zoom
  261. into the hole included. Thank you all in advance.--Alice
  262.  
  263. - --1920402471-551766607-872114546:#19925
  264. Content-Type: APPLICATION/octet-stream; name="quest2.par"
  265. Content-ID: <Pine.3.07.9708201826.A19925@login>
  266. Content-Description: 
  267.  
  268.  
  269. Fractalj.gif       { ; Pulse
  270.                      ; by amkelley@freenet.columbus.oh.us
  271.   reset=1950 type=formula formulafile=fractint.frm
  272.   formulaname=CGNewtonSinExp passes=2
  273.   center-mag=-0.992426/0.931621/4.63121 params=1.4/1 float=y
  274.   maxiter=5000 inside=bof60 logmap=5 distest=1000/71/80/60
  275.   colors=834pJE<43>A45945834723502301000<13>ehlhkoilokmp<9>WTL834<173>834V\
  276.   0BW0B
  277.   }
  278. Pulse_zoom         { ; amkelley@freenet.columbus.oh.us
  279.   reset=1950 type=formula formulafile=fractint.frm
  280.   formulaname=CGNewtonSinExp passes=2
  281.   center-mag=-0.950575/0.9244/46.3121 params=1.4/1 float=y
  282.   maxiter=5000 inside=bof60 logmap=5 distest=1000/71/400/300
  283.   colors=834pJE<43>A45945834723502301000<13>ehlhkoilokmp<9>WTL834<173>834V\
  284.   0BW0B
  285.   }
  286.  
  287.  
  288. - --1920402471-551766607-872114546:#19925--
  289.  
  290.  
  291. - ------------------------------------------------------------
  292. Thanks for using Fractint, The Fractals and Fractint Discussion List
  293. Post Message:   fractint@xmission.com
  294. Get Commands:   majordomo@xmission.com "help"
  295. Administrator:  twegner@phoenix.net
  296. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  297.  
  298. ------------------------------
  299.  
  300. Date: Wed, 20 Aug 1997 18:11:04 -0400 (EDT)
  301. From: A M Kelley <amkelley@freenet.columbus.oh.us>
  302. Subject: (fractint) Holey Fractals, Batman!
  303.  
  304. I forgot to mention that I did try various periodicity values with this
  305. latest fractal, and there was no effect.....--Alice
  306.  
  307.  
  308.  
  309. - ------------------------------------------------------------
  310. Thanks for using Fractint, The Fractals and Fractint Discussion List
  311. Post Message:   fractint@xmission.com
  312. Get Commands:   majordomo@xmission.com "help"
  313. Administrator:  twegner@phoenix.net
  314. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  315.  
  316. ------------------------------
  317.  
  318. Date: Wed, 20 Aug 1997 15:43:04 -0700
  319. From: "Jay Hill"<jrhill@NOTESGW.NOSC.MIL>
  320. Subject: Re: (fractint) 2nd Question: New Hole<G>
  321.  
  322. Now these are strange par files. Look what happened when I zoom out.
  323. There is a sudden jump in the image.
  324.  
  325. Why?
  326.  
  327.  
  328.  
  329. JumpPoint          { ; zoom out just a bit
  330.                      ; see suddenly a different picture
  331.   reset=1950 type=formula formulafile=fractint.frm
  332.   formulaname=cgnewtonsinexp passes=2
  333.   center-mag=-0.992426/0.931621/0.006024541 params=1.4/1 float=y
  334.   maxiter=5000 inside=bof60 logmap=5 distest=1000/71/80/60
  335.   viewwindows=2/0.75/yes/0/0
  336.   colors=834pJE<43>A45945834723502301000<13>ehlhkoilokmp<9>WTL834<173>834V\
  337.   0BW0B
  338.   }
  339.  
  340.  
  341.  
  342.  
  343. - ------------------------------------------------------------
  344. Thanks for using Fractint, The Fractals and Fractint Discussion List
  345. Post Message:   fractint@xmission.com
  346. Get Commands:   majordomo@xmission.com "help"
  347. Administrator:  twegner@phoenix.net
  348. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  349.  
  350. ------------------------------
  351.  
  352. Date: Wed, 20 Aug 1997 19:33:46 -0400
  353. From: "Damien M. Jones" <dmj@emi.net>
  354. Subject: Re: (fractint) 2nd Question: New Hole<G>
  355.  
  356. Alice,
  357.  
  358. This one took me a while, but it is a bailout problem.  The fractal type
  359. you're using in this image is a Newton-type, which uses a different bailout
  360. test than some fractals.  With a Newton-type, you test to see if your
  361. iterated value homes in on a "solution", rather than if it heads to
  362. infinity.  So typically you check to see if a value gets very small,
  363. instead of gets very big.  In this case, the bailout is at the end of the
  364. function, and is .0001--change it to .0000001 and your hold will close
  365. right up.
  366.  
  367. BTW, this was one of my favorite images of yours.  Very interesting.
  368.  
  369. Here's the corrected FRM (just paste this in your own FRM file):
  370.  
  371. newCGNewtonSinExp (XAXIS) {
  372.   z=pixel:
  373.    z1=exp(z)
  374.    z2=sin(z)+z1-z
  375.    z=z-p1*z2/(cos(z)+z1)
  376.     .0000001 < |z2|
  377.   }
  378.  
  379. Better yet, replace .0000001 with p3, and you can adjust the bailout to
  380. taste.  Just remember that in Newton types, a *smaller* bailout means
  381. points iterate longer; with other types (where points shoot off to
  382. infinity), *larger* bailouts means points iterate longer.  Ain't fractals
  383. fun? :)
  384.  
  385. Damien M. Jones  /  temporary sanity designs  /  http://www.emi.net/~dmj/
  386.    dmj@emi.net  /  my gallery: http://www.geocities.com/SoHo/Lofts/2605/
  387.  
  388.  
  389. - ------------------------------------------------------------
  390. Thanks for using Fractint, The Fractals and Fractint Discussion List
  391. Post Message:   fractint@xmission.com
  392. Get Commands:   majordomo@xmission.com "help"
  393. Administrator:  twegner@phoenix.net
  394. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  395.  
  396. ------------------------------
  397.  
  398. Date: Wed, 20 Aug 1997 19:49:44 -0400
  399. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  400. Subject: (fractint) 2nd Question: New Hole<G>
  401.  
  402. Hi Alice,
  403.  
  404. >> I'll bet since you see there's an attached par file you can guess what=
  405.  
  406. >> happened.<G>
  407.  
  408.   I added a second parameter (p2) to the formula and the pars.  Now, you
  409. can use p2 to reduce the size of the hole but it will never disappear.
  410.  
  411.         -  Sylvie
  412.  
  413. FRM:CGNewtonSinExp-M (XAXIS) {
  414.   z=3Dpixel:
  415.    z1=3Dexp(z)
  416.    z2=3Dsin(z)+z1-z
  417.    z=3Dz-p1*z2/(cos(z)+z1)
  418.     p2 < |z2|
  419.   }
  420.  
  421. Fractalj-m         { ; Pulse
  422.                      ; by amkelley@freenet.columbus.oh.us
  423.   reset=3D1950 type=3Dformula formulafile=3Dfractint.frm
  424.   formulaname=3DCGNewtonSinExp-m passes=3D2
  425.   center-mag=3D-0.992426/0.931621/4.63121 params=3D1.4/1/.0001/0 float=3D=
  426. y
  427.   maxiter=3D5000 inside=3Dbof60 logmap=3D5 distest=3D1000/71/80/60
  428.   colors=3D834pJE<43>A45945834723502301000<13>ehlhkoilokmp<9>WTL834<173>8=
  429. 34V\
  430.   0BW0B
  431.   }
  432. Pulse_zoom-m         { ; amkelley@freenet.columbus.oh.us
  433.   reset=3D1950 type=3Dformula formulafile=3Dfractint.frm
  434.   formulaname=3DCGNewtonSinExp-M passes=3D2
  435.   center-mag=3D-0.950575/0.9244/46.3121 params=3D1.4/1/.0001/0 float=3Dy
  436.   maxiter=3D5000 inside=3Dbof60 logmap=3D5 distest=3D1000/71/400/300
  437.   colors=3D834pJE<43>A45945834723502301000<13>ehlhkoilokmp<9>WTL834<173>8=
  438. 34V\
  439.   0BW0B
  440.   }
  441.  
  442. - ------------------------------------------------------------
  443. Thanks for using Fractint, The Fractals and Fractint Discussion List
  444. Post Message:   fractint@xmission.com
  445. Get Commands:   majordomo@xmission.com "help"
  446. Administrator:  twegner@phoenix.net
  447. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  448.  
  449. ------------------------------
  450.  
  451. Date: Wed, 20 Aug 1997 17:21:57 -0700
  452. From: "Jay Hill"<jrhill@NOTESGW.NOSC.MIL>
  453. Subject: Re: (fractint) 2nd Question: New Hole<G>
  454.  
  455. Well, so here is what I tried, but the spot does get very small if
  456. you make p2=1.e-12.  What are the limits for these parameters.
  457. Is extended arithmetic available so we can zoom in?  Looks like
  458. if it is, set p2 = (desired_spot_size)^^2.  Here I go in with magnification
  459. 10^^11 and p2 = 10^^-24 and there is the spot.
  460.  
  461.  
  462. frm:newCGNewtonSinExp (XAXIS) {
  463. z=pixel:
  464. z1=exp(z)
  465. z2=sin(z)+z1-z
  466. z=z-p1*z2/(cos(z)+z1)
  467. p2 < |z2|   ; p2 small like .0000001 or smaller, not zero
  468. }
  469.  
  470. NewFract_Deepzoom  { ; Pulse  zoomed in
  471.                      ; by amkelley@freenet.columbus.oh.us
  472.   reset=1950 type=formula formulafile=quest2.par
  473.   formulaname=newcgnewtonsinexp passes=2
  474.   center-mag=-0.95145378834490950/+0.92132932950487430/1.703328e+011
  475.   params=1.4/1/0/0/9.999999999999999e-025/0 float=y maxiter=5000
  476.   inside=bof60 logmap=5 distest=1000/71/80/60
  477.   colors=834pJE<43>A45945834723502301000<13>ehlhkoilokmp<9>WTL834<173>834V\
  478.   0BW0B
  479.   }
  480.  
  481.  
  482.  
  483.  
  484. - ------------------------------------------------------------
  485. Thanks for using Fractint, The Fractals and Fractint Discussion List
  486. Post Message:   fractint@xmission.com
  487. Get Commands:   majordomo@xmission.com "help"
  488. Administrator:  twegner@phoenix.net
  489. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  490.  
  491. ------------------------------
  492.  
  493. Date: Thu, 21 Aug 1997 16:32:56 -0700
  494. From: "Jay Hill"<jrhill@NOTESGW.NOSC.MIL>
  495. Subject: (fractint) Re: Fractint formulas
  496.  
  497. Hi all,
  498. Since I would also like to know how to do these things with Fractint,
  499. I am pushing this out to the fractint list.   For example, I want to color
  500. a point
  501. inside an MSet component according to its period or some other
  502. function of its position, c.  And if it is outside, color it according to
  503. its
  504. iteration count and some other function of c and z[n].
  505. Jay
  506.  
  507. Forewarded message....
  508.  
  509.  
  510. Subject: Fractint formulas
  511.        Date: 21 Aug 1997 05:08:53 GMT
  512.        From: "Phong" <phong@ismi.net>
  513. Organization:Coteric Continuum
  514.  Newsgroups:  sci.fractals
  515.  
  516.  
  517. I'm trying to write a formula that will bail out the normal way for some
  518. pixels, but will specify a specific color for ones that meet a certain
  519. criteria at some point during their iteration.  Basically what I am trying
  520. to do is the exact same thing as the parameter inside=epsiloncross, except
  521. I want to specify how close the orbits must come to the axes (or some
  522. arbitrary points or lines in the complex plane) to bail out (and get
  523. colored a specific color rather than the iteration count).  Right now, I'm
  524. keeping track of what iteration I'm currently on, and if I want to bail out
  525. to a certain color, I set a variable then bail out when the color wraps
  526. around to the right one.  That is a total kludge, slows things down and is
  527. awkward.  Is there a better way?  If not, is it something that is planed
  528. for a future version of Fractint (i.e. a variable you can set to specify
  529. that a pixel should be a certain color rather than the number of
  530. iterations).
  531.  
  532.    -- Tom Schumm ---- http://www.ismi.net/~phong/ ----__/\__---- Phong --
  533.   -- v3.1 GCS/M d- s: a20 C$++>++++ W++(--) P++++ M-- \    / w---(++) --
  534.  -- UBLS$+++(++++) L+ t+* X+ b+ DI++++ G+ !r y? __/\__/    \__/\__ e --
  535. - -- the Coteric Continuum -- O- -- phong@ismi.net / tgschumm@mtu.edu --
  536.  
  537.  
  538.  
  539. - ------------------------------------------------------------
  540. Thanks for using Fractint, The Fractals and Fractint Discussion List
  541. Post Message:   fractint@xmission.com
  542. Get Commands:   majordomo@xmission.com "help"
  543. Administrator:  twegner@phoenix.net
  544. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  545.  
  546. ------------------------------
  547.  
  548. Date: Thu, 21 Aug 1997 18:57:04 -0600
  549. From: "Tim Wegner" <twegner@phoenix.net>
  550. Subject: Re: (fractint) Tru.c workings
  551.  
  552. > Date:          Mon, 18 Aug 1997 08:20:48 -0600 (MDT)
  553. > From:          Jason Hine <jason@CNR.ColoState.EDU>
  554. > To:            fractint@xmission.com
  555. > Subject:       (fractint) Tru.c workings
  556. > Reply-to:      fractint@mail.xmission.com
  557.  
  558. > Howdy all,
  559. >     After a weekend of playing around with the little piece of C code that 
  560. > comes with Fractint called TRU.C, I've determined the following (maybe!):
  561. >     
  562. >     1) TRU.C is designed to read in the file ITERATES.TGA produced when 
  563. > Fractint is given the "truecolor=yes" command;  TRU.C first reads in the file 
  564. > header (see next note!), then reads in the actual iterations data.  There is a 
  565. > subroutine, RGBMAP, which produces a new .TGA file containing color data instead 
  566. > of iterations data.
  567. >     
  568. >     2) There seems to be a problem reading in the header which looks like 
  569. > this:
  570. >     Who-knows-what... 12 bytes
  571. >     xdots............  2 bytes
  572. >     ydots............  2 bytes
  573. >     Who-knows-what...  2 bytes
  574. >     Max_iteration....  4 bytes
  575. >     
  576. >     All these values are being read correctly except for ydots, which always 
  577. > ends up being a large number, like 6147489 or such...
  578. >     
  579. >     3) If you set a viewwindow size of 50x38 and create iterates.tga, then 
  580. > not only is the ydots in the header corrupt, but the actual iteration data is 
  581. > also incorrect.
  582. >     
  583. >     Can someone provide me with the supposed binary file format for the 
  584. > iterates.tga file?  Other suggestions welcome... I have another question, but 
  585. > I'll post it in a separate email.  Thanks, all!
  586. >     
  587. >                     Jason (Iteration) Hine
  588. > ------------------------------------------------------------
  589. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  590. > Post Message:   fractint@xmission.com
  591. > Get Commands:   majordomo@xmission.com "help"
  592. > Administrator:  twegner@phoenix.net
  593. > Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  594.  
  595. - ------------------------------------------------------------
  596. Thanks for using Fractint, The Fractals and Fractint Discussion List
  597. Post Message:   fractint@xmission.com
  598. Get Commands:   majordomo@xmission.com "help"
  599. Administrator:  twegner@phoenix.net
  600. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  601.  
  602. ------------------------------
  603.  
  604. Date: Thu, 21 Aug 1997 18:57:04 -0600
  605. From: "Tim Wegner" <twegner@phoenix.net>
  606. Subject: Re: (fractint) Tru.c workings
  607.  
  608. Hi everybody, I'm back from a quick dash to Baltimore to tack my son 
  609. to the maryland Institute College of Art. It was a good trip to a 
  610. part of the country that's new to me.
  611.  
  612. I see the fractint list has been lively while I'm gone. I don't see 
  613. many messages that that a response from me; thanks to various list 
  614. members for answering questions.
  615.  
  616. Jason Hine asked:
  617.  
  618. >     Can someone provide me with the supposed binary file format for the 
  619. > iterates.tga file?  
  620.  
  621. I remind myself about this over the weekend. I just glanced at the 
  622. code, but to much time has gone by for me to give you a quick answer 
  623. :-)
  624.  
  625. Tim
  626.  
  627.  
  628. - ------------------------------------------------------------
  629. Thanks for using Fractint, The Fractals and Fractint Discussion List
  630. Post Message:   fractint@xmission.com
  631. Get Commands:   majordomo@xmission.com "help"
  632. Administrator:  twegner@phoenix.net
  633. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  634.  
  635. ------------------------------
  636.  
  637. Date: Fri, 22 Aug 1997 00:32:43 -0400
  638. From: "Damien M. Jones" <dmj@emi.net>
  639. Subject: (fractint) New Coloring Methods
  640.  
  641. Hello all,
  642.  
  643. In my first post to this list, I asked if anyone knew how to add new
  644. coloring options to FractInt, preferably using the formula parser (instead
  645. of recompiling the C code).  Now I see some others are asking the same
  646. thing.  I've done some playing around, and I found out how to do it.
  647.  
  648. Let me give a little background, first.  I've often wondered what the bof60
  649. inside coloring option would look like applied to outside points.  I got my
  650. first taste by fudging the distance estimator method (DEM) pixel percentage
  651. value.  If you turn DEM on, you can set a percentage distance (relative to
  652. a pixel's size) such that if the point is within that distance to the set's
  653. inside, it is colored as an inside point, even though the point is outside.
  654.  Well, I set this to a ridiculous number (32767) and suddenly *all* my
  655. points are colored like inside points.
  656.  
  657. This produces some pretty neat pictures, and I've been moderately happy
  658. with the results.  Except for three things.  First, most of the inside
  659. coloring options aren't very tweakable.  Second, because I'm relying on
  660. points being within 327 pixels of the set, sometimes I get points that
  661. don't quite reach, and get colored using the outside coloring method--and
  662. that really screws up poster-size prints.  And third, it still only gives
  663. me a few more coloring options, only a couple of which (bof60 and bof61)
  664. produced really good results.
  665.  
  666. So I thought of a way to use the formula parser to add new coloring
  667. techniques.  Now, I'm sure some of you old hands and formula-writing
  668. already knew this trick, but it was quite a discovery for me.  The basic
  669. trick is that just before you bail out, you figure out what your color
  670. should be, and make it your z value's real part.  Then you can use
  671. FractInt's "real" coloring option to extract the color value.  Of course,
  672. since the "real" coloring option adds in the iteration count too, you track
  673. that and subtract it out of the z value's real part; this cancels it out.
  674. What you're left with is a whole new avenue of coloring fractals.  So, my
  675. original goal was implemented like this:
  676.  
  677. Color01 { ; New coloring technique #1 (bof60 outside)
  678.     ; outside = real: closest approach to p1
  679.     ; p2: color scaling factor
  680.     ; p3: bailout
  681.     z = 0, c = pixel, closest = 100000, point = 0, done = 2:
  682.     z = fn1(z) + c
  683.     done = done + 1
  684.     IF (|z-p1| < closest)
  685.       point = z
  686.       closest = |z-p1|
  687.     ENDIF
  688.     IF (|z| > p3)
  689.       point = point - p1
  690.       z = |point| * p2 - done
  691.       done = -1
  692.     ENDIF
  693.     done >= 0
  694. }
  695.  
  696. The formula remembers the orbit point closest to p1 (so it doesn't have to
  697. be 0,0) and allows you to specify a color scaling factor and a bailout.
  698. (Set fn1 to the sqr function to get the M-set.)  The color scaling factor
  699. is important; it lets you tweak the colors as you zoom in.  And because the
  700. images don't rely on the distance estimator method to fake out the coloring
  701. routine, they're totally resolution-independent, and can be generated
  702. poster-size.
  703.  
  704. The above formula only colors outside pixels.  I wanted to be able to color
  705. inside pixels at the same time (as an option).  Doing that is pretty
  706. easy--you just bail out one iteration early, so FractInt never thinks
  707. you've quite made it to an inside point:
  708.  
  709. Color01i { ; New coloring technique #1i - same as #1, does inside too
  710.     ; might want to turn off periodicity checking
  711.     ; outside = real: closest approach to p1
  712.     ; p2: color scaling factor
  713.     ; p3: bailout
  714.     z = 0, c = pixel, closest = 100000, point = 0, done = 2:
  715.     z = fn1(z) + c
  716.     done = done + 1
  717.     IF (|z-p1| < closest)
  718.       point = z
  719.       closest = |z-p1|
  720.     ENDIF
  721.     IF (|z| > p3 || done >= maxit)
  722.       z = |point-p1| * p2 - done
  723.       done = -1
  724.     ENDIF
  725.     done >= 0
  726. }
  727.  
  728. It's important to remember to turn off periodicity checking--since this
  729. formula basically fools FractInt into thinking all pixels are "outside", if
  730. you leave periodicity on, it might end up thinking some points are "inside"
  731. and not color them the way you want.
  732.  
  733. bof60 colors based on the distance of closest approach to the origin.
  734. bof61 colors based on the iteration of closest approach to the origin.  In
  735. one picture I generated, I wanted to plot the *angle* of closest approach
  736. to the origin.  This was several months ago, before I had figured out this
  737. new trick, so I wrote a program to do the job.  But this week I wrote a FRM
  738. to do the trick:
  739.  
  740. Color05 { ; New coloring technique #5 (angle of closest approach)
  741.     ; might want to turn off periodicity checking
  742.     ; outside = decomp: angle of closest approach to p1
  743.     ; p2: bailout
  744.     z = 0, c = pixel, closest = 100000, point = 0, done = 2:
  745.     z = fn1(z) + c
  746.     done = done + 1
  747.     IF (|z-p1| < closest)
  748.       point = z
  749.       closest = |z-p1|
  750.     ENDIF
  751.     IF (|z| > p2)
  752.       z = point-p1
  753.       done = -1
  754.     ENDIF
  755.     done >= 0
  756. }
  757.  
  758. Since writing angle-decoding formula stuff is obnoxious, I thought to take
  759. advantage of FractInt's decomposition option--which takes the final z value
  760. and colors based on its angle.  So the above formula remembers the actual
  761. point of closest approach, and just before bailing out, resets z to this
  762. value--which FractInt then considers the "last value" and colors based on
  763. its angle.  I have an inside variant of this, too:
  764.  
  765. Color05i { ; New coloring technique #5 (angle of closest approach)
  766.     ; might want to turn off periodicity checking
  767.     ; outside = decomp: angle of closest approach to p1
  768.     ; p2: bailout
  769.     z = 0, c = pixel, closest = 100000, point = 0, done = 2:
  770.     z = fn1(z) + c
  771.     done = done + 1
  772.     IF (|z-p1| < closest)
  773.       point = z
  774.       closest = |z-p1|
  775.     ENDIF
  776.     IF (|z| > p2 || done >= maxit)
  777.       z = point-p1
  778.       done = -1
  779.     ENDIF
  780.     done >= 0
  781. }
  782.  
  783. And here's a PAR that produces an effect similar to what I had to write a
  784. program for earlier:
  785.  
  786. mandelc            {
  787.   reset=1960 type=formula formulafile=dmj.frm formulaname=Color05i
  788.   function=sqr center-mag=-0.938416/0/0.6666667 params=0/0/4/0 float=y
  789.   maxiter=256 inside=0 invert=0.5/-0.5/0 decomp=256 periodicity=0
  790.   colors=@bluegrey.map
  791.   }
  792.  
  793. I am still playing with this technique, and so far I've used it to produce
  794. some moderately spectacular images.  I'll post some in my gallery soon.
  795. Some of the coloring techniques I'm using require one-pass rendering to
  796. work properly, so it's faster to download them than to generate them.
  797.  
  798. Damien M. Jones  /  temporary sanity designs  /  http://www.emi.net/~dmj/
  799.    dmj@emi.net  /  my gallery: http://www.geocities.com/SoHo/Lofts/2605/
  800.  
  801.  
  802. - ------------------------------------------------------------
  803. Thanks for using Fractint, The Fractals and Fractint Discussion List
  804. Post Message:   fractint@xmission.com
  805. Get Commands:   majordomo@xmission.com "help"
  806. Administrator:  twegner@phoenix.net
  807. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  808.  
  809. ------------------------------
  810.  
  811. Date: Fri, 22 Aug 1997 17:31:01 +0200
  812. From: Jacco Burger <JACCO.BURGER@BU.TUDELFT.NL>
  813. Subject: (fractint) question & introduction
  814.  
  815. Hello everyone,
  816.  
  817. I recently joined the Fractint-mailing list and I am very surprised to
  818. discover that there are other people in this world that use Fractint and
  819. are dealing with the same problems as I am. I really learned a lot from it
  820. already. So I figured that if I could download all previous messages, I
  821. would probably have a lot of interesting stuff to learn from. Another
  822. reason to do this is that I am considering sending some questions to the
  823. list, and I hate to ask questions which already have been asked and
  824. answered.
  825.  
  826. So I thought: how does one do this? I have send a message to
  827. majordomo=40xmission.com with =A1index fractint=A2 in the body. Very soon =
  828. I found
  829. a reply in my mailbox, saying:
  830.  
  831. (begin)
  832. > --
  833. >=20
  834. > >>>> index fractint
  835. > .:
  836. > total 4
  837. > drwxrwxr-x   2 domo     domo         512 Aug 15 17:52 archive
  838. > drwxrwxr-x   2 domo     domo         512 Aug 18 14:20 latest
  839. >=20
  840. > ./archive:
  841. > total 826
  842. > -rw-r--r--   1 domo     domo      208578 Aug 18 14:20 fractint.9708
  843. > -rw-r--r--   1 domo     domo       41682 Aug 12 20:59 v01.n001
  844. > -rw-r--r--   1 domo     domo       41916 Aug 13 17:50 v01.n002
  845. > -rw-r--r--   1 domo     domo       52474 Aug 14 20:57 v01.n003
  846. > -rw-r--r--   1 domo     domo       63586 Aug 15 17:52 v01.n004
  847. >=20
  848. > ./latest:
  849. > total 68
  850. > -rw-r--r--   1 domo     domo        1726 Aug 15 17:55 001
  851. > -rw-r--r--   1 domo     domo        2947 Aug 15 17:55 002
  852. > -rw-r--r--   1 domo     domo        1281 Aug 15 17:55 003
  853. > -rw-r--r--   1 domo     domo        1468 Aug 15 17:55 004
  854. > -rw-r--r--   1 domo     domo        2133 Aug 16 11:19 005
  855. > -rw-r--r--   1 domo     domo        4910 Aug 16 18:08 006
  856. > -rw-r--r--   1 domo     domo        2457 Aug 17 18:53 007
  857. > -rw-r--r--   1 domo     domo        1980 Aug 17 20:31 008
  858. > -rw-r--r--   1 domo     domo        1334 Aug 18 04:20 009
  859. > -rw-r--r--   1 domo     domo        2167 Aug 18 08:22 010
  860. > -rw-r--r--   1 domo     domo        2499 Aug 18 08:35 011
  861. > -rw-r--r--   1 domo     domo        1085 Aug 18 09:37 012
  862. > -rw-r--r--   1 domo     domo        1988 Aug 18 14:20 013
  863. > >>>>=20
  864. >=20
  865. >=20
  866. (end)
  867.  
  868. Well, ehemmmmm..... I guess this is some sort of directory list, but I
  869. still haven=A2t got a clue which files are available for downloading , =
  870. what
  871. they contain and what their names are. Can anyone help me out on this????
  872.  
  873. I also noticed it is a sort of custom to introduce yourself. Well, =
  874. allright
  875. then - if you read on don=A2t blame me if you get bored. Also please take =
  876. in
  877. consideration that english is not my native language and I am to lazy to
  878. get the dictionary.
  879.  
  880. At the age of 12 I was drawing my first fractal, a Pythagoras-tree (some =
  881. of
  882. you might remember that in the old days drawing was a proces done by =
  883. people
  884. on flat white stuff called paper with a little stick called a pencil or
  885. pen). This tree had 1023 branches so you can understand it was a hell of a
  886. job. I used ink so one tiny mistake would spoil the whole image, and that
  887. is why I never managed to finish it.
  888. In those days the only computer I had ever seen was in a comic-book (no, I
  889. was born AFTER the war), but I already thought how wonderful it would be =
  890. if
  891. I had a machine that would be able to do the drawing. Seven years later I
  892. had my first computer, a Sinclair ZX81 with a RAM-memory of - hold your
  893. breath - 16 Kbyte (born after WHICH war?). The graphic screen was =
  894. something
  895. like 80 x 46 x 2, I am not sure, but it wasn=A2t much more. I could even =
  896. save
  897. my BASIC-programs on a tape=21 But I never came to make this machine draw =
  898. a
  899. pythagoras-tree for me.
  900. I had read an article about Mandelbrot fractals in some magazine at the
  901. library, and I thought: this is very exiting and I want to learn all about
  902. it=21 When I had access to a proper computer for the first time, and =
  903. learned
  904. some TurboPascal, I started making my own fractal-drawing program. The
  905. program was very slow, and I had only a four color CGA-screen available,
  906. but I managed to zoom in on the Mandelbrot-set. I also started thinking
  907. about how to build features like Fractint has now, something like
  908. solid-guessing and periodicity-checking.  But I am not exactly a
  909. programming engineer and I realised this was going to be very complicated.=
  910. =20
  911. And then one day... a friend of mine gave me a present for my birthday. It
  912. was floppy-disc with a copy of  Fractint 17.2 for DOS. Yes, it was a cheap
  913. present because the program is freeware and even the disc was used, but
  914. until this day I am very grateful to him. In the mean time I had bought a
  915. 80286-computer and the machine must have calculated thousands of fractals
  916. by now. I wouldn=A2t have been surprised if one day the poor thing would =
  917. have
  918. put a message on its screen like =A1Are you nuts??? at the moment when I
  919. feeded him another 200 line batch-file. I have also spend many hours
  920. editing color maps to get good looking images, and I must say I managed to
  921. get some real nice ones.
  922. A few weeks ago I bought a new computer with a Pentium 166 MHz processor.
  923. It was a terrible shock to see how fast Fractint runs on this. I had a
  924. fractal that took more than 11 hours to compute on my old 80286, on the
  925. Pentium it only took 10 minutes......and there are still people complaining=
  926.  
  927. that Fractint is SLOW???=21=21?
  928. My next plan is to buy a colour printer and put some of my images on that
  929. old fashioned flat white stuff. I am also planning to get an
  930. Internet-account at home and maybe put a gallery on a homepage. I=A2ll =
  931. keep
  932. you posted.
  933.  
  934. Bye=21
  935. Jacco Burger
  936. from Delft in The Netherlands
  937. you can e-mail me at Jacco.Burger=40BU.TUDelft.nl
  938.  
  939.  
  940. - ------------------------------------------------------------
  941. Thanks for using Fractint, The Fractals and Fractint Discussion List
  942. Post Message:   fractint@xmission.com
  943. Get Commands:   majordomo@xmission.com "help"
  944. Administrator:  twegner@phoenix.net
  945. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  946.  
  947. ------------------------------
  948.  
  949. Date: Fri, 22 Aug 1997 16:48:40 -0400
  950. From: "Damien M. Jones" <dmj@emi.net>
  951. Subject: (fractint) PARs and FRMs
  952.  
  953. My apologies to all who experimented with the FRMs and PAR that I posted
  954. last night.  I should know better to write technical messages just before
  955. going to bed; I leave things out that are important. :-)
  956.  
  957. For those who tried the FRMs and found they generated a blank screen,
  958. switch to floating-point math.  Also don't forget to set a bailout; the
  959. default is zero, and the FRM doesn't substitute a different value if you
  960. forget to put one in.  4 is good to start, but depending on the point
  961. you've selected for p1, you might want to use something higher to prevent
  962. discontinuities.  And if you don't set the color scaling factor (for the
  963. color01 formula) to something besides 0, you won't see the new coloring
  964. method.
  965.  
  966. As for the PAR... well, boneheaded me didn't realize until after I posted
  967. it that it referred to a map file rather than include the colors directly.
  968. Color me stupid.  I've attached a new PAR file below.
  969.  
  970. mandelc            {
  971.   reset=1960 type=formula formulafile=dmj.frm formulaname=color05i
  972.   function=sqr center-mag=-0.938416/0/0.6666667 params=0/0/4/0 float=y
  973.   maxiter=256 inside=0 invert=0.5/-0.5/0 decomp=256 periodicity=0
  974.   colors=000<63>oozooznny<61>AACAACBBD<61>zzzzzzyyy<60>333
  975.   }
  976.  
  977. And, for easier reference, here's the FRM file with the four formulae I
  978. posted last night (save as dmj.frm):
  979.  
  980. Color01 { ; New coloring technique #1 (bof60 outside)
  981.     ; might want to turn off periodicity checking
  982.     ; outside = real: closest approach to p1
  983.     ; p2: color scaling factor
  984.     ; p3: bailout
  985.     z = 0, c = pixel, closest = 100000, point = 0, done = 2:
  986.     z = fn1(z) + c
  987.     done = done + 1
  988.     IF (|z-p1| < closest)
  989.       point = z
  990.       closest = |z-p1|
  991.     ENDIF
  992.     IF (|z| > p3)
  993.       point = point - p1
  994.       z = |point| * p2 - done
  995.       done = -1
  996.     ENDIF
  997.     done >= 0
  998. }
  999.  
  1000. Color01i { ; New coloring technique #1i - same as #1, does inside too
  1001.     ; might want to turn off periodicity checking
  1002.     ; outside = real: closest approach to p1
  1003.     ; p2: color scaling factor
  1004.     ; p3: bailout
  1005.     z = 0, c = pixel, closest = 100000, point = 0, done = 2:
  1006.     z = fn1(z) + c
  1007.     done = done + 1
  1008.     IF (|z-p1| < closest)
  1009.       point = z
  1010.       closest = |z-p1|
  1011.     ENDIF
  1012.     IF (|z| > p3 || done >= maxit)
  1013.       z = |point-p1| * p2 - done
  1014.       done = -1
  1015.     ENDIF
  1016.     done >= 0
  1017. }
  1018.  
  1019. Color05 { ; New coloring technique #5 (angle of closest approach)
  1020.     ; might want to turn off periodicity checking
  1021.     ; outside = atan: angle of closest approach to p1
  1022.     ; p2: bailout
  1023.     z = 0, c = pixel, closest = 100000, point = 0, done = 2:
  1024.     z = fn1(z) + c
  1025.     done = done + 1
  1026.     IF (|z-p1| < closest)
  1027.       point = z
  1028.       closest = |z-p1|
  1029.     ENDIF
  1030.     IF (|z| > p2)
  1031.       z = point-p1
  1032.       done = -1
  1033.     ENDIF
  1034.     done >= 0
  1035. }
  1036.  
  1037. Color05i { ; New coloring technique #5 (angle of closest approach)
  1038.     ; might want to turn off periodicity checking
  1039.     ; outside = atan: angle of closest approach to p1
  1040.     ; p2: bailout
  1041.     z = 0, c = pixel, closest = 100000, point = 0, done = 2:
  1042.     z = fn1(z) + c
  1043.     done = done + 1
  1044.     IF (|z-p1| < closest)
  1045.       point = z
  1046.       closest = |z-p1|
  1047.     ENDIF
  1048.     IF (|z| > p2 || done >= maxit)
  1049.       z = point-p1
  1050.       done = -1
  1051.     ENDIF
  1052.     done >= 0
  1053. }
  1054.  
  1055. If there are still problems with these, let me know.  I've produced lots of
  1056. pictures with these over the past week, so I know they work.  But my
  1057. posting of them (as history proves) might not. :)
  1058.  
  1059. Damien M. Jones  /  temporary sanity designs  /  http://www.emi.net/~dmj/
  1060.    dmj@emi.net  /  my gallery: http://www.geocities.com/SoHo/Lofts/2605/
  1061.  
  1062.  
  1063. - ------------------------------------------------------------
  1064. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1065. Post Message:   fractint@xmission.com
  1066. Get Commands:   majordomo@xmission.com "help"
  1067. Administrator:  twegner@phoenix.net
  1068. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1069.  
  1070. ------------------------------
  1071.  
  1072. End of fractint Digest V1 #6
  1073. ****************************
  1074.  
  1075. To subscribe to fractint Digest, send the command:
  1076.  
  1077.     subscribe fractint-digest
  1078.  
  1079. in the body of a message to "majordomo@xmission.com".  If you want to
  1080. subscribe something other than the account the mail is coming from, such
  1081. as a local redistribution list, then append that address to the
  1082. "subscribe" command; for example, to subscribe "local-fractint":
  1083.  
  1084.     subscribe fractint-digest local-fractint@your.domain.net
  1085.  
  1086. A non-digest (direct mail) version of this list is also available; to
  1087. subscribe to that instead, replace all instances of "fractint-digest"
  1088. in the commands above with "fractint".
  1089.  
  1090. Back issues are available for anonymous FTP from ftp.xmission.com, in
  1091. pub/lists/fractint/archive.  These are organized by date.
  1092.  
  1093.