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

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #233
  4. Reply-To: fractint-digest
  5. Sender: owner-fractint-digest@lists.xmission.com
  6. Errors-To: owner-fractint-digest@lists.xmission.com
  7. Precedence: bulk
  8.  
  9.  
  10. fractint-digest        Thursday, June 11 1998        Volume 01 : Number 233
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Mon, 8 Jun 1998 22:04:47 -0500 (CDT)
  18. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  19. Subject: (fractint) Repost of corrected Four_Mandels
  20.  
  21. Lee asked that I repost the corrected Four_Mandels formula.  Here it is:
  22.  
  23. Four_Mandels     {; Copyright (c) Paul W. Carlson, 1998
  24.                   ; Zooming added by Sylvie Gallet, 6/7/98
  25.     ; real(p1) = size factor, upper left  quadrant
  26.     ; imag(p1) = size factor, upper right quadrant
  27.     ; real(p2) = size factor, lower left  quadrant
  28.     ; imag(p2) = size factor, lower right quadrant
  29.     ;
  30.     prev_w = z = bailout = iter = range_num = 0
  31.     w1 = w2 = w3 = w4 = 0
  32.     px = real(scrnpix), py = imag(scrnpix)
  33.     hmx = 0.5 * real(scrnmax)
  34.     hmy = 0.5 * imag(scrnmax)
  35.     IF ((px < 2) || (px > (real(scrnmax) - 3)) || \
  36.     (py < 2) || (py > (imag(scrnmax) - 3))  || \
  37.        ((px > hmx - 2) && (px < hmx + 1))      || \
  38.        ((py > hmy - 2) && (py < hmy + 1)))
  39.     z = 252
  40.     bailout = 1
  41.     IF (px == 0 && py == 0)
  42.         z0 = pixel
  43.     ENDIF
  44.     IF (px == 1 && py == 0)
  45.         delta_x = real(scrnmax) * (pixel - z0)
  46.     ENDIF
  47.     IF (px == 0 && py == 1)
  48.         delta_y = imag(scrnmax) * (pixel - z0)
  49.     ENDIF
  50.     ENDIF
  51.     IF (bailout == 0)
  52.     IF (px < hmx)
  53.         IF (py > hmy)
  54.         c = z0 + 2 * (pixel - z0) - delta_y
  55.         size = real(p2)
  56.         a1 = 0.6, b1 = 0.3, a2 = 0.2, b2 = 0.4
  57.         quad = 3
  58.         ELSE
  59.         c = z0 + 2 * (pixel - z0)
  60.         size = real(p1)
  61.         rad = 0.5
  62.         quad = 1
  63.         ENDIF
  64.     ELSEIF (py > hmy)
  65.         c = z0 + 2 * (pixel - z0) - delta_x - delta_y
  66.         size = imag(p2)
  67.         k = 0.5 + size
  68.         j = 0.5 - size
  69.         quad = 4
  70.     ELSE
  71.         c = z0 + 2 * (pixel - z0) - delta_x
  72.         size = imag(p1)
  73.         quad = 2
  74.     ENDIF
  75.     index_factor = 29 / size
  76.     ENDIF
  77.     :
  78.     IF (bailout == 0)
  79.     IF (quad == 1)
  80.         w1 = w1 * w1 + c
  81.         w = w1
  82.         ang = atan(imag(w1) / real(w1))
  83.         astroid = rad * (cos(ang)^3 + (0,1) * sin(ang)^3)
  84.         dist = abs(|w1| - |astroid|)
  85.     ELSEIF (quad == 2)
  86.         w2 = w2 * w2 + c
  87.         w = w2
  88.         dist = abs(|w2| - .25)
  89.     ELSEIF (quad == 3)
  90.         w3 = w3 * w3 + c
  91.         w = w3
  92.         ang = atan(imag(w3) / real(w3))
  93.         ell1 = a1 * cos(ang) + (0,1) * b1 * sin(ang)
  94.         dist1 = abs(cabs(w3) - cabs(ell1))
  95.         ell2 = b2 * cos(ang) + (0,1) * a2 * sin(ang)
  96.         dist2 = abs(cabs(w3) - cabs(ell2))
  97.         IF (dist1 < dist2)
  98.         dist = dist1
  99.         ELSE
  100.         dist = dist2
  101.         ENDIF
  102.     ELSEIF (quad == 4)
  103.         w4 = w4 * w4 + c
  104.         w = w4
  105.         awr = abs(real(w4)), awi = abs(imag(w4))
  106.         IF ((awr < k) && (awr > j) && \
  107.         (awi < k) && (awi > j))
  108.         awr5 = abs(awr - 0.5), awi5 = abs(awi - 0.5)
  109.         IF (awr5 <= awi5)
  110.             dist = awr5
  111.         ELSE
  112.             dist = awi5
  113.         ENDIF
  114.         ELSE
  115.         dist = 1.0e30
  116.         ENDIF
  117.     ENDIF
  118.     ENDIF
  119.     IF (dist < size && iter > 0)
  120.     bailout = 1
  121.     z = index_factor * dist + range_num * 30 + 1
  122.     ENDIF
  123.     range_num = range_num + 1
  124.     IF (range_num == 8)
  125.     range_num = 0
  126.     ENDIF
  127.     iter = iter + 1
  128.     z = z - iter
  129.     bailout == 0 && |w| < 4
  130. }
  131.  
  132.  
  133. - --------------------------------------------------------------
  134. Thanks for using Fractint, The Fractals and Fractint Discussion List
  135. Post Message:   fractint@lists.xmission.com
  136. Get Commands:   majordomo@lists.xmission.com "help"
  137. Administrator:  twegner@phoenix.net
  138. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  139.  
  140. ------------------------------
  141.  
  142. Date: Mon, 8 Jun 1998 22:41:59 -0500 (CDT)
  143. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  144. Subject: Re: (fractint) PARS
  145.  
  146. Kathy wrote:
  147.  
  148. >I liked Gedeon's gp-dg25 and found this image-
  149. >was taken with how different types of color
  150. >maps bring out different aspects of the pattern.
  151.  
  152. Very nice, Kathy!  Here's yet another colormap to try:
  153.  
  154.  
  155. 5stainedglass      { ; Paul Carlson
  156.   colors=000VVV<8>zzz<9>zzzzzzyyyxxx<42>VVVGGy<58>00OaG0<14>xw0\
  157.   zz0zy0<44>aG0GGy<64>00O
  158.   }
  159.  
  160.  
  161. - --------------------------------------------------------------
  162. Thanks for using Fractint, The Fractals and Fractint Discussion List
  163. Post Message:   fractint@lists.xmission.com
  164. Get Commands:   majordomo@lists.xmission.com "help"
  165. Administrator:  twegner@phoenix.net
  166. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  167.  
  168. ------------------------------
  169.  
  170. Date: Tue, 9 Jun 1998 14:15:51 -0400 (EDT)
  171. From: kragen@pobox.com (Kragen)
  172. Subject: Re: (fractint) Fractint Deep-Zooming and Planck's Length
  173.  
  174. On Sat, 16 May 1998, Dave Irwin wrote:
  175. > Hi Fractint zealots
  176. >   I am developing some theories in the world of the very small and
  177. > have come across a definition called Planck's length which appears to
  178. > suggest that there is a limit to a measure of 10 to the minus 33. As
  179. > this measure is way bigger than that which can be developed in Deep
  180. > Zooming - 19.5 documentation, page 144 quotes 10 to the 1600 - can 
  181. > you tell me if there is any discussion or reference on the web that 
  182. > rationalises this discrepancy.
  183.  
  184. Simple.  Quantum physics only applies to things in the real world, not
  185. to mathematical constructs.
  186.  
  187. Planck's length is not 10^-33; that's a dimensionless number.  Planck's
  188. length is about 1.6 x 10^-33 centimeters.
  189.  
  190. > The essence of the theories I am developing are to suggest that time
  191. > is the THIRD dimension!!!
  192.  
  193. You'd do well to learn enough mathematics and physics to understand the
  194. meaninglessness of that assertion before you continue to develop your
  195. theories.  The Feynman Lectures on Physics are pretty good, and have
  196. the advantage of being available in most bookstores.
  197.  
  198. Briefly, dimensions don't exist independently of one another, and no
  199. dimension is first or last.  Particular dimensions are attributes of
  200. whatever coordinate system you impose upon space.
  201.  
  202. Kragen
  203.  
  204.  
  205. - --------------------------------------------------------------
  206. Thanks for using Fractint, The Fractals and Fractint Discussion List
  207. Post Message:   fractint@lists.xmission.com
  208. Get Commands:   majordomo@lists.xmission.com "help"
  209. Administrator:  twegner@phoenix.net
  210. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  211.  
  212. ------------------------------
  213.  
  214. Date: Tue, 9 Jun 1998 14:45:57 -0400 (EDT)
  215. From: kragen@pobox.com (Kragen)
  216. Subject: Re: (fractint) Fractals and Poetry
  217.  
  218. On Sat, 16 May 1998, Les St Clair wrote:
  219. > I suspect, as others have already said, you will probably achieve the best
  220. > results using a program like Paint Shop Pro. With this you can easily overlay
  221. > text, as a floating object, using any font, with the option of adding effects
  222. > such as drop shadow, cut-out etc.
  223.  
  224. The ideal program for ths sort of work would be something like the GIMP
  225. or Adobe PhotoShop.  With these programs, you can type your text, move
  226. it around, delete pieces of it, add shadows, move it around more, and
  227. then save it when you're done as a single image.  These programs have
  228. these nifty things called layers that make this much easier.
  229.  
  230. Kragen
  231.  
  232.  
  233. - --------------------------------------------------------------
  234. Thanks for using Fractint, The Fractals and Fractint Discussion List
  235. Post Message:   fractint@lists.xmission.com
  236. Get Commands:   majordomo@lists.xmission.com "help"
  237. Administrator:  twegner@phoenix.net
  238. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  239.  
  240. ------------------------------
  241.  
  242. Date: Tue, 09 Jun 1998 15:09:53 -0400
  243. From: "Damien M. Jones" <dmj@fractalus.com>
  244. Subject: Re: (fractint) Fractals and Poetry
  245.  
  246. Kragen,
  247.  
  248.  - The ideal program for ths sort of work would be something like the GIMP
  249.  - or Adobe PhotoShop.  With these programs, you can type your text, move
  250.  - it around, delete pieces of it, add shadows, move it around more, and
  251.  - then save it when you're done as a single image.  These programs have
  252.  - these nifty things called layers that make this much easier.
  253.  
  254. Paint Shop Pro 5 adds support for layers.  Other graphics programs that
  255. support layers, in addition to Photoshop and GIMP, are Micrografx Picture
  256. Publisher, Ulead PhotoImpact, and Corel Photo-Paint.
  257.  
  258. Damien M. Jones   \\
  259. dmj@fractalus.com  \\  http://www.icd.com/tsd/ (temporary sanity designs)
  260.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  261.  
  262. - --------------------------------------------------------------
  263. Thanks for using Fractint, The Fractals and Fractint Discussion List
  264. Post Message:   fractint@lists.xmission.com
  265. Get Commands:   majordomo@lists.xmission.com "help"
  266. Administrator:  twegner@phoenix.net
  267. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  268.  
  269. ------------------------------
  270.  
  271. Date: Tue, 9 Jun 1998 20:27:05 +0100
  272. From: "Les St Clair" <les_stclair@crosstrees.prestel.co.uk>
  273. Subject: Re: (fractint) Zoomable Four-in-one Julia Formula
  274.  
  275. Hi Paul,
  276.  
  277. First of all may I just say how much I really enjoy each and every one of your
  278. wonderful formulas.
  279. Your recent "four-in-one" series are both clever and visually compelling!
  280.  
  281. I have seen a problem, however, when rendering this one at 1600x1200:
  282.  
  283. 4juls_z4           { ; Copyright (c) Paul W. Carlson, 1998
  284.  
  285. The bottom portion of the image breaks into disjointed fragments. Strangely
  286. enough it draws OK at lower resolutions, e.g. 1024x768, or at 1600x1200 with a
  287. viewwindow reduction factor.
  288. Any thoughts?
  289.  
  290. Anyone else seeing this?
  291.  
  292. cheers, Les
  293.  
  294.  
  295.  
  296.  
  297. - --------------------------------------------------------------
  298. Thanks for using Fractint, The Fractals and Fractint Discussion List
  299. Post Message:   fractint@lists.xmission.com
  300. Get Commands:   majordomo@lists.xmission.com "help"
  301. Administrator:  twegner@phoenix.net
  302. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  303.  
  304. ------------------------------
  305.  
  306. Date: Tue, 9 Jun 1998 16:29:21 -0700 (PDT)
  307. From: jon camp <i_want_scully@yahoo.com>
  308. Subject: (fractint) two spiderm pars
  309.  
  310. Greetings!
  311. Here are some interesting pars using the spiderm formula. Enjoy...
  312.  
  313. | jon camp                                                   |
  314. | valparaiso univerisity <><                                 |
  315. | chaotic n-space network                                    |
  316. | http://www.valpo.edu/home/student/jcamp/fractals_gate.html |
  317.  
  318.  
  319.  
  320. jcamp12            { ; 1998, jon camp
  321.                      ; chaotic n-space network
  322.   reset=1960 type=formula formulafile=frac_ml.frm formulaname=spiderm1
  323.   function=sinh/sqr passes=b
  324.   center-mag=+0.07686053708256610/+0.07292652803696105/877.3814/1/-90
  325.   params=2.35/0.1/0.9/0 float=y maxiter=1024 outside=imag logmap=20
  326.  
  327. colors=000321642863<5>RI9UKAWMBZOC<5>lZIn`JobKqdL<3>wlPxnQxpRyrS<3>zzWzx\
  328.  
  329. XzvY<3>xnawlbujcthd<5>jXjhWkeUlcSm<4>RIrOGsLEtICuFAvC8w86x64y32z00000132\
  330.  
  331. 2643864<5>RIAUKBWMCZOD<5>lZJn`KobLqdM<3>wlQxnRxpSyrT<3>zzXzxYzvZ<3>xnbwl\
  332.  
  333. cujdthe<5>jXkhWleUmcSn<4>RIsOGtLEuICvFAwC8x86y64z320001002323644865<5>RI\
  334.  
  335. BUKCWMDZOE<5>lZKn`LobMqdN<3>wlRxnSxpTyrU<3>zzYzxZzv_<3>xncwldujethf<5>jX\
  336.  
  337. lhWmeUncSo<4>RItOGuLEvICwFAxC8y86z640321002003324645866<5>RICUKDWMEZOF<5\
  338.  
  339. >lZLn`MobNqdO<3>wlSxnTxpUyrV<3>zzZzx_zv`<3>xndwleujfthg<5>jXmhWneUocSp<4\
  340.   >RIuOGvLEwICxFAyC8z cyclerange=0/255
  341.   }
  342.  
  343. jcamp13            { ; 1998, jon camp
  344.                      ; chaotic n-space network
  345.   reset=1960 type=formula formulafile=frac_ml.frm formulaname=spiderm1
  346.   function=sinh/sqr center-mag=-0.0699929/6.97075e-005/4.171614/1/-90
  347.   params=2.35/0.1/0.9/0 float=y maxiter=1024 inside=0 outside=real
  348.  
  349. colors=000000000K55<10>dAA<8>ww0<8>dAA<13>K55000000000F73<11>zUF<6>zyn<7\
  350.  
  351. >wUF<9>K55000000BJG<9>7U7<7>tsb<6>DXB<9>131000000000UU0<10>oo0<6>`z`<7>0\
  352.  
  353. UF<6>07F000000K55<11>ww0<5>zUF<9>K55000000PQI<10>svc<7>7U7<6>AKFBJGALI<7\
  354.   >0``<6>`zh<13>00F000000 cyclerange=0/255
  355.   }
  356.  
  357. frm:spiderM1 {; by Jean-Pierre Louvet
  358. ; minor shortcut by Bud 4/30/98
  359. z=pixel,f=pixel, g = f + p2:
  360. f=f/p1+z,
  361. z=fn1(z^g)+fn2(f),
  362. |z| <= 4 }
  363. _________________________________________________________
  364. DO YOU YAHOO!?
  365. Get your free @yahoo.com address at http://mail.yahoo.com
  366.  
  367.  
  368. - --------------------------------------------------------------
  369. Thanks for using Fractint, The Fractals and Fractint Discussion List
  370. Post Message:   fractint@lists.xmission.com
  371. Get Commands:   majordomo@lists.xmission.com "help"
  372. Administrator:  twegner@phoenix.net
  373. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  374.  
  375. ------------------------------
  376.  
  377. Date: Tue, 9 Jun 1998 20:01:44 -0400
  378. From: "Jason Hine" <tumnus@together.net>
  379. Subject: Re: (fractint) Fractint Deep-Zooming and Planck's Length
  380.  
  381. >On Sat, 16 May 1998, Dave Irwin wrote:
  382. >> Hi Fractint zealots
  383. >>   I am developing some theories in the world of the very small and
  384. >> have come across a definition called Planck's length which appears to
  385. >> suggest that there is a limit to a measure of 10 to the minus 33. As
  386. >> this measure is way bigger than that which can be developed in Deep
  387. >> Zooming - 19.5 documentation, page 144 quotes 10 to the 1600 - can
  388. >> you tell me if there is any discussion or reference on the web that
  389. >> rationalises this discrepancy.
  390.  
  391.  
  392. [Kragen's reply snipped...]
  393.  
  394. I've been toying with the idea that perhaps the 'fractal formula' on which our
  395. universe is based might someday be discovered.  This universe would be
  396. represented, in it's entirety, by a single point in a fractal graph (i.e., 'a
  397. pixel in a pretty picture' ;-) of possible universes.  Knowing the formula, we
  398. could calculate the 'shape' of the graph in areas around our universe's point,
  399. and gain insight into why our universe is the way that it is, as well as a whole
  400. bunch of other stuff that physicists and clergypersons alike would give their
  401. left shoe to know.
  402.  
  403. One might wonder what sort of accuracy the point on the graph of possible
  404. universes would have to have, in order to result in our universe.  Roger Penrose
  405. (1) uses measures of entropy and the assumption that this universe is closed
  406. (i.e., there'll be a 'Big Crunch') to determine that the required accuracy would
  407. be 10^(10^123), or thereabouts...
  408.  
  409. Now, there's something for the Stone Soup group to shoot for!  ;-)  And somebody
  410. better talk to 'ol Bill and tell him we need a few 1000TeraHz chips when he's
  411. got a sec...
  412.  
  413. Jason (Up from the murky depths of the List... gurgle!) Hine
  414.  
  415.  
  416.  
  417.  
  418. - --------------------------------------------------------------
  419. Thanks for using Fractint, The Fractals and Fractint Discussion List
  420. Post Message:   fractint@lists.xmission.com
  421. Get Commands:   majordomo@lists.xmission.com "help"
  422. Administrator:  twegner@phoenix.net
  423. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  424.  
  425. ------------------------------
  426.  
  427. Date: Tue, 9 Jun 1998 20:01:39 -0400
  428. From: Lee Skinner <LeeHSkinner@compuserve.com>
  429. Subject: (fractint) Zoomable Four
  430.  
  431. Hi Les,
  432.  
  433. >>I have seen a problem, however, when rendering this one at 1600x1200:
  434.  
  435. >>4juls_z4           { ; Copyright (c) Paul W. Carlson, 1998
  436.  
  437. >>The bottom portion of the image breaks into disjointed fragments.
  438. Strangely enough it draws OK at lower resolutions, e.g. 1024x768, or at
  439. 1600x1200 with a viewwindow reduction factor. Any thoughts? Anyone else
  440. seeing this? <<
  441.  
  442. It worked fine for me!
  443.  
  444. Lee
  445.  
  446. - --------------------------------------------------------------
  447. Thanks for using Fractint, The Fractals and Fractint Discussion List
  448. Post Message:   fractint@lists.xmission.com
  449. Get Commands:   majordomo@lists.xmission.com "help"
  450. Administrator:  twegner@phoenix.net
  451. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  452.  
  453. ------------------------------
  454.  
  455. Date: Tue, 9 Jun 1998 21:12:17 -0500 (CDT)
  456. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  457. Subject: Re: (fractint) Zoomable Four-in-one Julia Formula
  458.  
  459. hi Les,
  460.  
  461. >First of all may I just say how much I really enjoy each and every one of your
  462. >wonderful formulas.
  463. >Your recent "four-in-one" series are both clever and visually compelling!
  464.  
  465. Thanks for the kind words - I'm very glad you enjoy them!
  466.  
  467. >I have seen a problem, however, when rendering this one at 1600x1200:
  468. >
  469. >4juls_z4           { ; Copyright (c) Paul W. Carlson, 1998
  470. >
  471. >The bottom portion of the image breaks into disjointed fragments. Strangely
  472. >enough it draws OK at lower resolutions, e.g. 1024x768, or at 1600x1200 with a
  473. >viewwindow reduction factor.
  474. >Any thoughts?
  475.  
  476. My video card/monitor can't do 1600X1200 so I have no way of trying to
  477. duplicate the problem.  I have tried it at 320x200, 640x480, 800x600
  478. and 1024x768 with no problem.
  479.  
  480. Paul Carlson
  481.  
  482.  
  483. - --------------------------------------------------------------
  484. Thanks for using Fractint, The Fractals and Fractint Discussion List
  485. Post Message:   fractint@lists.xmission.com
  486. Get Commands:   majordomo@lists.xmission.com "help"
  487. Administrator:  twegner@phoenix.net
  488. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  489.  
  490. ------------------------------
  491.  
  492. Date: Tue, 09 Jun 1998 21:27:54 -0500
  493. From: Bob Margolis <rttyman@wwa.com>
  494. Subject: (fractint) PAR: Embroidered Julia
  495.  
  496. Embroidered_Julia  { ; (c) by Bob Margolis, 1998
  497.   reset=1960 type=julia passes=1
  498.   center-mag=-4.44089e-016/3.33067e-016/0.8503401
  499.   params=-0.7693898904558699/-0.116134694440232 float=y maxiter=2000
  500.   bailout=10000 inside=maxiter logmap=2 distest=71/71/1024/768
  501.   periodicity=0 viewwindows=1/0.75/yes/0/0
  502.   colors=bWi<252>bWi000bWi cyclerange=1/1
  503.   }
  504.  
  505. - --------------------------------------------------------------
  506. Thanks for using Fractint, The Fractals and Fractint Discussion List
  507. Post Message:   fractint@lists.xmission.com
  508. Get Commands:   majordomo@lists.xmission.com "help"
  509. Administrator:  twegner@phoenix.net
  510. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  511.  
  512. ------------------------------
  513.  
  514. Date: Tue, 09 Jun 1998 22:05:08 -0500
  515. From: Bob Margolis <rttyman@wwa.com>
  516. Subject: (fractint) F'tint on a 400 MHz computer
  517.  
  518. Hi Fractalizens:
  519.  
  520. Well, I've got our favorite fractal program loaded and running on my new
  521. Compaq Presario 4880 Pentium II 400 MHz computer. WOW!
  522.  
  523. The program runs superiorly under Windows 95. It was very easy to set up
  524. compared with the toil it took to make it work properly under Windows 95
  525. on my 486/66 machine. There were some noticeable improvements to Windows
  526. 95 in the four years since I bought the 486/66 that must have
  527. contributed to the ease in making a DOS-based program to run smoothly
  528. under Windows.
  529.  
  530. I told you that I also bought a ViewSonic 17" monitor that was capable
  531. of operating at a 1600 x 1200 resolution. Let me first say that if you
  532. can save up to buy a 17" monitor, by all means do so. Fractint looks
  533. absolutely stunning on a large-screen monitor. For the past couple of
  534. years I have wanted to buy a 21" monitor, but found the cost
  535. prohibitive. But the prices of 17" monitors are just several hundred
  536. dollars.
  537.  
  538. I wan't able to run Fractint at the three 1600 x 1200 resolutions
  539. available with the program. Two were created for Lee Skinner and the
  540. third for Sylvie Gallet. My Compaq uses an ATI 3D Rage Pro (DirectX)
  541. adapter with ATI Capture Drivers and ATI mach64 Display Driver. (Tim
  542. Wegner: Hint. Hint. 8-) I'm on bended knees pleading for this addition.)
  543. I was able, however, to run Fractint at the next higher resolution above
  544. 1024 x 768 without problem.
  545.  
  546. And talk about fast! Fractint is now a regular speed demon. Might even
  547. be able to beat out the roadrunner. 8-)
  548.  
  549. And so ends my brief synopsis of Fractint running on a 400 MHz screamer.
  550. Got to back back to my fractalart workshop.
  551.  
  552. See ya,
  553.  
  554. Bob
  555.  
  556. - --------------------------------------------------------------
  557. Thanks for using Fractint, The Fractals and Fractint Discussion List
  558. Post Message:   fractint@lists.xmission.com
  559. Get Commands:   majordomo@lists.xmission.com "help"
  560. Administrator:  twegner@phoenix.net
  561. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  562.  
  563. ------------------------------
  564.  
  565. Date: Wed, 10 Jun 1998 01:01:22 -0400
  566. From: Donald Archer <arch@dorsai.org>
  567. Subject: Re: (fractint) F'tint on a 400 MHz computer
  568.  
  569. Bob,
  570.  
  571. >I wan't able to run Fractint at the three 1600 x 1200 resolutions
  572. >available with the program. 
  573.  
  574. Thanks for the report. Sylvie gave me this configuration for my
  575. Diamond Stealth PCI card maybe a couple of years ago:
  576.  
  577. 4f02, 120, 0, 0, 28, 1600, 1200, 256
  578.  
  579. It works on my 17" Trinitron. Good luck!
  580.  
  581. Don
  582.  
  583.  
  584. - --------------------------------------------------------------
  585. Thanks for using Fractint, The Fractals and Fractint Discussion List
  586. Post Message:   fractint@lists.xmission.com
  587. Get Commands:   majordomo@lists.xmission.com "help"
  588. Administrator:  twegner@phoenix.net
  589. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  590.  
  591. ------------------------------
  592.  
  593. Date: Wed, 10 Jun 1998 01:31:18 EDT
  594. From: <MAksoy@aol.com>
  595. Subject: (fractint) New Fractint Gallery
  596.  
  597. Members of this list may be interested in my just opened second gallery of
  598. Fractint fractals at:
  599.  
  600. http://members.aol.com/fractasy/fract2.htm
  601.  
  602. It's a fractalized mixed bag of everything from waterbugs to packing tape.  I
  603. guess I just can't help seeing fractals as Rorschach blots, reflecting my own
  604. inner version of the outside world!! 
  605.  
  606. Mark
  607.  
  608. Mark's Fractal Worlds Gallery -
  609. http://members.aol.com/maksoy/vistfrac/vistfrac.htm
  610.  
  611.   
  612.  
  613. - --------------------------------------------------------------
  614. Thanks for using Fractint, The Fractals and Fractint Discussion List
  615. Post Message:   fractint@lists.xmission.com
  616. Get Commands:   majordomo@lists.xmission.com "help"
  617. Administrator:  twegner@phoenix.net
  618. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  619.  
  620. ------------------------------
  621.  
  622. Date: Wed, 10 Jun 1998 07:28:42 -0400 (EDT)
  623. From: aq936@freenet.carleton.ca (Michael Traynor)
  624. Subject: (fractint) FOTD Par Problems
  625.  
  626. Can someone help me with some of Jim's FOTD pars?
  627.  
  628. The following pars:
  629.  
  630. Octopus_Garden        Seahorse_scene
  631. ThisIsNotAJuliaSet    Oblate_Inferno
  632. Grand_Convergence    What__me_worry
  633. Oblate_Elephant
  634.  
  635. all give a blank screen for me.  Laser Beam, which uses
  636. the same formula (Oblate) works though (and I am using the
  637. version of Oblate that Jim included with the pars.
  638.  
  639. Has anyone else had such a problem?
  640.  
  641.  
  642. - --
  643. Mike Traynor
  644.  
  645. People who like this sort of thing will find this the sort of thing they like.
  646.     Abraham Lincoln
  647.  
  648. - --------------------------------------------------------------
  649. Thanks for using Fractint, The Fractals and Fractint Discussion List
  650. Post Message:   fractint@lists.xmission.com
  651. Get Commands:   majordomo@lists.xmission.com "help"
  652. Administrator:  twegner@phoenix.net
  653. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  654.  
  655. ------------------------------
  656.  
  657. Date: Wed, 10 Jun 1998 09:13:05 -0400
  658. From: Lee Skinner <LeeHSkinner@compuserve.com>
  659. Subject: (fractint) FOTD Par Prob
  660.  
  661. >>Can someone help me with some of Jim's FOTD pars?
  662.  
  663. The following pars:
  664.  
  665. Octopus_Garden        Seahorse_scene
  666. ThisIsNotAJuliaSet    Oblate_Inferno
  667. Grand_Convergence    What__me_worry
  668. Oblate_Elephant
  669.  
  670. all give a blank screen for me.  Laser Beam, which uses
  671. the same formula (Oblate) works though (and I am using the
  672. version of Oblate that Jim included with the pars.
  673.  
  674. Has anyone else had such a problem?<<
  675.  
  676. Mike,
  677.  
  678. This is what can happen when the same names are used for different formul=
  679. as.
  680. You probably have the OLD version of these formulas in your formula
  681. collection.  Jim has changed them.
  682.  
  683. Oblate {; Jim Muth                     OLD version
  684. z=3Dreal(pixel)+flip(real(p1)),
  685. c=3Dflip(imag(pixel))+imag(p1):
  686. z=3Dsqr(z)+c,
  687. |z| <=3D 36
  688. }
  689.  
  690. Oblate {; Jim Muth  real(z),imag(c)    NEW version
  691. z=3Dreal(pixel)+p1,
  692. c=3Dflip(imag(pixel))+p2:
  693. z=3Dsqr(z)+c,
  694. |z| <=3D 16
  695. }
  696.  
  697. Parabolic {; Jim Muth                    OLD version
  698. z=3Dimag(pixel)+flip(real(p1)),
  699. c=3Dreal(pixel)+flip(imag(p1)):
  700. z=3Dsqr(z)+c,
  701. |z| <=3D 36
  702. }
  703.  
  704. Parabolic {; Jim Muth  real(z),real(c)   NEW  version
  705. z=3Dimag(pixel)+p1,
  706. c=3Dreal(pixel)+p2:
  707. z=3Dsqr(z)+c,
  708. |z| <=3D 16
  709. }
  710.  
  711. multirot-XY-ZW {; Jim Muth, best=3Difif, fiif, fifi, iffi    OLD version
  712. a=3Dreal(p1)*.01745329251994, b=3Dimag(p1)*.01745329251994,
  713. z=3Dsin(b)*fn1(real(pixel))+sin(a)*fn2(imag(pixel))+p2,
  714. c=3Dcos(b)*fn3(real(pixel))+cos(a)*fn4(imag(pixel))+p3:
  715. z=3Dsqr(z)+c,
  716. |z| <=3D 36  }
  717.  
  718. multirot-XY-ZW {; draws all 6 planes and many rotations   NEW version
  719. ;when fn1-2=3Di,f, then p1 0,0=3DM, 0,90=3DO, 90,0=3DE, 90,90=3DJ
  720. ;when fn1-2=3Df,i, then p1 0,0=3DM, 0,90=3DR, 90,0=3DP, 90,90=3DJ
  721. a=3Dreal(p1)*.01745329251994, b=3Dimag(p1)*.01745329251994,
  722. z=3Dsin(b)*fn1(real(pixel))+sin(a)*fn2(imag(pixel))+p2,
  723. c=3Dcos(b)*real(pixel)+cos(a)*flip(imag(pixel))+p3:
  724. z=3Dsqr(z)+c,
  725. |z| <=3D 36  }
  726.  
  727. I call the new versions Oblate_1, Parabolic_1, and multirot-XY-ZWa
  728. in my collection, and the images generate fine!
  729.  
  730. Lee
  731.  
  732. - --------------------------------------------------------------
  733. Thanks for using Fractint, The Fractals and Fractint Discussion List
  734. Post Message:   fractint@lists.xmission.com
  735. Get Commands:   majordomo@lists.xmission.com "help"
  736. Administrator:  twegner@phoenix.net
  737. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  738.  
  739. ------------------------------
  740.  
  741. Date: Wed, 10 Jun 1998 10:23:35 -0400 (EDT)
  742. From: kragen@pobox.com (Kragen)
  743. Subject: Re: (fractint) Calc method
  744.  
  745. On Sun, 17 May 1998, mctupper wrote:
  746. > I don't know about others but for me, I prefer to use boundary. I enjoy
  747. > watching the fractal being generated almost as much as seeing the final
  748. > product. Tesseract is almost as much fun to watch.
  749.  
  750. I like this too.  And there's some option -- can't remember what it's
  751. called -- that doesn't bother to fill in the boundaries/boxes, but
  752. leaves them outlined.  I like that a lot.
  753.  
  754. Kragen
  755.  
  756.  
  757. - --------------------------------------------------------------
  758. Thanks for using Fractint, The Fractals and Fractint Discussion List
  759. Post Message:   fractint@lists.xmission.com
  760. Get Commands:   majordomo@lists.xmission.com "help"
  761. Administrator:  twegner@phoenix.net
  762. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  763.  
  764. ------------------------------
  765.  
  766. Date: Wed, 10 Jun 1998 15:20:12 -0700
  767. From: Ray Montgomery <elmont@cdsnet.net>
  768. Subject: (fractint) First Par
  769.  
  770.     Hello,
  771.  
  772.     I'm sending two pars - but since I don't yet know how to send two at once
  773. - - I have to send them one at a time.
  774.      This is the first.
  775.  
  776. Seat_Cushion       { ; Frima209-001
  777.                      ; 6/8/98
  778.                      ; elmont
  779.                      ; from FrimA4-023
  780.   reset=1960 type=manfn+zsqrd function=cosxx
  781.   center-mag=-1.67794800000000000/-1.04351806500000000/263.7864/1.0505/90/\
  782.   -5.097 params=0/0 float=y maxiter=32000 inside=0
  783.   potential=255/300/150 decomp=256
  784.   colors=nG4<13>yc1ze0ze0<14>nG4KKc<11>RguSivTkxUmzUmz<11>NQhMOgLMeKKckD1<\
  785.   11>rSGrUHsVItXKtXK<11>mI5mG4lF3kD1tIZ<13>yTnzUpzUp<14>tIZh00<11>q7Fr8Hs9\
  786.   ItAKtAK<11>k35j23i12h00nG4<13>yc1ze0ze0<14>nG4KKc<11>RguSivTkxUmzUmz<11>\
  787.   NQhMOgLMeKKckD1<11>rSGrUHsVItXKtXK<12>kD10a00Z0
  788.   }
  789.  
  790.     Second one to follow.
  791.                     Ray
  792.  
  793.  
  794. - --------------------------------------------------------------
  795. Thanks for using Fractint, The Fractals and Fractint Discussion List
  796. Post Message:   fractint@lists.xmission.com
  797. Get Commands:   majordomo@lists.xmission.com "help"
  798. Administrator:  twegner@phoenix.net
  799. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  800.  
  801. ------------------------------
  802.  
  803. Date: Wed, 10 Jun 1998 15:26:22 -0700
  804. From: Ray Montgomery <elmont@cdsnet.net>
  805. Subject: (fractint) Second
  806.  
  807.     Hello, again
  808.  
  809.     This is the second par.
  810.  
  811.  
  812.  
  813. Fancy_Dress_Hal    { ; Frima206-034
  814.                      ; 6/5/98
  815.                      ; elmont
  816.   reset=1960 type=lambda(fn||fn) function=sin/sqr
  817.   center-mag=+0.20031298904538110/+0.22546972860125480/1.36612/1/40
  818.   params=1/0.1/1 float=y bailout=4 periodicity=0
  819.   colors=000K05<4>000<15>zzz<15>000<15>0gg<15>000<15>zzz<15>000<15>zn0<15>\
  820.   000<15>zzz<15>004<8>B0XD0`E0cF0gG0jH0nI0qK0u<13>308204333<14>zzz<15>000<\
  821.   15>z0G<9>O06
  822.   }
  823.  
  824.                     Ray
  825.  
  826.  
  827. - --------------------------------------------------------------
  828. Thanks for using Fractint, The Fractals and Fractint Discussion List
  829. Post Message:   fractint@lists.xmission.com
  830. Get Commands:   majordomo@lists.xmission.com "help"
  831. Administrator:  twegner@phoenix.net
  832. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  833.  
  834. ------------------------------
  835.  
  836. Date: Wed, 10 Jun 1998 18:03:55 -0500 (CDT)
  837. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  838. Subject: Re: (fractint) First Par
  839.  
  840. Ray,
  841.  
  842. >    I'm sending two pars - but since I don't yet know how to send
  843. >two at once
  844. >- I have to send them one at a time.
  845. >     This is the first.
  846. >
  847. >Seat_Cushion       { ; Frima209-001
  848.  
  849. Very nice image!  Looking forward to the second one.
  850.  
  851. Paul Carlson
  852.  
  853.  
  854.  
  855. - --------------------------------------------------------------
  856. Thanks for using Fractint, The Fractals and Fractint Discussion List
  857. Post Message:   fractint@lists.xmission.com
  858. Get Commands:   majordomo@lists.xmission.com "help"
  859. Administrator:  twegner@phoenix.net
  860. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  861.  
  862. ------------------------------
  863.  
  864. Date: Wed, 10 Jun 1998 20:55:40 EDT
  865. From: <JimBeau549@aol.com>
  866. Subject: (fractint) 5 pars (Sylvie Gallet map)
  867.  
  868. Here's some nice images, all but one make use of a color map from Sylvie
  869. Gallet.
  870.  
  871. Jim
  872. ****************************************************************
  873.  
  874. mirage             { ; 0:00:31.96  map from Sylvie Gallet
  875.                      ; 6/10/98 image(c) JamesWeaver
  876.   reset=1960 type=fn*z+z function=cosxx passes=t
  877.   center-mag=3.10862e-015/1.33227e-014/0.456006/1/2.5
  878.   params=-1/1/1/0.65 float=y bailout=4 bailoutest=and inside=bof60
  879.   potential=255/400/0 symmetry=xyaxis
  880.   colors=0009NJ<2>6GB5E86G9<10>FXIGZJH`KIbLJdMKfNLhM<12>wt1<12>DVF<2>CRECQ\
  881.   DCPCCNBCMACLABJ9<3>BH8BG8AF7AE79D6<6>aLBeMCgODjQF<13>xnGypGzrF<2>ztWyt`y\
  882.   ufxukxvqwww<9>kNNjJJhFFgBBf88d44c00<6>P00M00K00H00K21<8>hO6kQ6nT7qW8<2>z\
  883.   bA<9>zzc<4>fqZaoY_mX<13>2SH0QG0OE1MD1KB<2>3D74A6684<2>A00<5>dU0jZ0oc0uh0\
  884.   zm0<6>zU0<6>H40<2>A4773A73C<6>39Q2AS3CT<13>E`hFbiGdi<3>JklKmmJkj<9>AQM
  885.   }
  886.  
  887.  
  888. mirage2            { ; 0:00:14.88  map from Sylvie Gallet
  889.                      ; 6/10/98 image(c) JamesWeaver
  890.   reset=1960 type=fn*z+z function=cotan passes=t
  891.   center-mag=-5.32907e-015/3.55271e-015/0.2358491
  892.   params=-1/0.8875/0.575/0.425 float=y bailout=4 bailoutest=and
  893.   inside=bof60 potential=255/400/0 invert=1/0/0 symmetry=xyaxis
  894.   colors=000Q72<6>hO6kQ6nT7qW8<2>zbA<9>zzc<4>fqZaoY_mX<13>2SH0QG0OE1MD1KB<\
  895.   2>3D74A6684<2>A00<5>dU0jZ0oc0uh0zm0<6>zU0<6>H40<2>A4773A73C<6>39Q2AS3CT<\
  896.   13>E`hFbiGdi<3>JklKmmJkj<7>CURBSPAQM9NJ8LG7IE6GB5E8<11>FXIGZJH`KIbLJdMKf\
  897.   NLhM<12>wt1<12>DVF<2>CRECQDCPCCNBCMACLABJ9<3>BH8BG8AF7AE79D6<6>aLBeMCgOD\
  898.   jQF<13>xnGypGzrF<2>ztWyt`yufxukxvqwww<9>kNNjJJhFFgBBf88d44c00<6>P00M00K0\
  899.   0H00K21N42
  900.   }
  901.  
  902.  
  903. mirage3            { ; 0:00:11.15  map from Sylvie Gallet
  904.                      ; 6/10/98 image(c) JamesWeaver
  905.   reset=1960 type=fn*z+z function=tanh passes=t
  906.   center-mag=-8.43769e-015/5.77316e-015/0.459881
  907.   params=-1/0.8875/0.575/0.425 float=y bailout=4 bailoutest=and
  908.   inside=bof60 potential=255/400/0 invert=1/0/0 symmetry=xyaxis
  909.   colors=000K00H00<9>hO6kQ6nT7qW8<2>zbA<9>zzc<4>fqZaoY_mX<13>2SH0QG0OE1MD1\
  910.   KB<2>3D74A6684<2>A00<5>dU0jZ0oc0uh0zm0<6>zU0<6>H40<2>A4773A73C<6>39Q2AS3\
  911.   CT<13>E`hFbiGdi<3>JklKmmJkj<7>CURBSPAQM9NJ8LG7IE6GB5E8<11>FXIGZJH`KIbLJd\
  912.   MKfNLhM<12>wt1<12>DVF<2>CRECQDCPCCNBCMACLABJ9<3>BH8BG8AF7AE79D6<6>aLBeMC\
  913.   gODjQF<13>xnGypGzrF<2>ztWyt`yufxukxvqwww<9>kNNjJJhFFgBBf88d44c00<7>M00
  914.   }
  915.  
  916.  
  917. mirage4            { ; 0:00:15.87  map from Sylvie Gallet
  918.                      ; 6/10/98 image(c) JamesWeaver
  919.   reset=1960 type=fn*z+z function=log passes=t
  920.   center-mag=-1.55431e-014/1.06581e-014/0.2175674
  921.   params=-1/0.8875/0.575/0.425 float=y bailout=4 bailoutest=and
  922.   inside=bof60 potential=255/400/0 invert=1/0/0 symmetry=xyaxis
  923.   colors=0007VJ5TI2SH0QG<2>1KB1H92F83D7<4>A00<5>dU0jZ0oc0uh0zm0<6>zU0<6>H4\
  924.   0<2>A4773A73C<6>39Q2AS3CT<13>E`hFbiGdi<3>JklKmmJkj<7>CURBSPAQM9NJ8LG7IE6\
  925.   GB5E8<11>FXIGZJH`KIbLJdMKfNLhM<12>wt1<12>DVF<2>CRECQDCPCCNBCMACLABJ9<3>B\
  926.   H8BG8AF7AE79D6<6>aLBeMCgODjQF<13>xnGypGzrF<2>ztWyt`yufxukxvqwww<9>kNNjJJ\
  927.   hFFgBBf88d44c00<6>P00M00K00H00K21<8>hO6kQ6nT7qW8<2>zbA<9>zzc<4>fqZaoY_mX\
  928.   <10>AWL
  929.   }
  930.  
  931.  
  932. mirage5            { ; 0:00:21.20 andy9.map
  933.                      ; 6/10/98 image(c) JamesWeaver
  934.   reset=1960 type=fn*z+z function=exp passes=t
  935.   center-mag=-1.42109e-014/1.06581e-014/0.05756741
  936.   params=-1/0.8875/0.575/0.425 float=y bailout=4 bailoutest=and
  937.   inside=bof60 potential=255/400/0 invert=1/0/0 symmetry=xyaxis
  938.   colors=000500<12>`00c00d44<13>zzz<3>snNukDsh3qe0<2>kX0aU0<9>I00<8>000300\
  939.   000003005<5>D0KF0MJ0P<3>Q0ZS0`U2cW4d<2>aGhcKieMkgOmiWokYpmbqoesqjusovupw\
  940.   xvyzzzyvxwpuvosujqseoqbmpYkoWimOgkMeiKc<2>f8Yd4Wc2U`0S<4>R0IP0GN0GL0C<4>\
  941.   B02900700500005<13>00c<15>zzz<15>EEcBBa88Z<2>00S<9>003000022<14>0cc<15>z\
  942.   zz<15>0c0<14>030000200
  943.   }
  944.  
  945. - --------------------------------------------------------------
  946. Thanks for using Fractint, The Fractals and Fractint Discussion List
  947. Post Message:   fractint@lists.xmission.com
  948. Get Commands:   majordomo@lists.xmission.com "help"
  949. Administrator:  twegner@phoenix.net
  950. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  951.  
  952. ------------------------------
  953.  
  954. Date: Wed, 10 Jun 1998 18:26:44 -0700 (PDT)
  955. From: "James R. McKenzie" <whookam88@yahoo.com>
  956. Subject: Re: (fractint) FOTD Par Problems
  957.  
  958. >Can someone help me with some of Jim's FOTD pars?
  959. >The following pars:
  960. >
  961. >>Octopus_Garden        Seahorse_scene
  962. >ThisIsNotAJuliaSet    Oblate_Inferno
  963. >Grand_Convergence    What__me_worry
  964. >Oblate_Elephant
  965. >
  966. >all give a blank screen for me.  Laser Beam, which uses
  967. >the same formula (Oblate) works though (and I am using the
  968. >version of Oblate that Jim included with the pars.
  969. >
  970. >Has anyone else had such a problem?
  971.  
  972.  
  973.  
  974.  
  975. I get the same problem too.  My screen gets a FUSCIA color and that's
  976. it. 
  977.  
  978. Any suggestions?
  979. _________________________________________________________
  980. DO YOU YAHOO!?
  981. Get your free @yahoo.com address at http://mail.yahoo.com
  982.  
  983.  
  984. - --------------------------------------------------------------
  985. Thanks for using Fractint, The Fractals and Fractint Discussion List
  986. Post Message:   fractint@lists.xmission.com
  987. Get Commands:   majordomo@lists.xmission.com "help"
  988. Administrator:  twegner@phoenix.net
  989. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  990.  
  991. ------------------------------
  992.  
  993. Date: Wed, 10 Jun 1998 22:26:28 EDT
  994. From: <JimBeau549@aol.com>
  995. Subject: (fractint) GIF file size question
  996.  
  997. I was wondering if there's a place in Fractint that shows a saved images file
  998. size in kilobytes?  It's not really that necessary, but it would be nice to
  999. know.
  1000.  
  1001. Thanks,
  1002.  
  1003. Jim
  1004.  
  1005. - --------------------------------------------------------------
  1006. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1007. Post Message:   fractint@lists.xmission.com
  1008. Get Commands:   majordomo@lists.xmission.com "help"
  1009. Administrator:  twegner@phoenix.net
  1010. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1011.  
  1012. ------------------------------
  1013.  
  1014. Date: Thu, 11 Jun 1998 02:04:15 -0400
  1015. From: "Peter Gavin" <pgavin@mindspring.com>
  1016. Subject: (fractint) Whoo-hoo!
  1017.  
  1018. This is a multi-part message in MIME format.
  1019.  
  1020. - ------=_NextPart_000_0003_01BD94DD.3C8D0500
  1021. Content-Type: text/plain;
  1022.     charset="iso-8859-1"
  1023. Content-Transfer-Encoding: quoted-printable
  1024.  
  1025. Gee, =20
  1026. I went out of town for about a week, came back, and found 76 messages =
  1027. from this list alone!  I hate to wonder how many I'll find when I get =
  1028. back from France in a month!  (I'm leaving Saturday <g>)  But her's =
  1029. something for all to ponder while I'm gone:
  1030.  
  1031. I've heard many different philosophical (that is, retorical) questions =
  1032. about God, dice, and the type of plastic these dice are made of, and =
  1033. well, to start another thread, not related, really, but not entirely =
  1034. unrelated, here is the question:  Imagine the universe is a sheet of =
  1035. paper, and the stars, galaxies, etc. are sketches on the paper.  If you =
  1036. erase the sketches, the universe is an empty void.  What happens if you =
  1037. burn the paper?  (i.e. the universe *is* void!)  I have actually scared =
  1038. myself by really really thinking about this... (more than any HP =
  1039. Lovecraft or Stephen King novel has [or could])  And I'm sure it's not =
  1040. an original question, but I've never heard it asked before, either.
  1041.  
  1042. I hope to find 76 more messages on this topic, and hope to hear what you =
  1043. all have to say!
  1044.  
  1045. Peter Gavin
  1046. <pgavin@mindspring.com>
  1047.  
  1048. // End transmission
  1049.  
  1050.  
  1051.  
  1052. - ------=_NextPart_000_0003_01BD94DD.3C8D0500
  1053. Content-Type: text/html;
  1054.     charset="iso-8859-1"
  1055. Content-Transfer-Encoding: quoted-printable
  1056.  
  1057. <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
  1058. <HTML>
  1059. <HEAD>
  1060.  
  1061. <META content=3D"text/html; charset=3Diso-8859-1" =
  1062. http-equiv=3DContent-Type>
  1063. <META content=3D'"MSHTML 4.72.3110.7"' name=3DGENERATOR>
  1064. </HEAD>
  1065. <BODY bgColor=3D#ffffff>
  1066. <DIV><SPAN class=3D390075405-11061998><FONT color=3D#000000 =
  1067. face=3DVerdana=20
  1068. size=3D2>Gee,  </FONT></SPAN></DIV>
  1069. <DIV><SPAN class=3D390075405-11061998><FONT color=3D#000000 =
  1070. face=3DVerdana=20
  1071. size=3D2></FONT></SPAN><SPAN class=3D390075405-11061998><FONT =
  1072. color=3D#000000=20
  1073. face=3DVerdana size=3D2>I went out of town for about a week, came back, =
  1074. and found 76=20
  1075. messages from this list <EM>alone!</EM>  I hate to wonder how many =
  1076. I'll=20
  1077. find when I get back from France in a month!  (I'm leaving Saturday =
  1078.  
  1079. <g>)  But her's something for all to ponder while I'm=20
  1080. gone:</FONT></SPAN></DIV>
  1081. <DIV><SPAN class=3D390075405-11061998><FONT color=3D#000000 =
  1082. face=3DVerdana=20
  1083. size=3D2></FONT></SPAN> </DIV>
  1084. <DIV><SPAN class=3D390075405-11061998><FONT color=3D#000000 =
  1085. face=3DVerdana size=3D2>I've=20
  1086. heard many different philosophical (that is, retorical) questions about =
  1087. God,=20
  1088. dice, and the type of plastic these dice are made of, and well, to start =
  1089. another=20
  1090. thread, not related, really, but not <EM>entirely</EM> unrelated, here =
  1091. is the=20
  1092. question:  Imagine the universe is a sheet of paper, and the stars, =
  1093.  
  1094. galaxies, etc. are sketches on the paper.  If you erase the =
  1095. sketches, the=20
  1096. universe is an empty void.  What happens if you burn the =
  1097. paper?  (i.e.=20
  1098. the universe *is* void!)  I have actually scared myself by really =
  1099. really=20
  1100. thinking about this... (more than any HP Lovecraft or Stephen King novel =
  1101. has [or=20
  1102. could])</FONT></SPAN><SPAN class=3D390075405-11061998><FONT =
  1103. color=3D#000000=20
  1104. face=3DVerdana size=3D2>  And I'm sure it's not an original =
  1105. question, but I've=20
  1106. never heard it asked before, either.</FONT></SPAN></DIV>
  1107. <DIV> </DIV>
  1108. <DIV><SPAN class=3D390075405-11061998><FONT color=3D#000000 =
  1109. face=3DVerdana size=3D2>I=20
  1110. hope to find 76 more messages on this topic, and hope to hear what you =
  1111. all have=20
  1112. to say!</FONT></SPAN></DIV>
  1113. <P><FONT face=3D"" size=3D2><BR>Peter Gavin<BR><<A=20
  1114. href=3D"mailto:pgavin@mindspring.com">pgavin@mindspring.com</A>><BR><B=
  1115. R><EM><FONT=20
  1116. face=3D"" size=3D1>// End transmission</FONT></EM></FONT></P>
  1117. <DIV> </DIV></BODY></HTML>
  1118.  
  1119. - ------=_NextPart_000_0003_01BD94DD.3C8D0500--
  1120.  
  1121.  
  1122. - --------------------------------------------------------------
  1123. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1124. Post Message:   fractint@lists.xmission.com
  1125. Get Commands:   majordomo@lists.xmission.com "help"
  1126. Administrator:  twegner@phoenix.net
  1127. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1128.  
  1129. ------------------------------
  1130.  
  1131. Date: Thu, 11 Jun 1998 02:53:24 EDT
  1132. From: <JimBeau549@aol.com>
  1133. Subject: (fractint) 1 par (Gallet-5-08frm)
  1134.  
  1135. Here's 1 more image I thought was kind of nice to look at.  It's time I should
  1136. begin learning the fine art of map-making. Enjoy~
  1137.  
  1138. Jim
  1139.  
  1140. ************************************************************************
  1141.  
  1142.  
  1143. X                  { ; 0:02:46.37 map by Sylvie Gallet
  1144.                      ; 6/10/98 image(c) JamesWeaver
  1145.   reset=1960 type=formula formulafile=gallet-5.frm
  1146.   formulaname=Gallet-5-08 function=tan/flip/recip passes=1
  1147.   center-mag=-2.05391e-015/1.77636e-015/0.78125/1/44.999
  1148.   params=0.5/0/1.085/0/1.25/0 float=y maxiter=25 inside=bof60
  1149.   decomp=256 periodicity=0
  1150.   colors=0009Qa<5>E`hFbiGdi<3>JklKmmJkj<10>9NJ8LG7JE6GB5E86G9<11>GZJH`KIbL\
  1151.   JdMKfNLhM<12>wt1<12>DVF<3>CQDCPCCNBCMACLABJ9<4>BG8AF7AE79D6DE6<5>aLBeMCg\
  1152.   ODjQF<13>xnGypGzrF<2>ztWyt`yufxukxvqwww<9>kNNjJJhFFgBBf88d44c00<6>P00M00\
  1153.   K00H00K21<8>hO6kQ6nT7qW8<2>zbA<9>zzc<4>fqZaoY_mX<14>0QG<2>1KB1H92F83D7<4\
  1154.   >A00<5>dU0jZ0oc0uh0zm0<6>zU0<6>H40<2>A4773A73C<6>39Q2AS3CT<6>8O`
  1155.   }
  1156.  
  1157.  
  1158. - --------------------------------------------------------------
  1159. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1160. Post Message:   fractint@lists.xmission.com
  1161. Get Commands:   majordomo@lists.xmission.com "help"
  1162. Administrator:  twegner@phoenix.net
  1163. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1164.  
  1165. ------------------------------
  1166.  
  1167. End of fractint-digest V1 #233
  1168. ******************************
  1169.  
  1170.