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

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #61
  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        Tuesday, January 6 1998        Volume 01 : Number 061
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Mon, 05 Jan 1998 06:08:13 -0500
  18. From: davides <davides@pipeline.com>
  19. Subject: Re: (fractint) Quartz formula
  20.  
  21. At 09:19 AM 1/4/98 +1100, you wrote:
  22.  
  23. Whoops - should have written instead of: Bessel-2 I added:  (after the "{"
  24. ; Bessel2
  25.  
  26. Bessel-2 I added:  (after the "{"  ; Bessel-2
  27.  
  28. Difference being the dash betwixt Bessel and 2.
  29.  
  30.  
  31. davides@pipeline.com
  32. "Do Not Meddle In The Affairs Of Dragons For You Are Crunchy And Good With
  33. Ketchup"
  34.  
  35. - -
  36. - ------------------------------------------------------------
  37. Thanks for using Fractint, The Fractals and Fractint Discussion List
  38. Post Message:   fractint@xmission.com
  39. Get Commands:   majordomo@xmission.com "help"
  40. Administrator:  twegner@phoenix.net
  41. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  42.  
  43. ------------------------------
  44.  
  45. Date: Mon, 5 Jan 1998 07:03:23 -0500
  46. From: George Martin <76440.1143@compuserve.com>
  47. Subject: (fractint) Quartz formula
  48.  
  49. Beth wrote:
  50.  
  51. >
  52. QuartzM2C { ; Mandelbrot set 2 sliced diagonally
  53.     z=1:
  54.     a=z*z
  55.     b=z*a
  56.     c=z*b
  57.     z=(pixel+p1)*(3*c-4*b-6*a+12*z)+(pixel-p1),
  58.     |z|<=127}
  59.  
  60. Could someone please tell me, to use this formula, which is the part to be
  61. saved in a frm file? All, or just from z down?
  62. <
  63.  
  64. Beth, you save the whole thing, starting with the "Q" in QuartzM2C (which
  65. is the name of the formula) and ending with the "}", which marks the end of
  66. the formula.
  67.  
  68. >
  69. Also, having saved a frm, Fractint prompts for parameters. How do you feed
  70. info from par file to the pars screen?
  71. <
  72.  
  73. Not sure I understand your question, but the way to change parameters while
  74. a par image is drawing is to hit "z", which brings up the parameter screen.
  75.  
  76. George Martin
  77.  
  78. - -
  79. - ------------------------------------------------------------
  80. Thanks for using Fractint, The Fractals and Fractint Discussion List
  81. Post Message:   fractint@xmission.com
  82. Get Commands:   majordomo@xmission.com "help"
  83. Administrator:  twegner@phoenix.net
  84. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  85.  
  86. ------------------------------
  87.  
  88. Date: Mon, 5 Jan 1998 08:58:19 -0500 (EST)
  89. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  90. Subject: Re: (fractint) Quartz formula
  91.  
  92. >
  93. >QuartzM2C { ; Mandelbrot set 2 sliced diagonally
  94. >    z=1:
  95. >    a=z*z
  96. >    b=z*a
  97. >    c=z*b
  98. >    z=(pixel+p1)*(3*c-4*b-6*a+12*z)+(pixel-p1),
  99. >    |z|<=127}
  100. >
  101. >Could someone please tell me, to use this formula, which is the part to be
  102. >saved in a frm file? All, or just from z down?
  103.  
  104. Hey that's mine:)
  105.  
  106. Save the whole thing in a .frm file.
  107.  
  108. >Also, having saved a frm, Fractint prompts for parameters. How do you feed
  109. >info from par file to the pars screen?
  110.  
  111. Save the above in quartz.frm and read in the par with the @ command.
  112. It will find the formula and use it without difficulty.
  113.  
  114.  
  115. - --
  116.     .*.  Friendship, companionship, love, and having fun are the reasons for
  117.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  118.     `*'  Send any and all mail with attachments to the hotmail address please.
  119. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  120.  
  121. - -
  122. - ------------------------------------------------------------
  123. Thanks for using Fractint, The Fractals and Fractint Discussion List
  124. Post Message:   fractint@xmission.com
  125. Get Commands:   majordomo@xmission.com "help"
  126. Administrator:  twegner@phoenix.net
  127. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  128.  
  129. ------------------------------
  130.  
  131. Date: Mon, 05 Jan 1998 08:02:45 -0800
  132. From: Mark Christenson <mchris@hooked.net>
  133. Subject: (fractint) Introduction
  134.  
  135. Hi, folks!   I'm a rookie on this list so forgive me for any faux pas 
  136. (oh, shi-oot, what's the plural?  I don't speak French!)
  137.  
  138. Do all formulae have to be expressed in terms of Z, or can I separately 
  139. process real and imaginary components?  Or better yet, write all eq's
  140. explicitly (outside of the normal complex number processing)?  Most 
  141. of my good ones generated by my own program) are mangled poly's. 
  142.  
  143.  
  144. Thanks, Bud
  145. www.hooked.net/~mchris/fractals.htm
  146.  
  147.  
  148.  
  149. - -
  150. - ------------------------------------------------------------
  151. Thanks for using Fractint, The Fractals and Fractint Discussion List
  152. Post Message:   fractint@xmission.com
  153. Get Commands:   majordomo@xmission.com "help"
  154. Administrator:  twegner@phoenix.net
  155. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  156.  
  157. ------------------------------
  158.  
  159. Date: Mon, 05 Jan 1998 08:05:44 -0800
  160. From: Mark Christenson <mchris@hooked.net>
  161. Subject: (fractint) Introduction/typo
  162.  
  163. *** sorry for the redundant msg, but I goofed the first time ***
  164.  
  165. Hi, folks!   I'm a rookie on this list so forgive me for any faux pas 
  166. (oh, shi-oot, what's the plural?  I don't speak French!)
  167.  
  168. Do all formulae have to be expressed in terms of Z, or can I separately 
  169. process real and imaginary components?  Or better yet, write all eq's
  170. explicitly (outside of the normal complex number processing)?  Most 
  171. of my good ones (generated by my own program) are mangled poly's. 
  172.  
  173.  
  174. Thanks, Bud
  175. www.hooked.net/~mchris/fractals.htm
  176.  
  177.  
  178.  
  179. - -
  180. - ------------------------------------------------------------
  181. Thanks for using Fractint, The Fractals and Fractint Discussion List
  182. Post Message:   fractint@xmission.com
  183. Get Commands:   majordomo@xmission.com "help"
  184. Administrator:  twegner@phoenix.net
  185. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  186.  
  187. ------------------------------
  188.  
  189. Date: Mon, 05 Jan 1998 10:56:49 -0600
  190. From: "Damien M. Jones" <dmj@fractalus.com>
  191. Subject: Re: (fractint) Introduction
  192.  
  193. Bud,
  194.  
  195.  - Do all formulae have to be expressed in terms of Z, or can I separately 
  196.  - process real and imaginary components?
  197.  
  198. It's best to use "z" because FractInt looks at z to check for periodicity.
  199. If you don't use z anywhere in your formula, FractInt sees that z is in a
  200. tight periodic loop (all zeroes) and bails out early.
  201.  
  202. If you want to calculate the real and imaginary values separately, you'll
  203. just have to write the formula to run that way.  It's a little cumbersome,
  204. but can be done.
  205.  
  206. Damien M. Jones   \\
  207. dmj@fractalus.com  \\  http://www.icd.com/tsd/  (temporary sanity designs)
  208.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  209.  
  210.  
  211. - -
  212. - ------------------------------------------------------------
  213. Thanks for using Fractint, The Fractals and Fractint Discussion List
  214. Post Message:   fractint@xmission.com
  215. Get Commands:   majordomo@xmission.com "help"
  216. Administrator:  twegner@phoenix.net
  217. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  218.  
  219. ------------------------------
  220.  
  221. Date: Mon, 5 Jan 1998 17:08:05 -0500
  222. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  223. Subject: (fractint) 3D Balls Julia, a par
  224.  
  225. Hi All,
  226.  
  227.   Here is a par using one of Paul Carlson's great formulas:
  228.  
  229.   sg_3DBJ_01         { ; .                                    t=3D =
  230.  
  231. 2:34:01.27
  232.                      ; Copyright Sylvie Gallet, Jan 05, 1998
  233.                      ; <sylvie gallet@compuserve.com>
  234.                      ; t=3Dcalc time using a Pentium 166 at 1600 x 1200
  235.   reset=3D1960 type=3Dformula formulafile=3Dtest.frm
  236.   formulaname=3D3D_Balls_Julia passes=3D1
  237.   center-mag=3D-4.44089e-016/-8.88178e-016/0.3114353/1/-96.438/-5.869
  238.   params=3D-0.402/0.8/0.1/5/7/32 float=3Dy maxiter=3D511 inside=3D0
  239.   outside=3Dsumm periodicity=3D0
  240.   colors=3D000KKK<14>aaacccdddfffggg<11>zzzKKK<30>zzz05F<14>6Sf7Uh9Vh<13>=
  241. crr\
  242.   D00<14>c01e02e12<13>rK5KKK<30>zzzKKK<30>zzzPKF<13>dYNeZOg`PhaQibR<12>zr=
  243. c\
  244.   000<29>000 cyclerange=3D161/224
  245.   }
  246.  
  247.   Cheers,
  248.  
  249.         - Sylvie
  250.  
  251.  
  252. - -
  253. - ------------------------------------------------------------
  254. Thanks for using Fractint, The Fractals and Fractint Discussion List
  255. Post Message:   fractint@xmission.com
  256. Get Commands:   majordomo@xmission.com "help"
  257. Administrator:  twegner@phoenix.net
  258. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  259.  
  260. ------------------------------
  261.  
  262. Date: Mon, 05 Jan 1998 19:12:43 -0500
  263. From: davides <davides@pipeline.com>
  264. Subject: (fractint) Par
  265.  
  266. I believe I mentioned I should be posting a par due to a slightly off topic
  267. post a few days ago. There is nothing complex about this one, a slight
  268. change in one suggested parameter and using one of my color maps, but I
  269. kind of like this one. Please direct flames to the nearest IRS office
  270. (USA), and tax collection agency of your choice outside of the USA.
  271.  
  272. Jade               { ; Copyright (c) David Shanholtzer, 1998
  273.   reset=1960 type=formula formulafile=fractint.frm
  274.   formulaname=Newton_elliptic center-mag=0/0/0.6666667
  275.   params=1/0/0.0005/0 float=y maxiter=1000 inside=maxiter outside=summ
  276.   colors=000<15>0000FF<14>www<15>0FF000<30>000zzz<13>mRE<14>rpqsrtsqr<14>e\
  277.   TA<15>kjl<15>0Eo<15>mmw<15>j0`<15>mmw<31>mmw<15>m0D
  278.   }
  279. davides@pipeline.com
  280. "Do Not Meddle In The Affairs Of Dragons For You Are Crunchy And Good With
  281. Ketchup"
  282.  
  283. - -
  284. - ------------------------------------------------------------
  285. Thanks for using Fractint, The Fractals and Fractint Discussion List
  286. Post Message:   fractint@xmission.com
  287. Get Commands:   majordomo@xmission.com "help"
  288. Administrator:  twegner@phoenix.net
  289. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  290.  
  291. ------------------------------
  292.  
  293. Date: Mon, 05 Jan 1998 19:30:30 -0500
  294. From: Jack Valero <jval@globalserve.net>
  295. Subject: (fractint) Phractal update
  296.  
  297. What is it about the new year that we all feel compelled
  298. to change things? Yep, our pages have changed too.
  299.  
  300. A few new images, but all are larger now. Mostly a new
  301. non-linear way of viewing the pics. Highly organized
  302. types may still view things in a systematic manner. But
  303. now you can simply "wander" through the images. I hope
  304. you do because different image sequences might produce
  305. different experiences.
  306.  
  307. Take a look and tell me what you think. The old pages
  308. still exist and are linked, but the gallery is now
  309. essentially separated from them.
  310.  
  311. Speaking about links, if any of you would like me to
  312. provide a link to your pages, let me know. Your pages
  313. need only be fractal oriented and free of any
  314. prurient or prejudicial content. Other than that,
  315. we're an equal opportunity site :)
  316.  
  317. The old pages remain at:
  318. http://www.globalserve.net/~jval
  319.  
  320. The gallery is now at:
  321. http://www.globalserve.net/~jval/phractal.html
  322.  
  323. I've had a few people ask why they couldn't read other
  324. peoples' comments. I decided to add a previous comments
  325. page but am still not sure how I feel about this. If
  326. I've quoted you and you'd rather I didn't, let me
  327. know.
  328.  
  329. Oh, and I've slightly modified the old pages. If anyone
  330. using a wide browser screen experiences problems, please
  331. let me know.
  332.  
  333. Thanks for your time, people!
  334. Regards - Jack
  335.  
  336. visit our fractal gallery: http://www.globalserve.net/~jval/phractal.html
  337.  
  338. - -
  339. - ------------------------------------------------------------
  340. Thanks for using Fractint, The Fractals and Fractint Discussion List
  341. Post Message:   fractint@xmission.com
  342. Get Commands:   majordomo@xmission.com "help"
  343. Administrator:  twegner@phoenix.net
  344. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  345.  
  346. ------------------------------
  347.  
  348. Date: Mon, 5 Jan 1998 19:03:28 EST
  349. From: Bill at NY <BillatNY@aol.com>
  350. Subject: Re: (fractint) entering formulas
  351.  
  352. In a message dated 98-01-05 05:22:23 EST, you write:
  353.  
  354. << 
  355.  elegance           { ; by Angela 1997 using deeps7.map
  356.    reset=1950 type=formula formulafile=bessels.frm formulaname=BESSEL-2
  357.     
  358.  THis is the frm file, saved in notepad via edit, in order to retain
  359.  the frm extension. Notepad will only save as txt.
  360.  Saved as BESSELL-2.FRM in fractint
  361.  
  362.  
  363. Beth -  this looks good except you have to name the frm file BESSELS.FRM since
  364. that is what the par file is looking  for.  Or change the formulafile= to
  365. BESSEL-2.FRM    
  366.  
  367. But the formulaname agrees though, so that part is good.  (You can have more
  368. than one formula in an FRM file.  See the difference?)
  369.     |
  370.     |
  371.     V
  372.  BESSEL-2 {
  373.        c = z = pixel:
  374.           z = cos(z) / z + pixel,
  375.        |z| <= 100
  376.  }
  377.  
  378.  >Am I right so far?
  379. > I still get an oops message, and can't parse that formula
  380.  
  381. Change as explained and this will go away.
  382.  
  383.  >Is there a way for the pars to load automatically, or does one always type
  384. > them in manually
  385.  
  386. See my other message to you.
  387.  
  388.  
  389. One more advanced point that will make it much easier for you to play around.
  390. Change COS in your formual to the variable fn1.  When you call up the formula
  391. using T as I explained in the other message, you will then be able to hit Z
  392. and change fn1 to COS or SIN or TAN or anything else without leaving Fractint
  393. and writing another formula. 
  394.  
  395. Let me know if you have any more questions.
  396.  
  397. Bill
  398.  
  399. - -
  400. - ------------------------------------------------------------
  401. Thanks for using Fractint, The Fractals and Fractint Discussion List
  402. Post Message:   fractint@xmission.com
  403. Get Commands:   majordomo@xmission.com "help"
  404. Administrator:  twegner@phoenix.net
  405. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  406.  
  407. ------------------------------
  408.  
  409. Date: Tue, 06 Jan 1998 02:42:18 +0100
  410. From: guy.marson@mnhn.lu (Guy Marson)
  411. Subject: (fractint) smallest .frm
  412.  
  413. Hi dear Fractinters,
  414.  
  415. Got no objection against the large formulas, they produce amazing images.
  416. But I wanna know who is able to invent the SMALLEST .frm (the letters
  417. between the { } are counted) that produce lovely images... in combination
  418. with the very many features of Fractint (y/x/z screens)? Good stuff for a
  419. little contest..?
  420.  
  421. ;-)
  422.  
  423. Have fun,
  424.  
  425. and a happy New Year!
  426.  
  427.  
  428. Guy
  429.  
  430.  
  431. Fungi for fun = FunGUY... @:-]
  432.  
  433. (Guy Marson, 45b, rue de Bettembourg, L-5810 Hesperange)
  434. (Tel./Fax : (+352) 368733)  e-mail: guy.marson@mnhn.lu
  435.  
  436.  
  437. - -
  438. - ------------------------------------------------------------
  439. Thanks for using Fractint, The Fractals and Fractint Discussion List
  440. Post Message:   fractint@xmission.com
  441. Get Commands:   majordomo@xmission.com "help"
  442. Administrator:  twegner@phoenix.net
  443. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  444.  
  445. ------------------------------
  446.  
  447. Date: Mon, 5 Jan 1998 20:56:06 EST
  448. From: RBarn0001 <RBarn0001@aol.com>
  449. Subject: Re: (fractint) Web Page Update
  450.  
  451. In a message dated 98-01-04 16:37:34 EST, you write:
  452.  
  453. <<  I tested with Netscape 3.0 and Explorer 4.0. I don't
  454.  know what Explorer 3.0 or Netscape 4.0 do. What is your browser? Comments
  455. from
  456.  anyone else who has visited by site would be appreciated
  457.   >>
  458. Thanks to all of you who checked out my page for potential problems. I
  459. appreciate the time you took and the kind comments that you made.
  460.  
  461. Ron
  462.  
  463. - -
  464. - ------------------------------------------------------------
  465. Thanks for using Fractint, The Fractals and Fractint Discussion List
  466. Post Message:   fractint@xmission.com
  467. Get Commands:   majordomo@xmission.com "help"
  468. Administrator:  twegner@phoenix.net
  469. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  470.  
  471. ------------------------------
  472.  
  473. Date: Mon, 05 Jan 1998 19:09:45 -0800
  474. From: Wizzle <wizzle@cci-internet.com>
  475. Subject: Re: (fractint) Phractal update
  476.  
  477. Look Jack....
  478.  
  479. >What is it about the new year that we all feel compelled
  480. >to change things? Yep, our pages have changed too.
  481.  
  482. Keeping up with the Joneses is one thing...but now I'm forced to keep up
  483. with the Valero's too!!!  I'm really glad the images are larger,
  484. though...it was my one concern. I just adore all your comments....don't
  485. EVER change that approach. I'm envious of all your html tricks but too lazy
  486. to learn how to do them......and flame frames.........the perfect answer to
  487. making a 19" monitor look just like a 14" one!!!Like are we doing graphics
  488. here or cute web tricks??? Glad you haven't succombed to the temptation to
  489. add those 2@#$%@!!! things to your website. They only take up precious
  490. space that is better devoted to your wonderful fractals....
  491.  
  492. Angela
  493.  
  494.  
  495.  
  496.  
  497. - -
  498. - ------------------------------------------------------------
  499. Thanks for using Fractint, The Fractals and Fractint Discussion List
  500. Post Message:   fractint@xmission.com
  501. Get Commands:   majordomo@xmission.com "help"
  502. Administrator:  twegner@phoenix.net
  503. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  504.  
  505. ------------------------------
  506.  
  507. Date: Mon, 5 Jan 1998 22:18:02 EST
  508. From: T R Moe <TRMoe@aol.com>
  509. Subject: (fractint) terrible oversight
  510.  
  511. attention contest administrators!
  512. While cleaning up my e-mail archives I discovered the following set of pars
  513. which seem to have been submitted on time but never showed up in the contest
  514. displays or among the par file collections made available.  I know all this
  515. went on rather quickly and without much organization but I can't help but
  516. think that the graphic specialist couldn't feel too good about being ignored.
  517. I'm sorry I didn't find this soon enough to get this person included,but I'm
  518. not that organized either,
  519. >  Subj:     (fractint) Contest Pars
  520. >Date:    97-12-05 08:33:42 EST
  521. >From:    System_Support@Technologist.com (Graphics Specialist)
  522. >Sender:    owner-fractint@lists.xmission.com
  523. >Reply-to:    fractint@lists.xmission.com
  524. >To:    fractint@mail.xmission.com
  525.  
  526.  
  527. >Here are my contest pars.  They should work o.k. but if not let me
  528. >know.  Thanks.
  529. .
  530.  
  531. >GraphicSpecial_1   { ; System_Support@Technologist.com
  532. >                     ; Created December 05, 1997
  533. >                     ; for fractint .par contest
  534. >                     ; 
  535. >  reset=1960 type=formula formulafile=contest4.frm
  536. >  formulaname=contest4 passes=t center-mag=0/0/0.6666667
  537. > params=0.0123456789/0.09876543211 float=y maxiter=179 inside=bof61
  538. > outside=atan periodicity=0
  539. >  >colors=aCC<13>ACCCCC<21>sCs<20>ECsCCsCEs<19>CqsCssCsq<9>CsYC.>CC<21>\
  540. >  >sCs<20>ECsCCsCEs<19>CqsCssCsq<19>CsECsCEsE<19>qsqsssssq<19>ss>EssC\
  541. >  sqC<19>sECsCCqCC<6>cCC cyclerange=0/255
  542. >  savename=Graphic1.gif
  543. >  }
  544.  
  545. >GraphicSpecial_2   { ; System_Support@Technologist.com
  546. >                     ; Created December 05, 1997
  547. >                     ; for fractint .par contest
  548. >                     ; 
  549. >  reset=1960 type=formula formulafile=contest4.frm
  550. >  formulaname=contest4 passes=t
  551. >  center-mag=-1.53135373464412500/+0.00003353149660534/833.2516/1.14\
  552. >  45/96.35/-6.599 params=0/0 float=y maxiter=180 inside=bof61
  553. >  outside=atan
  554. >  >colors=CCCeCe<6>sCs<20>ECsCCsCEs<16>CksCmsCmr<78>rWCsWCsUC<7>sECsCC\
  555. >  qCC<3>iCChBChBC<93>W0WECE<12>cCc
  556. >  savename=Graphic2.gif
  557. >  }
  558.  
  559. >GraphicSpecial_3   { ; System_Support@Technologist.com
  560. >                     ; Created December 05, 1997
  561. >                     ; for fractint .par contest
  562. >                     ; 
  563. >  reset=1960 type=formula formulafile=contest4.frm
  564. >  formulaname=contest4 passes=t
  565. >  center-mag=-1.53276508133788400/+0.00002739792896463/713.2634/1.14\
  566. >  45/96.35/-6.599 params=0/0 float=y maxiter=250 inside=bof61
  567. >  outside=summ
  568. >  >colors=000<7>000000200<29>zKU<30>211000000<14>000010030<29>0z0<30>>\
  569. >  020000000<14>000110330<29>zz0<30>220000000<21>000
  570. >  savename=Graphic3.gif
  571. >  }
  572.  
  573. - -
  574. - ------------------------------------------------------------
  575. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  576. >Post Message:   fractint@xmission.com
  577. >Get Commands:   majordomo@xmission.com "help"
  578. >Administrator:  twegner@phoenix.net
  579. >Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  580.  
  581.  
  582.  
  583. - -
  584. - ------------------------------------------------------------
  585. Thanks for using Fractint, The Fractals and Fractint Discussion List
  586. Post Message:   fractint@xmission.com
  587. Get Commands:   majordomo@xmission.com "help"
  588. Administrator:  twegner@phoenix.net
  589. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  590.  
  591. ------------------------------
  592.  
  593. Date: Mon, 5 Jan 1998 22:38:37 EST
  594. From: T R Moe <TRMoe@aol.com>
  595. Subject: (fractint) sexist fractals
  596.  
  597. Does this constitute a sexist fractal?
  598. trm-219            { ; Victoria's Secret?
  599.   reset=1960 type=formula formulafile=list.frm formulaname=trm-011
  600.  
  601.   center-mag=-0.444229/-0.0375587/1.041667/1/90 float=y inside=bof60
  602.   decomp=256
  603.   colors=0500cQ<20>0C20A00A0<15>050bVM<2>bVMbVMcXP<3>hfcjigjig<15>f`Ve`Ue_\
  604.   TdZSdZT<10>e`Ve`Ve`WeaX<13>llkmmmmmm<11>jgdjgdjfciebifbifb<3>ifcifcifb<5\
  605.   9>kbR0500B00H0090050000000050<34>1H1171161030<16>0mZ<6>0dR
  606.  
  607. trm-011{
  608.     z=c=pixel:
  609.     z=cotanh(z)*conj(z)*tan(z)*1/z+c
  610.     |z|<=4
  611.     }
  612.  
  613. - -
  614. - ------------------------------------------------------------
  615. Thanks for using Fractint, The Fractals and Fractint Discussion List
  616. Post Message:   fractint@xmission.com
  617. Get Commands:   majordomo@xmission.com "help"
  618. Administrator:  twegner@phoenix.net
  619. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  620.  
  621. ------------------------------
  622.  
  623. Date: Mon, 05 Jan 1998 21:53:57 -0600
  624. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  625. Subject: Re: (fractint) Phractal update
  626.  
  627. Jack Valero wrote:
  628. >
  629. > Yep, our pages have changed too.
  630. > A few new images, ....
  631. >
  632.  
  633. How many years between the combo-photos of jm.gif and the photo of
  634. mj.jpg???   ;-}
  635.  
  636. >
  637. > The gallery is now at:
  638. > http://www.globalserve.net/~jval/phractal.html
  639. >
  640.  
  641. After a few webpages, I cheated and just looked at the images from your
  642. root directory:
  643.                 http://www.globalserve.net/~jval/fractals/
  644.  
  645. >
  646. > Oh, and I've slightly modified the old pages. If anyone
  647. > using a wide browser screen experiences problems, please
  648. > let me know.
  649. >
  650.  
  651. Didn't notice anything unusual in appearance, just a few minor text
  652. related items (grammar and spelling).  Also, the "Top of Page" link on
  653. the bottom of http://www.globalserve.net/~jval/isitart.htm was not
  654. displaying (you had the color set as white on a white background).  A
  655. couple of other little things, but the look and feel of the website is
  656. nice!!
  657.  
  658. Later,
  659. P.N.L.
  660.  
  661. - -
  662. - ------------------------------------------------------------
  663. Thanks for using Fractint, The Fractals and Fractint Discussion List
  664. Post Message:   fractint@xmission.com
  665. Get Commands:   majordomo@xmission.com "help"
  666. Administrator:  twegner@phoenix.net
  667. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  668.  
  669. ------------------------------
  670.  
  671. Date: Mon, 05 Jan 1998 20:00:33 -0800
  672. From: Mark Christenson <mchris@hooked.net>
  673. Subject: (fractint) Re: formulae
  674.  
  675. Damien,
  676.  
  677. At 10:56 AM 1/5/98 -0600, you wrote:
  678. >...
  679. >It's a little cumbersome,
  680. >but can be done.
  681.  
  682. Thanks!  Comments and questions (on your site and other 
  683. things) to follow later, just wanted to ack your response.
  684.  
  685. Bud
  686.  
  687.  
  688. - -
  689. - ------------------------------------------------------------
  690. Thanks for using Fractint, The Fractals and Fractint Discussion List
  691. Post Message:   fractint@xmission.com
  692. Get Commands:   majordomo@xmission.com "help"
  693. Administrator:  twegner@phoenix.net
  694. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  695.  
  696. ------------------------------
  697.  
  698. Date: Mon, 5 Jan 1998 20:57:14 -0800
  699. From: "Jay Hill" <ehill1@san.rr.com>
  700. Subject: Re: (fractint) terrible oversight
  701.  
  702. He was included.  About 40% down the web page.
  703. He is in the list of artists
  704.  
  705. >> Artists are, in no particular order, Adam Alexander, Alice M Kelley, Angela
  706. "Wizzle" Wilczynski, Bob Margolis, Brian
  707. >> E. Jones, Brock Kevin Nambo, Cesare Giuanuzzi, Charles F Crocker, Cindy
  708. Mitchell, David E. Shanholtzer, Damien
  709. >> M. Jones, Dave Kolasa, David D. Singer, Doug Owen, Ellen Martin, Eric Mull,
  710. Esther Hill, Gedeon Peteri, Geoff
  711. >> Stanton, Guy Marson, The Graphic Specialist, 
  712.  
  713.  
  714. But thanks for watching!
  715. Jay
  716.  
  717. - ----------
  718. > From: T R Moe <TRMoe@aol.com>
  719. > To: fractint@xmission.com
  720. > Subject: (fractint) terrible oversight
  721. > Date: Monday, January 05, 1998 7:18 PM
  722. > attention contest administrators!
  723. > While cleaning up my e-mail archives I discovered the following set of pars
  724. > which seem to have been submitted on time but never showed up in the contest
  725. > displays or among the par file collections made available.  I know all this
  726. > went on rather quickly and without much organization but I can't help but
  727. > think that the graphic specialist couldn't feel too good about being ignored.
  728. > I'm sorry I didn't find this soon enough to get this person included,but I'm
  729. > not that organized either,
  730. > >  Subj:     (fractint) Contest Pars
  731. > >Date:    97-12-05 08:33:42 EST
  732. > >From:    System_Support@Technologist.com (Graphics Specialist)
  733. > >Sender:    owner-fractint@lists.xmission.com
  734. > >Reply-to:    fractint@lists.xmission.com
  735. > >To:    fractint@mail.xmission.com
  736. > >Here are my contest pars.  They should work o.k. but if not let me
  737. > >know.  Thanks.
  738. > .
  739. > >GraphicSpecial_1   { ; System_Support@Technologist.com
  740. > >                     ; Created December 05, 1997
  741. > >                     ; for fractint .par contest
  742. > >                     ; 
  743.  
  744.  
  745. - -
  746. - ------------------------------------------------------------
  747. Thanks for using Fractint, The Fractals and Fractint Discussion List
  748. Post Message:   fractint@xmission.com
  749. Get Commands:   majordomo@xmission.com "help"
  750. Administrator:  twegner@phoenix.net
  751. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  752.  
  753. ------------------------------
  754.  
  755. Date: Mon, 05 Jan 1998 23:07:17 -0600
  756. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  757. Subject: Re: (fractint) terrible oversight
  758.  
  759. T R Moe wrote:
  760. >
  761. > attention contest administrators!
  762. > While cleaning up my e-mail archives I discovered the following
  763. > set of pars which seem to have been submitted on time but never
  764. > showed up in the contest displays or among the par file collections
  765. > made available.
  766. >
  767.  
  768. The thunbnail images were available from Jay's website to view for this
  769. person, but the PARs never got included into the Contest Kit zip file. 
  770. One of those images got a single vote though.
  771.  
  772. >
  773. > I know all this went on rather quickly and without much organization
  774. > but I can't help but think that the graphic specialist couldn't feel
  775. > too good about being ignored.
  776. >
  777.  
  778. That's probably why no further postings have been seen from that email
  779. address.
  780.  
  781. P.N.L.
  782.  
  783. - -
  784. - ------------------------------------------------------------
  785. Thanks for using Fractint, The Fractals and Fractint Discussion List
  786. Post Message:   fractint@xmission.com
  787. Get Commands:   majordomo@xmission.com "help"
  788. Administrator:  twegner@phoenix.net
  789. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  790.  
  791. ------------------------------
  792.  
  793. Date: Mon, 5 Jan 1998 21:11:16 -0800
  794. From: "Jay Hill" <ehill1@san.rr.com>
  795. Subject: Re: (fractint) sexist fractals
  796.  
  797. Hi Thomas,
  798.  
  799. Is this a bathing suit? 
  800.  
  801. There is a brace missing from the last line of the par.
  802.  
  803. Here is repost as long as I'm at it, for wizzle.  :-)
  804. Jay
  805.  
  806. - ----------
  807. > From: T R Moe <TRMoe@aol.com>
  808. > To: fractint@xmission.com
  809. > Subject: (fractint) sexist fractals
  810. > Date: Monday, January 05, 1998 7:38 PM
  811. > Does this constitute a sexist fractal?
  812. trm-219            { ; Victoria's Secret?
  813.   reset=1960 type=formula formulafile=list.frm formulaname=trm-011
  814.   center-mag=-0.444229/-0.0375587/1.041667/1/90 float=y inside=bof60
  815.   decomp=256
  816.   colors=0500cQ<20>0C20A00A0<15>050bVM<2>bVMbVMcXP<3>hfcjigjig<15>f`Ve`Ue_\
  817.   TdZSdZT<10>e`Ve`Ve`WeaX<13>llkmmmmmm<11>jgdjgdjfciebifbifb<3>ifcifcifb<5\
  818.   9>kbR0500B00H0090050000000050<34>1H1171161030<16>0mZ<6>0dR
  819. }
  820.  
  821. frm:trm-011{
  822.     z=c=pixel:
  823.     z=cotanh(z)*conj(z)*tan(z)*1/z+c
  824.     |z|<=4
  825.     }
  826.  
  827.  
  828. - -
  829. - ------------------------------------------------------------
  830. Thanks for using Fractint, The Fractals and Fractint Discussion List
  831. Post Message:   fractint@xmission.com
  832. Get Commands:   majordomo@xmission.com "help"
  833. Administrator:  twegner@phoenix.net
  834. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  835.  
  836. ------------------------------
  837.  
  838. Date: Tue, 6 Jan 1998 00:29:31 EST
  839. From: M1sh3l <M1sh3l@aol.com>
  840. Subject: Re: (fractint) Zipping
  841.  
  842. Angela:My name is Michelle,and yes,I admit it,I am a NEWBIE.i only recenly got
  843. fractint and I'm still learning how it works.I did ,however, catch your
  844. message about needing a zipping program for windows 95.I have the 6.3
  845. shareware version of winzip on disk if you still need it.it's really easy to
  846. work with, and I can e-mail you and attatch the program to that.I am at
  847. m1sh3l@aol.com    (let me know if you want the program)  thanks for not making
  848. fun of my Newbie-ness.Hey-we all gotta start somewhere,eh? 
  849.  
  850. - -
  851. - ------------------------------------------------------------
  852. Thanks for using Fractint, The Fractals and Fractint Discussion List
  853. Post Message:   fractint@xmission.com
  854. Get Commands:   majordomo@xmission.com "help"
  855. Administrator:  twegner@phoenix.net
  856. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  857.  
  858. ------------------------------
  859.  
  860. Date: Mon, 5 Jan 1998 21:28:58 -0800
  861. From: "Steve Jenks" <SGJenks@foxcomm.net>
  862. Subject: Re: (fractint) entering formulas
  863.  
  864. >This is the par file, exactly as saved in notepad. No spaces apart from
  865. >those
  866. >to the left of reset.
  867. >Saved in fractint/pars
  868. >
  869. >elegance           { ; by Angela 1997 using deeps7.map
  870.  
  871. The next line is where you are telling Fractint to find the formula, =
  872. first by filename, then by formulaname within the file.  So.... you =
  873. should be storing your par as bessels.par
  874.  
  875. >  reset=3D1950 type=3Dformula formulafile=3Dbessels.frm =
  876. formulaname=3DBESSEL-2
  877. >  center-mag=3D-8.88178e-016/6.66134e-016/1.041667/1/90 float=3Dy
  878. >  inside=3Dbof60 periodicity=3D0
  879. >  =
  880. colors=3D00000S<6>000<15>zzm<15>0000700F0<13>0zm<13>080040000<15>z0z<14>4=
  881. 0\
  882. >  =
  883. 400K<15>zzz<14>44N<2>4A45D5<13>QvjSzmRwj<14>C00<15>zzm<15>0CC<12>0zz<15>\=
  884.  
  885. >  000<15>00z<7>00W
  886. >  }
  887. >
  888. >
  889. >THis is the frm file, saved in notepad via edit, in order to retain
  890. >the frm extension. Notepad will only save as txt.
  891.  
  892. This is where you went wrong. I cut and pasted this into files as you =
  893. described, but saved this as bessels.frm
  894.  
  895. >Saved as BESSELL-2.FRM in fractint
  896. >
  897. >BESSEL-2 {
  898. >      c =3D z =3D pixel:
  899. >         z =3D cos(z) / z + pixel,
  900. >      |z| <=3D 100
  901. >}
  902. >
  903. >Am I right so far?
  904. >I still get an oops message, and can't parse that formula
  905. >
  906. >Is there a way for the pars to load automatically, or does one always =
  907. type
  908. >them in manually
  909.  
  910. Don't type! Cut and paste!
  911.  
  912.  
  913.  
  914.  
  915. - -
  916. - ------------------------------------------------------------
  917. Thanks for using Fractint, The Fractals and Fractint Discussion List
  918. Post Message:   fractint@xmission.com
  919. Get Commands:   majordomo@xmission.com "help"
  920. Administrator:  twegner@phoenix.net
  921. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  922.  
  923. ------------------------------
  924.  
  925. Date: Mon, 5 Jan 1998 21:34:10 -0800
  926. From: "Jay Hill" <ehill1@san.rr.com>
  927. Subject: Re: (fractint) terrible oversight
  928.  
  929. It is called GSpecial.par.  You sure it is not there?
  930.  
  931. I just downloaded http://www.geocities.com/CapeCanaveral/Lab/3825/Contestk.zip
  932. It is there.
  933.  
  934. Jay
  935.  
  936.  
  937. - ----------
  938. > From: Paul N. Lee <Paul.N.Lee@Worldnet.att.net>
  939. > To: fractint@lists.xmission.com
  940. > Subject: Re: (fractint) terrible oversight
  941. > Date: Monday, January 05, 1998 9:07 PM
  942. > T R Moe wrote:
  943. > >
  944. > > attention contest administrators!
  945. > > While cleaning up my e-mail archives I discovered the following
  946. > > set of pars which seem to have been submitted on time but never
  947. > > showed up in the contest displays or among the par file collections
  948. > > made available.
  949. > >
  950. > The thunbnail images were available from Jay's website to view for this
  951. > person, but the PARs never got included into the Contest Kit zip file. 
  952. > One of those images got a single vote though.
  953. > >
  954. > > I know all this went on rather quickly and without much organization
  955. > > but I can't help but think that the graphic specialist couldn't feel
  956. > > too good about being ignored.
  957. > >
  958. > That's probably why no further postings have been seen from that email
  959. > address.
  960. > P.N.L.
  961.  
  962.  
  963. - -
  964. - ------------------------------------------------------------
  965. Thanks for using Fractint, The Fractals and Fractint Discussion List
  966. Post Message:   fractint@xmission.com
  967. Get Commands:   majordomo@xmission.com "help"
  968. Administrator:  twegner@phoenix.net
  969. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  970.  
  971. ------------------------------
  972.  
  973. Date: Tue, 06 Jan 1998 00:19:26 -0600
  974. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  975. Subject: Re: (fractint) terrible oversight
  976.  
  977. Jay Hill wrote:
  978. >
  979. > It is called GSpecial.par.  You sure it is not there?
  980. >
  981. > I just downloaded http://www.geocities.com/CapeCanaveral/Lab/3825/Contestk.zip
  982. > It is there.
  983. >
  984.  
  985. The copy that I last downloaded only had 48 PARs.  The GSpecial.par was
  986. not in my Contest.zip file.  Maybe that was the last one added and I
  987. downloaded before the final update.
  988.  
  989. But I do remember seeing the images on the Contest webpage along with
  990. the PAR link for the email posting.  Others probably had a full version,
  991. due to the fact of a vote being counted.
  992.  
  993. Oh well, that was way last year, too much time has gone by (and too many
  994. parties).
  995.  
  996. Later,
  997. P.N.L.
  998.  
  999. - -
  1000. - ------------------------------------------------------------
  1001. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1002. Post Message:   fractint@xmission.com
  1003. Get Commands:   majordomo@xmission.com "help"
  1004. Administrator:  twegner@phoenix.net
  1005. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1006.  
  1007. ------------------------------
  1008.  
  1009. Date: Mon, 5 Jan 1998 23:35:54 -0800
  1010. From: "Jay Hill" <ehill1@san.rr.com>
  1011. Subject: Re: (fractint) terrible oversight
  1012.  
  1013. Hi guys and gals,
  1014.  
  1015. Sorry to be-labor this, yes GS was near the last to post 
  1016. but not the last. GS posted this:
  1017.  
  1018. Message-ID: <3487EBB1.99E@Technologist.com>
  1019. Date: Fri, 05 Dec 1997 05:55:29 -0600
  1020. From: Graphics Specialist <System_Support@Technologist.com>
  1021. Organization: Artist's Network
  1022. Subject: (fractint) Contest Pars
  1023.  
  1024. The dates I have on my machine for these files are, sorted by date
  1025.  
  1026. CONTESTK.ZIP     86990 12/26/97 17:27
  1027. TOPTEN97.HTM      4559 12/26/97 17:25
  1028. TOPTHREE.TXT      1464 12/26/97 17:17
  1029. [...]
  1030. JOLIVER .PAR      4563 12/06/97 00:17
  1031. JOLIVER2.GIF      2690 12/05/97 23:39
  1032. GRAPHIC3.GIF     11108 12/05/97 23:24
  1033. GRAPHIC2.GIF     20623 12/05/97 23:24
  1034. GRAPHIC1.GIF     15530 12/05/97 23:24
  1035. DMJ-03  .GIF     13439 12/05/97 23:24
  1036. DMJ-02  .GIF     22122 12/05/97 23:24
  1037. DMJ-01  .GIF      6413 12/05/97 23:24
  1038. DMJONES .PAR      3246 12/05/97 23:02
  1039. GSPECIAL.PAR      2426 12/05/97 22:55
  1040.  
  1041. So we have D M Jones (a repost but I don't think I saw the original), 
  1042. 7 minutes after GS and these: J Oliver (repost), K Mitchell (repost), 
  1043. S Gallet (repost) after GS.
  1044.  
  1045. My ftp log shows this
  1046. 97.12.06 00:13 B C:\jay\transfer\Contest\GSpecial.par --> home.san.rr.com
  1047. /Contest GSpecial.par
  1048.  
  1049. Finally, this file http://home.san.rr.com/jayrhill/Contest/CONTEST.ZIP
  1050. is dated 971206 08:21 according to ftp, and it contains the GS par file.
  1051.  
  1052. So, his material must have appeared about Dec 6.
  1053.  
  1054. BTW, I will make one more version of the Kit with image names 
  1055. under the images.  That should make it nicer. Then it can rest 
  1056. at Spanky at last.  So if there are any other remarks...please write.
  1057.  
  1058. Also, I would like to quote a few of the early postings by Nuke 
  1059. and a few others which were the spark to start the contest.  Any
  1060. objections?
  1061.  
  1062. At your service,
  1063. Jay
  1064.  
  1065. - ----------
  1066. > From: Paul N. Lee <Paul.N.Lee@Worldnet.att.net>
  1067. > To: fractint@lists.xmission.com
  1068. > Subject: Re: (fractint) terrible oversight
  1069. > Date: Monday, January 05, 1998 10:19 PM
  1070. > Jay Hill wrote:
  1071. > >
  1072. > > It is called GSpecial.par.  You sure it is not there?
  1073. > >
  1074. > > I just downloaded
  1075. http://www.geocities.com/CapeCanaveral/Lab/3825/Contestk.zip
  1076. > > It is there.
  1077. > >
  1078. > The copy that I last downloaded only had 48 PARs.  The GSpecial.par was
  1079. > not in my Contest.zip file.  Maybe that was the last one added and I
  1080. > downloaded before the final update.
  1081. > But I do remember seeing the images on the Contest webpage along with
  1082. > the PAR link for the email posting.  Others probably had a full version,
  1083. > due to the fact of a vote being counted.
  1084. > Oh well, that was way last year, too much time has gone by (and too many
  1085. > parties).
  1086. > Later,
  1087. > P.N.L.
  1088.  
  1089.  
  1090. - -
  1091. - ------------------------------------------------------------
  1092. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1093. Post Message:   fractint@xmission.com
  1094. Get Commands:   majordomo@xmission.com "help"
  1095. Administrator:  twegner@phoenix.net
  1096. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1097.  
  1098. ------------------------------
  1099.  
  1100. Date: Mon, 5 Jan 1998 23:48:52 -0800
  1101. From: "Jay Hill" <ehill1@san.rr.com>
  1102. Subject: Re: (fractint) Let the Judging and voting begin...
  1103.  
  1104. Paul, 
  1105.  
  1106. One last shot.  Then silence....
  1107. Here is the post signaling the end of voting, about
  1108. one hour after GS posted at 12/05/97 22:55.
  1109. I uploaded the zip files 14 minutes later.
  1110.  
  1111. - ----------
  1112. > From: Ester <ehill1@san.rr.com>
  1113. > To: fractint@lists.xmission.com
  1114. > Subject: (fractint) Let the Judging and voting begin...
  1115. > Date: Saturday, December 06, 1997 12:07 AM
  1116. > Hello Fractint Artists,
  1117. > The contest is now over. I'm uploading the 'end of 
  1118. > contest' web page. 
  1119. > Please check it for errors. 
  1120. > It has been real.  It has been fun.  
  1121. > But it has not been real fun.
  1122. > NOT!
  1123. > It has been very good.  It has been great!
  1124. > Visit the page at
  1125. > http://home.san.rr.com/jayrhill/
  1126. > Jay
  1127. > -
  1128. > ------------------------------------------------------------
  1129. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  1130. > Post Message:   fractint@xmission.com
  1131. > Get Commands:   majordomo@xmission.com "help"
  1132. > Administrator:  twegner@phoenix.net
  1133. > Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1134.  
  1135. - -
  1136. - ------------------------------------------------------------
  1137. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1138. Post Message:   fractint@xmission.com
  1139. Get Commands:   majordomo@xmission.com "help"
  1140. Administrator:  twegner@phoenix.net
  1141. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1142.  
  1143. ------------------------------
  1144.  
  1145. Date: Mon, 5 Jan 1998 22:06:04 +1100
  1146. From: "B Michie" <michie@acenet.com.au>
  1147. Subject: Re: (fractint) Happy New Year!
  1148.  
  1149. Dick, you write about separating the pars and the frms, and putting them
  1150. into appropriate directories. Please can you answer my question?
  1151. I am new to Fractint, but really keen to try to create some fractals from
  1152. the frms and pars other than the standard ones available in fractint. I
  1153. havae so far copied frms into fractint itself, and pars into a subdirectory
  1154. of fractint, but I have no idea how to pull them together to create an
  1155. image. I can call up the frm file, and then get a screen asking for
  1156. parameters. I don't know what to put into what box, and I thought there was
  1157. some way of entering an entire par file into fractint, but so far I can't
  1158. work it out. ANy words of wisdom will be much appreciated.
  1159. Beth
  1160.  
  1161.  
  1162. Plant real trees. Don't give me rubbish like, "I'd like
  1163.  a tall tree, but it mustn't grow above the gutters!
  1164. Oh- and the colour of the flowers mustn't clash
  1165. with the brickwork -- Spare me !@#$%^&***!
  1166.  
  1167. - ----------
  1168. > From: Dick Amerman <ramerman@erols.com>
  1169. > To: fractint@lists.xmission.com
  1170. > Subject: Re: (fractint) Happy New Year!
  1171. > Date: Friday, January 02, 1998 10:15 AM
  1172. > Les St Clair wrote:........
  1173. > > I'm going to contact CompuServe help desk to see if there's anything
  1174. that
  1175. > > can be done.
  1176. > > I hate to think of people saving my par files only to find that they
  1177. don't
  1178. > > work (yet again!) and probably thinking "what a jerk!!"
  1179. > >
  1180. > > The thing is that they alway come back to me looking OK. But when I
  1181. > > downoladed the archive of messages from
  1182. > > <http://www.xmission.com/pub/lists/fractint/> there were all those
  1183. horrid
  1184. > > <3D>'s and spurious <=>'s...arrrgh!!
  1185. > ...................
  1186. > Hi Les -- I've been following your trials and tribulations and wonder
  1187. what it's
  1188. > all about.  I don't think the problem is entirely at your end.  I get
  1189. your pars
  1190. > and run them with no editing and no problem.  I'm using Netscape's
  1191. Communicator
  1192. > 4.04, copy directly into the Programmer's File Editor, separate the
  1193. .frm's from
  1194. > the .par's, and put 'em in appropriate Fractint subdirectories.  My ISP
  1195. is an
  1196. > East Coast USA outfit called Erols, but I can't tell you what mail
  1197. software
  1198. > they use.  I've had very little problem with anybody's .par's and .frm's,
  1199. > especially since going to the PFE (thank's for the lead, Jay).
  1200. > Dick Amerman
  1201. > -
  1202. > ------------------------------------------------------------
  1203. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  1204. > Post Message:   fractint@xmission.com
  1205. > Get Commands:   majordomo@xmission.com "help"
  1206. > Administrator:  twegner@phoenix.net
  1207. > Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1208.  
  1209. - -
  1210. - ------------------------------------------------------------
  1211. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1212. Post Message:   fractint@xmission.com
  1213. Get Commands:   majordomo@xmission.com "help"
  1214. Administrator:  twegner@phoenix.net
  1215. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1216.  
  1217. ------------------------------
  1218.  
  1219. End of fractint-digest V1 #61
  1220. *****************************
  1221.  
  1222.