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

  1. From: fractint-owner@xmission.com (fractint Digest)
  2. To: fractint-digest@xmission.com
  3. Subject: fractint Digest V1 #18
  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       Sunday, September 21 1997       Volume 01 : Number 018
  11.  
  12.  
  13.  
  14. In this issue:
  15.  
  16.     Re: (fractint) Controlling Fractals...
  17.     Re: (fractint) video modes continued
  18.     (fractint) Video Cards
  19.     [none]
  20.     Re: (fractint) video modes continued
  21.     (fractint) Re: anti-aliasing
  22.     Re: (fractint) Video Cards
  23.     (fractint) Thanks
  24.     (fractint) Re: aliasing
  25.     (fractint) Re: 
  26.     (fractint) Re: anti-aliasinng
  27.     Re: (fractint) Re: aliasing
  28.     Re: (fractint) Re: 
  29.     Re: (fractint) Re: aliasing
  30.     (fractint) Gallery update
  31.     (fractint) Please help me print
  32.     (fractint) Serious Fractint 19.6 bug!
  33.     Re: (fractint) Re: anti-aliasinng
  34.     Re: (fractint) Gallery update
  35.     Re: (fractint) Gallery update
  36.     Re: (fractint) Gallery update
  37.     Re: (fractint) Please help me print
  38.     (fractint) Please help me print
  39.     Re: (fractint) Gallery update
  40.     Re: (fractint) Serious Fractint 19.6 bug!
  41.     Re: (fractint) Please help me print
  42.     Re: (fractint) Please help me print
  43.     Re: (fractint) Gallery update
  44.     Re: (fractint) Serious Fractint 19.6 bug!
  45.  
  46. See the end of the digest for information on subscribing to the fractint
  47. or fractint-digest mailing lists and on how to retrieve back issues.
  48.  
  49. ----------------------------------------------------------------------
  50.  
  51. Date: Fri, 19 Sep 1997 13:43:10 -0700
  52. From: "Jay Hill"<jrhill@NOTESGW.NOSC.MIL>
  53. Subject: Re: (fractint) Controlling Fractals...
  54.  
  55. Sky wrote:
  56.  
  57. >Does anybody know how to take a simple algorthym, like a
  58. >mandelbrot, and via initial conditions control what part you
  59. >look at? I tried adding constants here and there, but it warped
  60. >the pattern,,,, I just want to translate it around the screen,
  61. >depending on initial parameters...
  62. The Mandelbrot set use this iteration formula:
  63.  
  64. z := z^2 + c;
  65.  
  66. where z is initally zero.
  67.  
  68. We color pixels corresponding to the value of c according to the
  69. number of iterations, n, it takes to have |z|>2.  If n gets beyond
  70. itermax we set the color to black, usually.
  71.  
  72. You control what part of the Mandelbrot set you see by how
  73. you map c to the screen.  You use some interpolation formula
  74. like
  75.  
  76. c(real) = c(left side) + column*deltac
  77. c(imag)=c(top)-row*deltac
  78.  
  79.  
  80. So your initial parameters are c(left side), c(top), deltac or an
  81. equivalent set like the center c and magnification.
  82.  
  83. Hope this helps.
  84.  
  85.  
  86. Jay
  87.  
  88.  
  89.  
  90. - ------------------------------------------------------------
  91. Thanks for using Fractint, The Fractals and Fractint Discussion List
  92. Post Message:   fractint@xmission.com
  93. Get Commands:   majordomo@xmission.com "help"
  94. Administrator:  twegner@phoenix.net
  95. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  96.  
  97. ------------------------------
  98.  
  99. Date: Fri, 19 Sep 1997 17:08:57 -0400
  100. From: nick.grasso@hrads.com (Grasso, Nick)
  101. Subject: Re: (fractint) video modes continued
  102.  
  103. At 04:30 PM 9/19/97 -0400, GEDEON PETERI <GEDEON@InfoAve.Net> wrote:
  104. >    Nick, Damien,
  105. >    Many thanks for the highly informative letters.  Since the maximum
  106. >resolution my monitor will support is 1280x1024, it appears that I am
  107. >already set for this with my 2MB of video RAM.  Simply adding the update
  108. >kit to 4MB would enable me to use 1600x1200 with present Fractint - 256
  109. >colors.
  110.  
  111. According to Damien, you only need 2Mb for 1600x1200x256 (thanks for
  112. posting that formula Damien; I had forgotten it). Too bad your monitor
  113. doesn't support it. This is my favorite mode for fractint.
  114.  
  115. > Only if Fractint went to true color (16 million) would I need
  116. >8MB to support the 1600x1200 resolution.  Am I correct to draw these
  117. >conclusions?
  118.  
  119. Yes, that is correct. Unless, of course, you want to run other programs at
  120. that resolution.
  121.  
  122. > If so, though going for 8MB does not make any sense at
  123. >this time for me, I am nonetheless curious whether an 8MB video card
  124. >could be installed in my computer?  In other words, does the fact that
  125. >the manual only mentions upgrading to 4MB mean that there are other
  126. >system components (excluding the monitor) which could not support more
  127. >than that, or does it not?
  128.  
  129. It only means that the video board that came with your system only supports
  130. 4MB. But you could replace that video board with another one (or if it is
  131. built into the motherboard, you can disable it). I was just on Matrox's web
  132. site and their new Millenium II comes with either 4Mb, 8Mb, or 16Mb! They
  133. just lowered the price too. It is about $200 (US) for the 4Mb version. This
  134. is a very good price!
  135.  
  136. Nick
  137. nick.grasso@hrads.com
  138.  
  139.  
  140.  
  141. - ------------------------------------------------------------
  142. Thanks for using Fractint, The Fractals and Fractint Discussion List
  143. Post Message:   fractint@xmission.com
  144. Get Commands:   majordomo@xmission.com "help"
  145. Administrator:  twegner@phoenix.net
  146. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  147.  
  148. ------------------------------
  149.  
  150. Date: Fri, 19 Sep 1997 17:48:24 -0500
  151. From: Tim <stimothy@interaccess.com>
  152. Subject: (fractint) Video Cards
  153.  
  154. Hey gang,
  155.  
  156. Well I have let my post go for a few days concerning the Imagine 128 and
  157. I guess nobody uses one.  So lets try another question:
  158.  
  159. If you had the oppertunity to get a new video card for drawing fractals,
  160. what would it be?
  161.  
  162. I am also wondering if 3D accelerators can help in drawing any types of
  163. fractals.
  164.  
  165. Any input would be appreciated as I've decided to upgrade my system
  166. now.  The Imagine128 doesn't work with the new DirectX drivers for
  167. windows games anyway...
  168.  
  169. Sincerely
  170.  
  171. Tim Maxwell
  172.  
  173.  
  174. - ------------------------------------------------------------
  175. Thanks for using Fractint, The Fractals and Fractint Discussion List
  176. Post Message:   fractint@xmission.com
  177. Get Commands:   majordomo@xmission.com "help"
  178. Administrator:  twegner@phoenix.net
  179. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  180.  
  181. ------------------------------
  182.  
  183. Date: Fri, 19 Sep 1997 20:16:53 -0700
  184. From: Peter Jakubowicz <pfj@brigadoon.com>
  185. Subject: [none]
  186.  
  187. Hi.
  188. Could someone please tell me what anti-aliasing means? I am under the
  189. impression it has something to do with creating high-rez images and then
  190. bringing them back down to a smaller size. I do this because they look
  191. better than when I just create them at the smaller size, unless my eyes
  192. deceive  me. Anyway, I am curious what people mean when they say they are
  193. doing such and such a thing to their images for anti-aliasing.
  194.  
  195.                     Thanks,
  196.                     Peter
  197.  
  198.                   
  199.  
  200.  
  201. - ------------------------------------------------------------
  202. Thanks for using Fractint, The Fractals and Fractint Discussion List
  203. Post Message:   fractint@xmission.com
  204. Get Commands:   majordomo@xmission.com "help"
  205. Administrator:  twegner@phoenix.net
  206. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  207.  
  208. ------------------------------
  209.  
  210. Date: Fri, 19 Sep 1997 23:57:11 -0400
  211. From: "Damien M. Jones" <dmj@emi.net>
  212. Subject: Re: (fractint) video modes continued
  213.  
  214. Gedeon,
  215.  
  216. Your card should be able to do 1600x1200x256 with the 2M you currently
  217. have.  You should also be aware that quite a few graphics cards will do a
  218. 1600x1200 VESA mode as interlaced, so your monitor only needs to be able to
  219. handle half the vertical resolution (600).  Your monitor easily does this.
  220. You'll just want to make sure you use the VESA modes in FractInt (which
  221. work best under Win95 anyway).
  222.  
  223. Your *computer* will take an 8M graphics card fine.  Whether or not your
  224. graphics card will take an 8M *upgrade* is another issue--one that only
  225. your graphics card manufacturer can answer.  And it's solely dependent on
  226. the graphics card; nothing in the computer or monitor affects this.
  227.  
  228. Damien M. Jones  /  temporary sanity designs  /  http://www.emi.net/~dmj/
  229.    dmj@emi.net  /  my gallery: http://www.geocities.com/SoHo/Lofts/2605/
  230.  
  231.  
  232. - ------------------------------------------------------------
  233. Thanks for using Fractint, The Fractals and Fractint Discussion List
  234. Post Message:   fractint@xmission.com
  235. Get Commands:   majordomo@xmission.com "help"
  236. Administrator:  twegner@phoenix.net
  237. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  238.  
  239. ------------------------------
  240.  
  241. Date: Fri, 19 Sep 1997 23:53:37 -0400
  242. From: "Damien M. Jones" <dmj@emi.net>
  243. Subject: (fractint) Re: anti-aliasing
  244.  
  245. Peter,
  246.  
  247. Assuming you don't want a technical answer (which would only barely not be
  248. over my head :) you can think of anti-aliasing as a way to smooth out rapid
  249. transitions in an image.  Think of the highly detailed "mush" areas of a
  250. fractal image--those areas would show more detail zoomed in, possibly even
  251. resolving into structures you could see, but in your image they're just
  252. "mush".  Well, anti-aliasing typically involves generating the image at a
  253. higher resolution, to go ahead and resolve those areas... and then the
  254. image is reduced in a graphics package, which averages several pixels down
  255. into each pixel in the smaller image, giving the "overall" color.
  256.  
  257. This is a pretty bad explanation, but no doubt someone else will step in
  258. and take the time to do it right. :)
  259.  
  260. Damien M. Jones  /  temporary sanity designs  /  http://www.emi.net/~dmj/
  261.    dmj@emi.net  /  my gallery: http://www.geocities.com/SoHo/Lofts/2605/
  262.  
  263.  
  264. - ------------------------------------------------------------
  265. Thanks for using Fractint, The Fractals and Fractint Discussion List
  266. Post Message:   fractint@xmission.com
  267. Get Commands:   majordomo@xmission.com "help"
  268. Administrator:  twegner@phoenix.net
  269. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  270.  
  271. ------------------------------
  272.  
  273. Date: Fri, 19 Sep 1997 23:57:15 -0400
  274. From: "Damien M. Jones" <dmj@emi.net>
  275. Subject: Re: (fractint) Video Cards
  276.  
  277. Tim,
  278.  
  279.  - Well I have let my post go for a few days concerning the Imagine 128 and
  280.  - I guess nobody uses one.
  281.  
  282. Well, I don't have one, didn't get one because some 64-bit cards were still
  283. faster than the Imagine 128.  Seemed at the time that Number Nine was just
  284. going for the "bigger is better" approach. :(
  285.  
  286.  - If you had the oppertunity to get a new video card for drawing fractals,
  287.  - what would it be?
  288.  
  289. Well, that depends on whether you've got a system that can take PCI cards
  290. or not.  I hope you do, because that makes it easy: any modern card will
  291. do.  You'll be hard-pressed to find a new card with less than 2M, which as
  292. I've described is more than adequate for all but the most die-hard FractInt
  293. fanatics with 21" monitors.  (And oh, would I love to join the ranks of
  294. those fanatics! :)  So buy your next graphics card, not for what it can do
  295. for FractInt, but for what *else* it can do.  Personally, I'd lean towards
  296. something with decent 3D acceleration, preferably with a Voodoo chipset
  297. from 3Dfx, for awesome Quake/Hexen performance, but that's just me. :)
  298.  
  299.  - I am also wondering if 3D accelerators can help in drawing any types of
  300.  - fractals.
  301.  
  302. Not in FractInt.  The only thing a 3D accelerator might help would be 3D
  303. rendering of fractals, but keep in mind that 3D cards are typically
  304. designed with real-time (read: low-quality) performance in mind.  If you're
  305. generating images thirty times a second, you don't typically care that it's
  306. not doing filtered interpolation with Phong-rendered highlights and proper
  307. shadows... but if you're rendering a still image that people are going to
  308. be gazing at for a long time to come, you want to make sure that it's done
  309. right, because you may not get the chance to do it over.  3D cards don't
  310. always accelerate final renders (depends on the renderer) but they can
  311. certainly help out interactive editing of 3D objects.  But again, not in
  312. FractInt as it currently stands.
  313.  
  314.  - Any input would be appreciated as I've decided to upgrade my system
  315.  - now.  The Imagine128 doesn't work with the new DirectX drivers for
  316.  - windows games anyway...
  317.  
  318. *Lots* of stuff doesn't work with DirectX yet.  My sound card, a Gravis
  319. Ultrasound, has such lousy driver support that DirectX crashes most things
  320. that try to use it.  That's why when I re-installed everything a couple of
  321. months ago, I didn't install DirectX.  'Course, none of this is
  322. FractInt-related... :)
  323.  
  324. Damien M. Jones  /  temporary sanity designs  /  http://www.emi.net/~dmj/
  325.    dmj@emi.net  /  my gallery: http://www.geocities.com/SoHo/Lofts/2605/
  326.  
  327.  
  328. - ------------------------------------------------------------
  329. Thanks for using Fractint, The Fractals and Fractint Discussion List
  330. Post Message:   fractint@xmission.com
  331. Get Commands:   majordomo@xmission.com "help"
  332. Administrator:  twegner@phoenix.net
  333. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  334.  
  335. ------------------------------
  336.  
  337. Date: Sat, 20 Sep 1997 00:38:10 -0400
  338. From: GEDEON PETERI <GEDEON@InfoAve.Net>
  339. Subject: (fractint) Thanks
  340.  
  341. Nick, Damien,
  342. Many thanks for the extremely enlightening discussion.  Gedeon.
  343.  
  344.  
  345. - ------------------------------------------------------------
  346. Thanks for using Fractint, The Fractals and Fractint Discussion List
  347. Post Message:   fractint@xmission.com
  348. Get Commands:   majordomo@xmission.com "help"
  349. Administrator:  twegner@phoenix.net
  350. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  351.  
  352. ------------------------------
  353.  
  354. Date: Sat, 20 Sep 1997 13:08:40 -0500
  355. From: ezarak@sinfo.net
  356. Subject: (fractint) Re: aliasing
  357.  
  358. > From:          Peter Jakubowicz <pfj@brigadoon.com>
  359.  
  360. > Hi.
  361. > Could someone please tell me what anti-aliasing means?
  362.  
  363.  
  364. anti-aliasing
  365.  
  366. <graphics> A technique used on a grey-scale or colour bitmap display
  367. to make diagonal edges appear smoother by setting pixels near the edge
  368. to intermediate colours according to where the edge crosses them. 
  369.  
  370. The most common example is black characters on a white background.
  371. Without anti-aliasing, diagonal edges appear jagged, like staircases,
  372. which may be noticeable on a low resolution display. If the display
  373. can show intermediate greys then anti-aliasing can be applied. A pixel
  374. will be black if it is completely within the black area, or white if it
  375. is completely outside the black area, or an intermediate shade of grey
  376. according to the proportions of it which overlap the black and white
  377. areas. The technique works similarly with other foreground and
  378. background colours. 
  379.  
  380. [Why (anti-) "aliasing"?] 
  381.  
  382. Copyright Denis Howe 1993, 1997. 
  383. http://wombat.doc.ic.ac.uk/?Free+On-line+Dictionary
  384.  
  385. Saludos
  386. Ernesto Zarak
  387. ezarak@sinfo.net
  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: Sat, 20 Sep 1997 12:15:25 -0600 
  399. From: owner-fractint@xmission.com
  400. Subject: (fractint) Re: 
  401.  
  402. Peter Jakubowicz wrote:
  403. >
  404. > Could someone please tell me what anti-aliasing means?
  405. >
  406.  
  407. In a lot of graphic applications (like Adobe Photoshop), anti-aliasing
  408. produces a smooth-edged selection by partially filling edge pixels so
  409. that they are semitransparent.  Because anti-aliasing removes jagged
  410. edges, it is especially useful when you=92re creating composite images by=
  411.  
  412. cutting and pasting.  No detail is lost, since only the edge pixels
  413. change.
  414.  
  415. Anti-aliasing is a method of smoothing the edges of shapes, objects, and
  416. mask selections.  Anti-aliasing creates intermediate pixels that smooth
  417. the transition between colors and sharp edges.  To produce a curved or
  418. diagonal edge on a selection, pixels in the image that are diagonal to
  419. each other are part of the selection=92s edge.  This diagonal pixel
  420. selection can produce a jagged edge.  Anti-aliasing makes some of the
  421. pixels located along the inside edge of the selection semi-transparent
  422. which smoothes out the edges of the selection.
  423.  
  424.  
  425. - ------------------------------------------------------------
  426. Thanks for using Fractint, The Fractals and Fractint Discussion List
  427. Post Message:   fractint@xmission.com
  428. Get Commands:   majordomo@xmission.com "help"
  429. Administrator:  twegner@phoenix.net
  430. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  431.  
  432. ------------------------------
  433.  
  434. Date: Sat, 20 Sep 1997 13:18:04 -0500
  435. From: ezarak@sinfo.net
  436. Subject: (fractint) Re: anti-aliasinng
  437.  
  438. > Date:          Fri, 19 Sep 1997 20:16:53 -0700
  439. > From:          Peter Jakubowicz <pfj@brigadoon.com>
  440.  
  441. > Hi.
  442. > Could someone please tell me what anti-aliasing 
  443.  
  444.  
  445. Smoothing the jaggies in a bitmapped image. When diagonal or curved
  446. lines are put in bitmapped form, these shapes must be made with square
  447. pixels; any lines that are not vertical or horizontal have a
  448. stair-stepped appearance. Anti-aliasing changes the pixels along the
  449. edges of the line into varying shades of gray or in-between color, in
  450. order to make the edge appear smoother. In a black-on-white image, for
  451. example, the shade of gray used is determined by how much of the
  452. in-between pixel overlaps the black area and how much overlaps the
  453. white area. 
  454.  
  455. Saludos
  456. Ernesto Zarak
  457. ezarak@sinfo.net
  458.  
  459. - ------------------------------------------------------------
  460. Thanks for using Fractint, The Fractals and Fractint Discussion List
  461. Post Message:   fractint@xmission.com
  462. Get Commands:   majordomo@xmission.com "help"
  463. Administrator:  twegner@phoenix.net
  464. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  465.  
  466. ------------------------------
  467.  
  468. Date: Sat, 20 Sep 1997 15:30:30 -0700 (MST)
  469. From: Kerry Mitchell <lkmitch@primenet.com>
  470. Subject: Re: (fractint) Re: aliasing
  471.  
  472. On Sat, 20 Sep 1997 ezarak@sinfo.net wrote:
  473. > anti-aliasing
  474.  
  475. [good explanation snipped]
  476. > [Why (anti-) "aliasing"?] 
  477.  
  478. [engage "bad explanation" mode :-) ]
  479.  
  480. The term "anti-aliasing" is most probably a throw-back to signal analysis,
  481. and what happens when you take discrete samples of a continuous signal.
  482. Essentially, if you think of a signal as a series of sine waves with
  483. different frequencies superimposed, then you can only resolve certain
  484. frequencies, dependent on your sampling frequency.  Frequencies higher
  485. than the cutoff ("Nyquist frequency") get folded over and are seen as
  486. lower frequencies.  Thus, the higer modes are "aliased" as lower modes.
  487. So, anti-aliasing is a way to prevent this from happening--you filter your
  488. incoming signal to remove the frequencies higher than the cutoff, then
  489. sample it.
  490.  
  491. There are parallels to fractalizing.  The pixels of a fractal image
  492. represent discrete samples of a continuous signal (mathematically pure
  493. fractal).  The "jaggies" and "mush" that we commonly see are high
  494. frequency (high spatial frequency = small, pixelwise) structures that are
  495. sampled too poorly to be resolved.  In other words, the swirls and
  496. midgets are too small to be captured by a "reasonable" number of pixels,
  497. so they look like "mush" or visual noise.  Instead of pre-filtering the
  498. fractal, we compute it at a higher resolution and average it down to a
  499. lower resolution.  This has the effect of smoothing over the higher
  500. frequencies, while leaving the lower ones (big structures) basically
  501. untouched.
  502.  
  503. How's that?
  504.  
  505. - -------------------------------------------------------------------------------
  506. Kerry Mitchell
  507. lkmitch@primenet.com
  508. - -------------------------------------------------------------------------------
  509.  
  510.  
  511.  
  512. - ------------------------------------------------------------
  513. Thanks for using Fractint, The Fractals and Fractint Discussion List
  514. Post Message:   fractint@xmission.com
  515. Get Commands:   majordomo@xmission.com "help"
  516. Administrator:  twegner@phoenix.net
  517. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  518.  
  519. ------------------------------
  520.  
  521. Date: Sat, 20 Sep 1997 15:35:10 -1000
  522. From: "Shauna Jones" <shauna@aloha.net>
  523. Subject: Re: (fractint) Re: 
  524.  
  525. And here I always thought that anti-aliasing was something that did 
  526. away with the apparent "line" you see any time you have two colors 
  527. touching each other ... 
  528.  
  529. Another blast of bits from David
  530. Visit our boring web page: http://www.aloha.net/~shauna
  531. Visit the Hawaii Astronomical Society: http://www.hawastsoc.org
  532. For the best Hawaii & Pacific Basin surf forecast: mailto:hisurf@aloha.net
  533.  
  534. Random Thought for this Nanosecond
  535. For best results, use SET BUGS=OFF.
  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: Sat, 20 Sep 1997 21:49:21 -0400
  549. From: "Damien M. Jones" <dmj@emi.net>
  550. Subject: Re: (fractint) Re: aliasing
  551.  
  552. Kerry,
  553.  
  554.  - [good explanation snipped]
  555.  - [engage "bad explanation" mode :-) ]
  556.  
  557. I dunno, seemed like a pretty good explanation to me. :)
  558.  
  559. Damien M. Jones  /  temporary sanity designs  /  http://www.emi.net/~dmj/
  560.    dmj@emi.net  /  my gallery: http://www.geocities.com/SoHo/Lofts/2605/
  561.  
  562.  
  563. - ------------------------------------------------------------
  564. Thanks for using Fractint, The Fractals and Fractint Discussion List
  565. Post Message:   fractint@xmission.com
  566. Get Commands:   majordomo@xmission.com "help"
  567. Administrator:  twegner@phoenix.net
  568. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  569.  
  570. ------------------------------
  571.  
  572. Date: Sat, 20 Sep 1997 21:42:35 -0400
  573. From: "Damien M. Jones" <dmj@emi.net>
  574. Subject: (fractint) Gallery update
  575.  
  576. Hello,
  577.  
  578. Just wanted to let you know that my fractal gallery at GeoCities has been
  579. updated, with *lots* of new stuff.  If you're interested, please stop by,
  580. take a look, and let me know what you think:
  581.  
  582.     http://www.geocities.com/~fractalus
  583.  
  584. For the FractInt user, the FRM file I wrote is now available for download.
  585. Perhaps if I have time (yeah right :) I'll do some web pages explaining
  586. more of how to use them.  In any case, the FRM file can be had directly
  587. from this URL:
  588.  
  589.     http://www.geocities.com/~fractalus/misc/dmj-pub.frm
  590.  
  591. (If you saw this message on another list, please forgive the redundancy.)
  592.  
  593. Damien M. Jones  /  temporary sanity designs  /  http://www.emi.net/~dmj/
  594.    dmj@emi.net  /  my gallery: http://www.geocities.com/SoHo/Lofts/2605/
  595.  
  596.  
  597. - ------------------------------------------------------------
  598. Thanks for using Fractint, The Fractals and Fractint Discussion List
  599. Post Message:   fractint@xmission.com
  600. Get Commands:   majordomo@xmission.com "help"
  601. Administrator:  twegner@phoenix.net
  602. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  603.  
  604. ------------------------------
  605.  
  606. Date: Sat, 20 Sep 1997 22:25:40
  607. From: "James P. Carr" <jpcarr@alpha3.csd.uwm.edu>
  608. Subject: (fractint) Please help me print
  609.  
  610. I am a novice working with Fractint.  What little expertise I have is in
  611. the mathematics. I have been able to use Fractint to good effect displayed
  612. on my screen.  But I have an HP DeskJet 500C color printer and I have also
  613. got access to an HP 694C.  With either I can print in black and white if I
  614. start Fractint with printer=hp. How can I use the color capabilities of
  615. these printers? If I can't, then what printers can I use? If I should be
  616. looking somewhere else for this info, where would that be?
  617. Thank you anyone who can direct me.
  618.  
  619. Jim Carr
  620.  
  621. James P. Carr            1812 E. Elmdale Ct.
  622. jpcarr@alphaj.csd.uwm.edu    Shorewood, Wi  55321
  623. Home: 414-332-2919        Work: 229-4469
  624.  
  625. - ------------------------------------------------------------
  626. Thanks for using Fractint, The Fractals and Fractint Discussion List
  627. Post Message:   fractint@xmission.com
  628. Get Commands:   majordomo@xmission.com "help"
  629. Administrator:  twegner@phoenix.net
  630. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  631.  
  632. ------------------------------
  633.  
  634. Date: Sat, 20 Sep 1997 23:59:43 -0400 (EDT)
  635. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  636. Subject: (fractint) Serious Fractint 19.6 bug!
  637.  
  638. I have discovered 2 bugs in Fractint 19.6!
  639. The more serious is as follows: if a 16-color video mode is selected (don't
  640. ask) and passes=b is selected, it draws a few pixels and hangs, forcing a
  641. reboot or a Vulcan Nerve Pinch.
  642. The less serious is that the collection of 2 and 16-color modes at the
  643. start of the video mode-picker in this version all say "256" colors at the
  644. right.                                         |
  645.                                                |
  646. - ----8<-----Screen Capture-----8<---            V
  647.  
  648.                           FRACTINT Version 19.6
  649.  
  650.  
  651.                             Select Video Mode
  652.     key...name......................xdot.ydot.colr.comment..................
  653.     F2    IBM 16-Color EGA           640  350 256  Standard EGA hi-res mode
  654.     F3    IBM 256-Color VGA/MCGA     320  200 256  Quick and LOTS of colors
  655.     F4    IBM 16-Color VGA           640  480 256  Nice high resolution
  656.     F5    IBM 4-Color CGA            320  200 256  (Ugh - Yuck - Bleah)
  657.     F6    IBM Hi-Rez B&W CGA         640  200 256  ('Hi-Rez' Ugh - Yuck)
  658.     F7    IBM B&W EGA                640  350 256  (Monochrome EGA)
  659.     F8    IBM B&W VGA                640  480 256  (Monochrome VGA)
  660.     F9    IBM Low-Rez EGA            320  200 256  Quick but chunky
  661.     F10   IBM VGA (non-std)          320  400 256  Register Compatibles ONLY
  662.     SF1   IBM VGA (non-std)          360  480 256  Register Compatibles ONLY
  663.     SF2   SuperVGA/VESA Autodetect   800  600 256  Works with most SuperVGA
  664.     SF3   SuperVGA/VESA Autodetect  1024  768 256  Works with most SuperVGA
  665.     SF4   SuperVGA/VESA Autodetect   640  400 256  Works with most SuperVGA
  666.     SF5   SuperVGA/VESA Autodetect   640  480 256  Works with most SuperVGA
  667.     SF6   SuperVGA/VESA Autodetect   800  600 256  Works with most SuperVGA
  668.     SF7   Millennium VESA mode      1600 1200 256  OK: Sylvie Gallet
  669.     (more)
  670.               Use the cursor keys to highlight your selection
  671.     Press ENTER for highlighted choice, ESCAPE to back out, or F1 for help
  672.  
  673.  
  674.  
  675. - --
  676.     .*.  Where feelings are concerned, answers are rarely simple [GeneDeWeese]
  677.  -()  <  When I go to the theater, I always go straight to the "bag and mix"
  678.     `*'  bulk candy section...because variety is the spice of life... [me]
  679. Paul Derbyshire ao950@freenet.carleton.ca, http://chat.carleton.ca/~pderbysh
  680.  
  681. - ------------------------------------------------------------
  682. Thanks for using Fractint, The Fractals and Fractint Discussion List
  683. Post Message:   fractint@xmission.com
  684. Get Commands:   majordomo@xmission.com "help"
  685. Administrator:  twegner@phoenix.net
  686. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  687.  
  688. ------------------------------
  689.  
  690. Date: Sun, 21 Sep 1997 00:04:25 -0400 (EDT)
  691. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  692. Subject: Re: (fractint) Re: anti-aliasinng
  693.  
  694. Anti-aliasing is also used to get rid of Moire patterns, such as you see
  695. if you raytrace a black green-gridded floor or one with green parallel
  696. lines converging in the distance. Similarly for averaging out "busy" areas
  697. of pictures. :)
  698.  
  699.  
  700. - --
  701.     .*.  Where feelings are concerned, answers are rarely simple [GeneDeWeese]
  702.  -()  <  When I go to the theater, I always go straight to the "bag and mix"
  703.     `*'  bulk candy section...because variety is the spice of life... [me]
  704. Paul Derbyshire ao950@freenet.carleton.ca, http://chat.carleton.ca/~pderbysh
  705.  
  706. - ------------------------------------------------------------
  707. Thanks for using Fractint, The Fractals and Fractint Discussion List
  708. Post Message:   fractint@xmission.com
  709. Get Commands:   majordomo@xmission.com "help"
  710. Administrator:  twegner@phoenix.net
  711. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  712.  
  713. ------------------------------
  714.  
  715. Date: Sun, 21 Sep 1997 00:06:32 -0400
  716. From: davides <davides@pipeline.com>
  717. Subject: Re: (fractint) Gallery update
  718.  
  719. At 09:42 PM 9/20/97 -0400, you wrote:
  720. (Just wanted to let you know that my fractal gallery at GeoCities has been
  721. updated, with *lots* of new stuff.  If you're interested, please stop by,
  722. take a look, and let me know what you think:)
  723.  
  724.  
  725. Good stuff. Enjoyed the images...
  726.  
  727.  
  728.  
  729.  
  730.  
  731.  
  732.  
  733. - ------------------------------------------------------------
  734. Thanks for using Fractint, The Fractals and Fractint Discussion List
  735. Post Message:   fractint@xmission.com
  736. Get Commands:   majordomo@xmission.com "help"
  737. Administrator:  twegner@phoenix.net
  738. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  739.  
  740. ------------------------------
  741.  
  742. Date: Sat, 20 Sep 1997 22:05:58 -0700
  743. From: cindy mitchell <cindym@vegasnet.net>
  744. Subject: Re: (fractint) Gallery update
  745.  
  746. At 12:06 AM 9/21/97 -0400, you wrote:
  747. >At 09:42 PM 9/20/97 -0400, you wrote:
  748. >(Just wanted to let you know that my fractal gallery at GeoCities has been
  749. >updated, with *lots* of new stuff.  If you're interested, please stop by,
  750. >take a look, and let me know what you think:)
  751. >
  752. >
  753. >Good stuff. Enjoyed the images...
  754. >
  755. >
  756. >I would like to stop by, but what is your address?
  757. >
  758. >
  759. >
  760. >
  761. >------------------------------------------------------------
  762. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  763. >Post Message:   fractint@xmission.com
  764. >Get Commands:   majordomo@xmission.com "help"
  765. >Administrator:  twegner@phoenix.net
  766. >Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  767. >
  768. >
  769.  
  770.  
  771. - ------------------------------------------------------------
  772. Thanks for using Fractint, The Fractals and Fractint Discussion List
  773. Post Message:   fractint@xmission.com
  774. Get Commands:   majordomo@xmission.com "help"
  775. Administrator:  twegner@phoenix.net
  776. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  777.  
  778. ------------------------------
  779.  
  780. Date: Sat, 20 Sep 1997 22:08:08 -0700
  781. From: cindy mitchell <cindym@vegasnet.net>
  782. Subject: Re: (fractint) Gallery update
  783.  
  784. At 12:06 AM 9/21/97 -0400, you wrote:
  785. >At 09:42 PM 9/20/97 -0400, you wrote:
  786. >(Just wanted to let you know that my fractal gallery at GeoCities has been
  787. >updated, with *lots* of new stuff.  If you're interested, please stop by,
  788. >take a look, and let me know what you think:)
  789. >
  790. >
  791. >Good stuff. Enjoyed the images...
  792. >
  793. >
  794. >
  795. >What id your address???
  796. >
  797. >
  798. >
  799. >------------------------------------------------------------
  800. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  801. >Post Message:   fractint@xmission.com
  802. >Get Commands:   majordomo@xmission.com "help"
  803. >Administrator:  twegner@phoenix.net
  804. >Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  805. >
  806. >
  807.  
  808.  
  809. - ------------------------------------------------------------
  810. Thanks for using Fractint, The Fractals and Fractint Discussion List
  811. Post Message:   fractint@xmission.com
  812. Get Commands:   majordomo@xmission.com "help"
  813. Administrator:  twegner@phoenix.net
  814. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  815.  
  816. ------------------------------
  817.  
  818. Date: Sun, 21 Sep 1997 01:28:48 -0400
  819. From: "Brock Kevin Nambo" <badger@innocent.com>
  820. Subject: Re: (fractint) Please help me print
  821.  
  822. > From: James P. Carr <jpcarr@alpha3.csd.uwm.edu>
  823. > To: Fractint@xmission.com
  824. > Subject: (fractint) Please help me print
  825. > Date: Saturday, September 20, 1997 6:25 PM
  826.  
  827. > I am a novice working with Fractint.  What little expertise I have is in
  828. > the mathematics. I have been able to use Fractint to good effect
  829. displayed
  830. > on my screen.  But I have an HP DeskJet 500C color printer and I have
  831. also
  832. > got access to an HP 694C.  With either I can print in black and white if
  833. I
  834. > start Fractint with printer=hp. How can I use the color capabilities of
  835. > these printers? If I can't, then what printers can I use? If I should be
  836. > looking somewhere else for this info, where would that be?
  837. > Thank you anyone who can direct me.
  838.  
  839. One way I could think of, off the top of my head, would be to <s>ave your
  840. fractal as a .gif file, and then printing it with your basic .gif viewer,
  841. say your favorite Web Browser.  Just a thought.
  842.  
  843. >>BKNambo
  844. - -- 
  845.  H     badger@innocent.com|newsmaster@earthling.net  ____    __
  846. =@==== http://members.aol.com/brockbadge/index.html /_   \  / /
  847.  H H H "World Domination Through Trivia" -S3Kitties  / /\ \/ /
  848.  H H H Marcher -- Just my imagination -- Nightwatch /_/  \__/
  849.  
  850. - ------------------------------------------------------------
  851. Thanks for using Fractint, The Fractals and Fractint Discussion List
  852. Post Message:   fractint@xmission.com
  853. Get Commands:   majordomo@xmission.com "help"
  854. Administrator:  twegner@phoenix.net
  855. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  856.  
  857. ------------------------------
  858.  
  859. Date: Sun, 21 Sep 1997 11:40:07 -0400
  860. From: Les St Clair <Les_StClair@compuserve.com>
  861. Subject: (fractint) Please help me print
  862.  
  863. Hi Jim,
  864.  
  865. >I have been able to use Fractint to good effect displayed
  866. on my screen.  But I have an HP DeskJet 500C color printer and I have als=
  867. o
  868. got access to an HP 694C.  With either I can print in black and white if =
  869. I
  870. start Fractint with printer=3Dhp. How can I use the color capabilities of=
  871.  
  872. these printers? <
  873.  
  874. I would forget all about trying to print directly from fractint.
  875. Instead you should save you images in their native .gif format and then u=
  876. se
  877. a graphics package to print these. If you are running Windows, then I wou=
  878. ld
  879. suggest starting with the shareware program "Paint Shop Pro" - it won't
  880. cost you anything to try it!
  881.  
  882. For me, the most important key to getting a good looking print is to crea=
  883. te
  884. your images at very high resolutions. You could even use one of the
  885. "disk/ram" video modes and save those images directly to disk. For *reall=
  886. y*
  887. big fractals you could use the "divide and conquer" method for creating
  888. very large images in pieces (refer to fractint.doc).
  889.  
  890. As a rule of thumb, think of the dots from your printer as pixels in the
  891. image. So, if you print a 10"x8" image at 300dpi, you could start with a
  892. gif having dimensions of (10x300) x (8x300) or 3000x2400. If this seems a=
  893.  
  894. bit "over the top", then try printing from a 1600x1200 image for starters=
  895. =2E
  896.  
  897. - - Les St Clair
  898.  
  899. - ------------------------------------------------------------
  900. Thanks for using Fractint, The Fractals and Fractint Discussion List
  901. Post Message:   fractint@xmission.com
  902. Get Commands:   majordomo@xmission.com "help"
  903. Administrator:  twegner@phoenix.net
  904. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  905.  
  906. ------------------------------
  907.  
  908. Date: Sun, 21 Sep 1997 12:12:52 -0400
  909. From: "Damien M. Jones" <dmj@emi.net>
  910. Subject: Re: (fractint) Gallery update
  911.  
  912. Cindy,
  913.  
  914.  - What id your address???
  915.  
  916. As posted in my original message, you can find my new gallery at this URL:
  917.  
  918.     http://www.geocities.com/~fractalus
  919.  
  920. Damien M. Jones  /  temporary sanity designs  /  http://www.emi.net/~dmj/
  921.    dmj@emi.net  /  my gallery: http://www.geocities.com/SoHo/Lofts/2605/
  922.  
  923.  
  924. - ------------------------------------------------------------
  925. Thanks for using Fractint, The Fractals and Fractint Discussion List
  926. Post Message:   fractint@xmission.com
  927. Get Commands:   majordomo@xmission.com "help"
  928. Administrator:  twegner@phoenix.net
  929. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  930.  
  931. ------------------------------
  932.  
  933. Date: Sun, 21 Sep 1997 12:42:28 -0600
  934. From: "Tim Wegner" <twegner@phoenix.net>
  935. Subject: Re: (fractint) Serious Fractint 19.6 bug!
  936.  
  937. Paul wrote:
  938.  
  939. > I have discovered 2 bugs in Fractint 19.6!
  940. > The more serious is as follows: if a 16-color video mode is selected (don't
  941. > ask) and passes=b is selected, it draws a few pixels and hangs, forcing a
  942. > reboot or a Vulcan Nerve Pinch.
  943. > The less serious is that the collection of 2 and 16-color modes at the
  944. > start of the video mode-picker in this version all say "256" colors at the
  945. > right. 
  946.  
  947. I can't duplicate either problem.
  948.  
  949. Your fractint.cfg file is corrupt. Try replacing it with the one in 
  950. the 19.6 distribution.
  951.  
  952. Tim
  953.                |
  954.  
  955. - ------------------------------------------------------------
  956. Thanks for using Fractint, The Fractals and Fractint Discussion List
  957. Post Message:   fractint@xmission.com
  958. Get Commands:   majordomo@xmission.com "help"
  959. Administrator:  twegner@phoenix.net
  960. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  961.  
  962. ------------------------------
  963.  
  964. Date: Sun, 21 Sep 1997 12:42:28 -0600
  965. From: "Tim Wegner" <twegner@phoenix.net>
  966. Subject: Re: (fractint) Please help me print
  967.  
  968. Brock said:
  969.  
  970. > One way I could think of, off the top of my head, would be to <s>ave your
  971. > fractal as a .gif file, and then printing it with your basic .gif viewer,
  972. > say your favorite Web Browser.  Just a thought.
  973.  
  974. This is absolutely good advice. The fractint authors know very little 
  975. about printing, and have access to few printers. We can't even test 
  976. the printer drivers that are donated to our code. However, all is not 
  977. lost. There are many excellent programs that print GIFs, so the best 
  978. bet is simply to save the GIF and print it in other software.
  979.  
  980. When we have a windows port this problem will go away, but the DOS 
  981. version will always be print challenged. If Fractint were commercial, 
  982. we could simply my a library of printer drivers. But since Fractint 
  983. is free and we publish the source, we can't do that.
  984.  
  985. Tim
  986.  
  987.  
  988. - ------------------------------------------------------------
  989. Thanks for using Fractint, The Fractals and Fractint Discussion List
  990. Post Message:   fractint@xmission.com
  991. Get Commands:   majordomo@xmission.com "help"
  992. Administrator:  twegner@phoenix.net
  993. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  994.  
  995. ------------------------------
  996.  
  997. Date: Sun, 21 Sep 1997 14:38:40 -0400
  998. From: davides <davides@pipeline.com>
  999. Subject: Re: (fractint) Please help me print
  1000.  
  1001. At 12:42 PM 9/21/97 -0600, you wrote:
  1002. >Brock said:
  1003. >
  1004. ( One way I could think of, ...)
  1005.  
  1006. (This is absolutely good advice.) [Tim Wegner]
  1007.  
  1008. Mentioned this once: I have found it best to save the .gif to be printed.
  1009. It can then be imported into a word processing document such as
  1010. WordPerfect, Adobe Pagemaker, etc. by cut and paste or copy and paste.
  1011. After importing it the image may then be resized (if desired) for various
  1012. applications, such as a unique "logo" on stationery, for making a unique
  1013. greeting card, for address labels, envelopes, or even printing on transfer
  1014. paper to be transferred to "T" shirts, etc. 
  1015.  
  1016. Depending on the graphics program .gifs are associated with in whatever
  1017. specific computer such as PaintShopPro, LViewPro, etc., other images can be
  1018. inserted into the fractal .gif (resized if necessary). That can make for
  1019. some unusual effects also...   :) or special effects can be added. This
  1020. last just as an added after-thought.
  1021.  
  1022.  
  1023.  
  1024.  
  1025. davides@pipeline.com
  1026. davides1@juno.com
  1027. "Do Not Meddle In The Affairs Of Dragons For You Are Crunchy And Good With
  1028. Ketchup"
  1029.  
  1030. - ------------------------------------------------------------
  1031. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1032. Post Message:   fractint@xmission.com
  1033. Get Commands:   majordomo@xmission.com "help"
  1034. Administrator:  twegner@phoenix.net
  1035. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1036.  
  1037. ------------------------------
  1038.  
  1039. Date: Sun, 21 Sep 1997 20:15:29 -0400
  1040. From: franz@mediom.qc.ca (Franois Blais)
  1041. Subject: Re: (fractint) Gallery update
  1042.  
  1043. "Damien M. Jones" <dmj@emi.net> wrote:
  1044.  
  1045. >For the FractInt user, the FRM file I wrote is now available for download.
  1046. >Perhaps if I have time (yeah right :) I'll do some web pages explaining
  1047. >more of how to use them.  In any case, the FRM file can be had directly
  1048. >from this URL:
  1049.  
  1050.  I tried your formula with the PARs you posted about a week ago, this
  1051.  afternoon, and I must admit they're among the most beautiful fractals
  1052.  I ever seen!
  1053.  Thanks a lot!  :)
  1054.  
  1055. - --
  1056.            La voix de ma contrebasse     *    Quebec City - Canada
  1057.                             Thought for the day:
  1058.          "I had a monumental idea this morning, but I didn't like it."
  1059.  
  1060. - ------------------------------------------------------------
  1061. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1062. Post Message:   fractint@xmission.com
  1063. Get Commands:   majordomo@xmission.com "help"
  1064. Administrator:  twegner@phoenix.net
  1065. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1066.  
  1067. ------------------------------
  1068.  
  1069. Date: Sun, 21 Sep 1997 23:25:50 -0400 (EDT)
  1070. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  1071. Subject: Re: (fractint) Serious Fractint 19.6 bug!
  1072.  
  1073. >
  1074. >Paul wrote:
  1075. >> I have discovered 2 bugs in Fractint 19.6!
  1076. >> The more serious is as follows: if a 16-color video mode is selected (don't
  1077. >> ask) and passes=b is selected, it draws a few pixels and hangs, forcing a
  1078. >> reboot or a Vulcan Nerve Pinch.
  1079. >> The less serious is that the collection of 2 and 16-color modes at the
  1080. >> start of the video mode-picker in this version all say "256" colors at the
  1081. >> right. 
  1082. >
  1083. >I can't duplicate either problem.
  1084. >
  1085. >Your fractint.cfg file is corrupt. Try replacing it with the one in 
  1086. >the 19.6 distribution.
  1087.  
  1088. My fractint.cfg file is exactly the one that came with Fractint,
  1089. unmodified. To be exact it is the one from the .zip located at Spanky. Did
  1090. you try the Spanky .zip instead of your development version?
  1091.  
  1092. - --
  1093.     .*.  Where feelings are concerned, answers are rarely simple [GeneDeWeese]
  1094.  -()  <  When I go to the theater, I always go straight to the "bag and mix"
  1095.     `*'  bulk candy section...because variety is the spice of life... [me]
  1096. Paul Derbyshire ao950@freenet.carleton.ca, http://chat.carleton.ca/~pderbysh
  1097.  
  1098. - ------------------------------------------------------------
  1099. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1100. Post Message:   fractint@xmission.com
  1101. Get Commands:   majordomo@xmission.com "help"
  1102. Administrator:  twegner@phoenix.net
  1103. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1104.  
  1105. ------------------------------
  1106.  
  1107. End of fractint Digest V1 #18
  1108. *****************************
  1109.  
  1110. To subscribe to fractint Digest, send the command:
  1111.  
  1112.     subscribe fractint-digest
  1113.  
  1114. in the body of a message to "majordomo@xmission.com".  If you want to
  1115. subscribe something other than the account the mail is coming from, such
  1116. as a local redistribution list, then append that address to the
  1117. "subscribe" command; for example, to subscribe "local-fractint":
  1118.  
  1119.     subscribe fractint-digest local-fractint@your.domain.net
  1120.  
  1121. A non-digest (direct mail) version of this list is also available; to
  1122. subscribe to that instead, replace all instances of "fractint-digest"
  1123. in the commands above with "fractint".
  1124.  
  1125. Back issues are available for anonymous FTP from ftp.xmission.com, in
  1126. pub/lists/fractint/archive.  These are organized by date.
  1127.  
  1128.