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

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #60
  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        Monday, January 5 1998        Volume 01 : Number 060
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Sat, 3 Jan 1998 23:47:39 -0700 (MST)
  18. From: Kerry Mitchell <lkmitch@primenet.com>
  19. Subject: (fractint) Updated fractal gallery
  20.  
  21. Instead of getting involved in the new age thread, I was off from work for
  22. 2 weeks making my own statement of fractal/new age philosophy.  See if you
  23. can find in on:
  24.  
  25. http://www.primenet.com/~lkmitch/
  26.  
  27. Enjoy!
  28. - -------------------------------------------------------------------------------
  29. Kerry Mitchell
  30. lkmitch@primenet.com
  31. - -------------------------------------------------------------------------------
  32.  
  33.  
  34. - -
  35. - ------------------------------------------------------------
  36. Thanks for using Fractint, The Fractals and Fractint Discussion List
  37. Post Message:   fractint@xmission.com
  38. Get Commands:   majordomo@xmission.com "help"
  39. Administrator:  twegner@phoenix.net
  40. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  41.  
  42. ------------------------------
  43.  
  44. Date: Sun, 4 Jan 1998 04:11:18 -0600
  45. From: "Debora A Henderson" <KIVRYNH@prodigy.net>
  46. Subject: Re: (fractint) Wrong slant on address
  47.  
  48. In a message dated 98-01-02 18:30:51 EST, you write:
  49. << Ron,
  50.   - http:\\members.aol.com\RBarn0001>>
  51.  
  52. Hey, don't sweat it.  I didn't pay the address any attention when I "cut and
  53. paste" it into the address line.  I hit go and it went.  Good page, too,
  54. BTW.
  55.  
  56.  
  57. - -
  58. - ------------------------------------------------------------
  59. Thanks for using Fractint, The Fractals and Fractint Discussion List
  60. Post Message:   fractint@xmission.com
  61. Get Commands:   majordomo@xmission.com "help"
  62. Administrator:  twegner@phoenix.net
  63. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  64.  
  65. ------------------------------
  66.  
  67. Date: Sun, 4 Jan 1998 07:00:52 -0500
  68. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  69. Subject: (fractint) PokornyConesJulia
  70.  
  71. Hi All,
  72.  
  73.   Yet another formula and par from Paul Carlson!
  74.  
  75.         - Sylvie
  76.  
  77. - --------------------------------------------------------
  78. Here's another formula quite similar to the 3D_Phoenix_Spirals
  79. formula I sent some time ago, the similarity being that both
  80. formulas use a variation of the ATAN method.  I've added a
  81. couple of PAR files that produce images that I like.  Don't
  82. be put off by the maxiter=3D5000, they both execute quite fast.
  83.  
  84.  
  85. PokornyConesJulia {; Copyright (c) Paul W. Carlson, 1997
  86.     ;****************************************************
  87.     ; Always use floating point math and outside=3Dsumm.
  88.     ;
  89.     ; Parameters:
  90.     ;   p1       =3D coordinates of the Julia set
  91.     ;   real(p2) =3D number of color ranges
  92.     ;   imag(p2) =3D number of colors in each color range
  93.     ;
  94.     ; Note that the equation variable is w, not z.  Always
  95.     ; initialize z to zero.
  96.     ;****************************************************
  97.     prev_w =3D pixel
  98.     c =3D p1
  99.     z =3D 0
  100.     bailout =3D 0
  101.     iter =3D 0
  102.     range_num =3D 0
  103.     ;****************************************************
  104.     ; In the accompanying par files, pkcones1 & 2.par,
  105.     ; we have 2 color ranges with 125 colors in each range
  106.     ; for a total of 250 colors. The first range starts at
  107.     ; color 1.  Pixels will use color 255 when w < 1.0.
  108.     ; Other values can be used here as long as the product
  109.     ; of num_ranges times colors_in_range is less than 255.
  110.     ;****************************************************
  111.     num_ranges =3D real(p2)
  112.     colors_in_range =3D imag(p2):
  113.     ;****************************************************
  114.     ; The equation being iterated.  This is the
  115.     ; Pokorny equation.
  116.     ;****************************************************
  117.     w =3D 1 / (prev_w * prev_w + c)
  118.     ;****************************************************
  119.     ; If |w| exceeds a value of 4.0, set z to the index
  120.     ; into the colormap and set the bailout flag.
  121.     ;****************************************************
  122.     IF (|w| > 4)
  123.     ;***************************************************
  124.     ; Compute the angle between the last 2 orbit points
  125.     ;***************************************************
  126.     delta_i =3D imag(w) - imag(prev_w)
  127.     delta_r =3D real(w) - real(prev_w)
  128.     angle =3D abs(atan(delta_i / delta_r))
  129.     IF (delta_r < 0)
  130.         angle =3D pi - angle
  131.     ENDIF
  132.     bailout =3D 1
  133.     range_index =3D colors_in_range * angle / pi
  134.     z =3D range_index + range_num * colors_in_range + 1
  135.     ENDIF
  136.     prev_w =3D w
  137.     ;****************************************************
  138.     ; Cycle through the range numbers (0 thru num_ranges - 1)
  139.     ; With two color ranges, even iterations use color
  140.     ; range 0, odd iterations use color range 1.
  141.     ;****************************************************
  142.     range_num =3D range_num + 1
  143.     IF (range_num =3D=3D num_ranges)
  144.         range_num =3D 0
  145.     ENDIF
  146.     ;****************************************************
  147.     ; Since we are using outside=3Dsumm, we have to subtract
  148.     ; the number of iterations from z.
  149.     ;****************************************************
  150.     iter =3D iter + 1
  151.     z =3D z - iter
  152.     ;****************************************************
  153.     ; Finally, we test for bailout
  154.     ;****************************************************
  155.     bailout =3D=3D 0
  156. }
  157.  
  158.  
  159. pkcones1           { ; Copyright (c) Paul W. Carlson, 1997
  160.   reset=3D1960 type=3Dformula formulafile=3Dpkycones.frm
  161.   formulaname=3DPokornyConesJulia passes=3D1
  162.   corners=3D0.32024997/1.1275833/-0.28875/0.31675
  163.   params=3D-1.721302083333/0.010600585938/2/125
  164.   float=3Dy maxiter=3D5000 inside=3D0 outside=3Dsumm
  165.   colors=3D000G0G<123>zVz0GG<123>Vzz000<3>000
  166.   }
  167.  
  168. pkcones2           { ; Copyright (c) Paul W. Carlson, 1997
  169.   reset=3D1960 type=3Dformula formulafile=3Dpkycones.frm
  170.   formulaname=3DPokornyConesJulia passes=3D1
  171.   corners=3D0.55438357/0.91451157/0.2032067/0.4733027
  172.   params=3D-1.550794271/0.023072917/2/125
  173.   float=3Dy maxiter=3D5000 inside=3D0 outside=3Dsumm
  174.   colors=3D000G0G<123>zVz0GG<123>Vzz000<3>000
  175.   }
  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: Sun, 4 Jan 1998 09:41:58 -0500
  190. From: Les St Clair <Les_StClair@compuserve.com>
  191. Subject: (fractint) Long Time Coming!
  192.  
  193. Hi All,
  194.  
  195. I've been making fractals for five years and on the internet for two. So
  196. why no Fractal web page?
  197. I dunno!
  198.  
  199. Anyway, it's there now!
  200.  
  201. Find it at:  http://ourworld.compuserve.com/homepages/Les_StClair/
  202.  
  203. There's two galleries of Fractint images, plus all my par files & formula=
  204. s
  205. to download.
  206. There's also galleries of Flarium24 and Fractal Elite images (am I allowe=
  207. d
  208. to mention them here?)
  209. Not only that, but a Fractal eXtreme movie too! (which you can see "live"=
  210.  
  211. on your browser if you're using Netscape Navigator 3 or Internet Explorer=
  212.  
  213. 4).
  214.  
  215. Have a nice long phone call!
  216.  
  217. cheers, Les
  218.  
  219. - -
  220. - ------------------------------------------------------------
  221. Thanks for using Fractint, The Fractals and Fractint Discussion List
  222. Post Message:   fractint@xmission.com
  223. Get Commands:   majordomo@xmission.com "help"
  224. Administrator:  twegner@phoenix.net
  225. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  226.  
  227. ------------------------------
  228.  
  229. Date: Sun, 04 Jan 1998 10:08:51 -0500
  230. From: Gedeon Peteri <gedeon@InfoAve.Net>
  231. Subject: Re: (fractint) 3D Phoenix Spirals
  232.  
  233. Sylvie Gallet wrote:
  234.  
  235. > .....3D_Phoenix_Spirals formula I sent some time ago, .....
  236.  
  237. For some reason I either lost or did not receive this.  May I ask that
  238. you post it again, or send it to me privately?  Thanks, Gedeon
  239.  
  240.  
  241. - -
  242. - ------------------------------------------------------------
  243. Thanks for using Fractint, The Fractals and Fractint Discussion List
  244. Post Message:   fractint@xmission.com
  245. Get Commands:   majordomo@xmission.com "help"
  246. Administrator:  twegner@phoenix.net
  247. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  248.  
  249. ------------------------------
  250.  
  251. Date: Sun, 4 Jan 1998 08:16:03 -0800
  252. From: "Jay Hill" <ehill1@san.rr.com>
  253. Subject: Re: (fractint) 3D Phoenix Spirals
  254.  
  255. Done
  256.  
  257.  
  258. - ----------
  259. > From: Gedeon Peteri <gedeon@InfoAve.Net>
  260. > To: fractint@lists.xmission.com
  261. > Subject: Re: (fractint) 3D Phoenix Spirals
  262. > Date: Sunday, January 04, 1998 7:08 AM
  263. > Sylvie Gallet wrote:
  264. > > .....3D_Phoenix_Spirals formula I sent some time ago, .....
  265. > For some reason I either lost or did not receive this.  May I ask that
  266. > you post it again, or send it to me privately?  Thanks, Gedeon
  267.  
  268.  
  269. - -
  270. - ------------------------------------------------------------
  271. Thanks for using Fractint, The Fractals and Fractint Discussion List
  272. Post Message:   fractint@xmission.com
  273. Get Commands:   majordomo@xmission.com "help"
  274. Administrator:  twegner@phoenix.net
  275. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  276.  
  277. ------------------------------
  278.  
  279. Date: Sun, 04 Jan 1998 10:22:25 -0600
  280. From: Janet Preslar <preslar@memphisonline.com>
  281. Subject: Re: (fractint) Long Time Coming!
  282.  
  283. Great gallery, Les!!
  284.  
  285. > Find it at:  http://ourworld.compuserve.com/homepages/Les_StClair/
  286.  
  287.  
  288. Janet
  289.  
  290.  
  291. - -
  292. - ------------------------------------------------------------
  293. Thanks for using Fractint, The Fractals and Fractint Discussion List
  294. Post Message:   fractint@xmission.com
  295. Get Commands:   majordomo@xmission.com "help"
  296. Administrator:  twegner@phoenix.net
  297. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  298.  
  299. ------------------------------
  300.  
  301. Date: Sun, 4 Jan 1998 08:40:47 -0800
  302. From: "Jim sellers" <sundog@medford.net>
  303. Subject: (fractint) Color Maps
  304.  
  305. Hi;  Can anyone steer me to some info on Color Maps ?
  306. I posted a message like this a week ago but my Server
  307. has been down and all my mail was lost.
  308. Thanks Jim Sellers
  309.  
  310.  
  311. - -
  312. - ------------------------------------------------------------
  313. Thanks for using Fractint, The Fractals and Fractint Discussion List
  314. Post Message:   fractint@xmission.com
  315. Get Commands:   majordomo@xmission.com "help"
  316. Administrator:  twegner@phoenix.net
  317. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  318.  
  319. ------------------------------
  320.  
  321. Date: Sun, 04 Jan 1998 09:06:28 -0800
  322. From: Wizzle <wizzle@cci-internet.com>
  323. Subject: Re: (fractint) Color Maps
  324.  
  325. Jim....
  326.  
  327. I'm not sure what you want to know about color maps....but Linda Allison
  328. has two excellent lessons on using and making them which I host at my web
  329. site....
  330.  
  331. http://wizzle.simplenet.com/fractals/fractalintro.htm
  332.  
  333. These lessons are easy to understand and full of examples. I liked them so
  334. much I asked Linda if I could host them so they would always be
  335. available......also take a quick look at my Fractint hints which gives the
  336. very basics of grabbing a color map from an existing image.  
  337.  
  338. Angela aka wizzle
  339.  
  340. ps.   you are welcome to download any of my gifs and use my color maps
  341.  
  342.  
  343. At 08:40 AM 1/4/98 -0800, you wrote:
  344. >Hi;  Can anyone steer me to some info on Color Maps ?
  345. >I posted a message like this a week ago but my Server
  346. >has been down and all my mail was lost.
  347. >Thanks Jim Sellers
  348. >
  349. >
  350. >-
  351. >------------------------------------------------------------
  352. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  353. >Post Message:   fractint@xmission.com
  354. >Get Commands:   majordomo@xmission.com "help"
  355. >Administrator:  twegner@phoenix.net
  356. >Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  357. >
  358. >
  359.  
  360. - -
  361. - ------------------------------------------------------------
  362. Thanks for using Fractint, The Fractals and Fractint Discussion List
  363. Post Message:   fractint@xmission.com
  364. Get Commands:   majordomo@xmission.com "help"
  365. Administrator:  twegner@phoenix.net
  366. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  367.  
  368. ------------------------------
  369.  
  370. Date: Sun, 04 Jan 1998 09:13:11 -0800
  371. From: Wizzle <wizzle@cci-internet.com>
  372. Subject: Re: (fractint) Long Time Coming!
  373.  
  374. Les....
  375.  
  376. Wonderful page...no wonder it took you two years!!! My first effort was
  377. really shabby in comparison.  I particularly liked the way you put the pars
  378. to download with the images.....no wondering what goes with what.  I also
  379. liked seeing your early efforts........you've come a long way baby!!! The
  380. page downloaded nicely, as well....but then Sunday morning is optimum
  381. download time. 
  382.  
  383. How do you like Flarium?? (did I say a bad word)???? 
  384.  
  385. Angela
  386.  
  387. At 09:41 AM 1/4/98 -0500, you wrote:
  388. >Hi All,
  389. >
  390. >I've been making fractals for five years and on the internet for two. So
  391. >why no Fractal web page?
  392. >I dunno!
  393. >
  394. >Anyway, it's there now!
  395. >
  396. >Find it at:  http://ourworld.compuserve.com/homepages/Les_StClair/
  397. >
  398. >There's two galleries of Fractint images, plus all my par files & formulas
  399. >to download.
  400. >There's also galleries of Flarium24 and Fractal Elite images (am I allowed
  401. >to mention them here?)
  402. >Not only that, but a Fractal eXtreme movie too! (which you can see "live"
  403. >on your browser if you're using Netscape Navigator 3 or Internet Explorer
  404. >4).
  405. >
  406. >Have a nice long phone call!
  407. >
  408. >cheers, Les
  409. >
  410. >-
  411. >------------------------------------------------------------
  412. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  413. >Post Message:   fractint@xmission.com
  414. >Get Commands:   majordomo@xmission.com "help"
  415. >Administrator:  twegner@phoenix.net
  416. >Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  417. >
  418. >
  419.  
  420. - -
  421. - ------------------------------------------------------------
  422. Thanks for using Fractint, The Fractals and Fractint Discussion List
  423. Post Message:   fractint@xmission.com
  424. Get Commands:   majordomo@xmission.com "help"
  425. Administrator:  twegner@phoenix.net
  426. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  427.  
  428. ------------------------------
  429.  
  430. Date: Sun, 04 Jan 1998 12:02:51 -0500
  431. From: Gedeon Peteri <gedeon@InfoAve.Net>
  432. Subject: Re: (fractint) Color Maps
  433.  
  434. To make Fractint color maps check out Ron Barnett's Makemap. Download at
  435.  
  436. http://members.aol.com/RBarn0001/index.htm
  437. There is another app called Mapmaker, by Jack Orman. Download at
  438. http://spanky.triumf.ca/www/fractint/jorman/jorman.html
  439. Gedeon
  440.  
  441. Jim sellers wrote:
  442.  
  443. > Hi;  Can anyone steer me to some info on Color Maps ?
  444.  
  445.  
  446.  
  447.  
  448. - -
  449. - ------------------------------------------------------------
  450. Thanks for using Fractint, The Fractals and Fractint Discussion List
  451. Post Message:   fractint@xmission.com
  452. Get Commands:   majordomo@xmission.com "help"
  453. Administrator:  twegner@phoenix.net
  454. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  455.  
  456. ------------------------------
  457.  
  458. Date: Sun, 04 Jan 1998 12:11:29 -0800
  459. From: Peter Jakubowicz <pfjakub@earthlink.net>
  460. Subject: Re: (fractint) Color Maps
  461.  
  462. At 08:40 AM 1/4/98 -0800, you wrote:
  463. >Hi;  Can anyone steer me to some info on Color Maps ?
  464.  
  465. I've very recently been using makemap, a neat freeware utility by Ron
  466. Barnett (thanks) and highly recommend it. It's really easy to use, even for
  467. an idiot like me. Available at http://members.aol.com/RBarn0001/index.html 
  468. Peter
  469.  
  470.  
  471. - -
  472. - ------------------------------------------------------------
  473. Thanks for using Fractint, The Fractals and Fractint Discussion List
  474. Post Message:   fractint@xmission.com
  475. Get Commands:   majordomo@xmission.com "help"
  476. Administrator:  twegner@phoenix.net
  477. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  478.  
  479. ------------------------------
  480.  
  481. Date: Sun, 04 Jan 1998 09:21:21 -0800
  482. From: Wizzle <wizzle@cci-internet.com>
  483. Subject: Re: (fractint) Color Maps
  484.  
  485. Gedeon...
  486.  
  487. What do those apps do that Fractint doesn't??? 
  488.  
  489. Angela
  490.  
  491. At 12:02 PM 1/4/98 -0500, you wrote:
  492. >To make Fractint color maps check out Ron Barnett's Makemap. Download at
  493. >
  494. >http://members.aol.com/RBarn0001/index.htm
  495. >There is another app called Mapmaker, by Jack Orman. Download at
  496. >http://spanky.triumf.ca/www/fractint/jorman/jorman.html
  497. >Gedeon
  498. >
  499. >Jim sellers wrote:
  500. >
  501. >> Hi;  Can anyone steer me to some info on Color Maps ?
  502. >
  503.  
  504.  
  505. - -
  506. - ------------------------------------------------------------
  507. Thanks for using Fractint, The Fractals and Fractint Discussion List
  508. Post Message:   fractint@xmission.com
  509. Get Commands:   majordomo@xmission.com "help"
  510. Administrator:  twegner@phoenix.net
  511. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  512.  
  513. ------------------------------
  514.  
  515. Date: Sun, 04 Jan 1998 12:15:03 -0800
  516. From: Peter Jakubowicz <pfjakub@earthlink.net>
  517. Subject: Re: (fractint) Color Maps
  518.  
  519. At 12:11 PM 1/4/98 -0800, you wrote:
  520. >At 08:40 AM 1/4/98 -0800, you wrote:
  521. >>Hi;  Can anyone steer me to some info on Color Maps ?
  522. >an idiot like me. Available at that sould have been 
  523. http://members.aol.com/RBarn0001/index.htm
  524. Idiot, me, like I said. 
  525. >Peter
  526.  
  527.  
  528.  
  529. - -
  530. - ------------------------------------------------------------
  531. Thanks for using Fractint, The Fractals and Fractint Discussion List
  532. Post Message:   fractint@xmission.com
  533. Get Commands:   majordomo@xmission.com "help"
  534. Administrator:  twegner@phoenix.net
  535. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  536.  
  537. ------------------------------
  538.  
  539. Date: Sun, 04 Jan 1998 13:00:11 -0500
  540. From: Gedeon Peteri <gedeon@InfoAve.Net>
  541. Subject: Re: (fractint) Color Maps
  542.  
  543. Angela,
  544. They may be helpful if you want to make maps from scratch, so to speak,
  545. without a particular fractal in mind.  In addition, Mapmaker can save (or
  546. convert) map files in the csv format, which can then be graphed and
  547. manipulated in interesting ways in Excel.
  548.  
  549. Wizzle wrote:
  550.  
  551. > What do those apps do that Fractint doesn't???
  552.  
  553.  
  554.  
  555.  
  556. - -
  557. - ------------------------------------------------------------
  558. Thanks for using Fractint, The Fractals and Fractint Discussion List
  559. Post Message:   fractint@xmission.com
  560. Get Commands:   majordomo@xmission.com "help"
  561. Administrator:  twegner@phoenix.net
  562. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  563.  
  564. ------------------------------
  565.  
  566. Date: Sun, 04 Jan 1998 10:18:33 -0800
  567. From: Wizzle <wizzle@cci-internet.com>
  568. Subject: Re: (fractint) Color Maps
  569.  
  570. Humpf....
  571.  
  572. I do that anyway with Fractint based on what I learned from Linda.  I've
  573. been able to figure out how to make maps that "do" things in a general way
  574. (like carving out areas of black) then do very minor tweeking for
  575. particular images.  What I like about Linda's explanations is she say HOW a
  576. map enhances and image...not just the mechanics. 
  577.  
  578. But the excel part sounds interesting.....and I know we all learn in
  579. different ways....do you have examples of stuff before and after excel
  580. manipulation?? I can only understand what I can see.....not technical
  581. explanations.
  582.  
  583. Angela
  584.  
  585. At 01:00 PM 1/4/98 -0500, you wrote:
  586. >Angela,
  587. >They may be helpful if you want to make maps from scratch, so to speak,
  588. >without a particular fractal in mind.  In addition, Mapmaker can save (or
  589. >convert) map files in the csv format, which can then be graphed and
  590. >manipulated in interesting ways in Excel.
  591. >
  592. >Wizzle wrote:
  593. >
  594. >> What do those apps do that Fractint doesn't???
  595.  
  596.  
  597. - -
  598. - ------------------------------------------------------------
  599. Thanks for using Fractint, The Fractals and Fractint Discussion List
  600. Post Message:   fractint@xmission.com
  601. Get Commands:   majordomo@xmission.com "help"
  602. Administrator:  twegner@phoenix.net
  603. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  604.  
  605. ------------------------------
  606.  
  607. Date: Sun, 04 Jan 1998 10:26:42 -0800
  608. From: Wizzle <wizzle@cci-internet.com>
  609. Subject: (fractint) Zipping
  610.  
  611. I would like to zip up some of my color maps so I can post them at my
  612. website for downloading.  Does anyone have any recommendations for a zip
  613. program that runs under win95 and is of the brainless drag and drop
  614. variety?? I'm not good at DOS and PKUnzip (though I have it). 
  615.  
  616. Angela
  617.  
  618. - -
  619. - ------------------------------------------------------------
  620. Thanks for using Fractint, The Fractals and Fractint Discussion List
  621. Post Message:   fractint@xmission.com
  622. Get Commands:   majordomo@xmission.com "help"
  623. Administrator:  twegner@phoenix.net
  624. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  625.  
  626. ------------------------------
  627.  
  628. Date: Sun, 04 Jan 1998 13:21:34 -0500
  629. From: Gedeon Peteri <gedeon@InfoAve.Net>
  630. Subject: Re: (fractint) Zipping
  631.  
  632. Latest version of Winzip 6.3
  633.  
  634. Wizzle wrote:
  635.  
  636. > I would like to zip up some of my color maps so I can post them at my
  637. > website for downloading.  Does anyone have any recommendations for a zip
  638. > program that runs under win95 and is of the brainless drag and drop
  639. > variety?? I'm not good at DOS and PKUnzip (though I have it).
  640. >
  641. > Angela
  642. >
  643. > -
  644. > ------------------------------------------------------------
  645. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  646. > Post Message:   fractint@xmission.com
  647. > Get Commands:   majordomo@xmission.com "help"
  648. > Administrator:  twegner@phoenix.net
  649. > Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  650.  
  651.  
  652.  
  653.  
  654. - -
  655. - ------------------------------------------------------------
  656. Thanks for using Fractint, The Fractals and Fractint Discussion List
  657. Post Message:   fractint@xmission.com
  658. Get Commands:   majordomo@xmission.com "help"
  659. Administrator:  twegner@phoenix.net
  660. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  661.  
  662. ------------------------------
  663.  
  664. Date: Sun, 4 Jan 1998 14:58:44 -0500
  665. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  666. Subject: (fractint) Long Time Coming!
  667.  
  668. Hi Les,
  669.  
  670. >> Find it at:  http://ourworld.compuserve.com/homepages/Les_StClair/
  671. =2E..
  672. >> Have a nice long phone call!
  673.  
  674.   Loooooooooooooooong but nice!  Great gallery, Les!
  675.  
  676.         - Sylvie
  677.  
  678. - -
  679. - ------------------------------------------------------------
  680. Thanks for using Fractint, The Fractals and Fractint Discussion List
  681. Post Message:   fractint@xmission.com
  682. Get Commands:   majordomo@xmission.com "help"
  683. Administrator:  twegner@phoenix.net
  684. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  685.  
  686. ------------------------------
  687.  
  688. Date: Sun, 4 Jan 1998 16:08:32 EST
  689. From: RBarn0001 <RBarn0001@aol.com>
  690. Subject: Re: (fractint) Web Page Update
  691.  
  692. In a message dated 98-01-03 18:28:11 EST, you write:
  693.  
  694. << These are very interesting pictures.  Some of them look like they use
  695.  various "orbit boost" techniques, particularly ones like Whirlpool.  Aside
  696.  from the smooth coloring :) how were they created?
  697. >> 
  698.  
  699. The formula for WhirlPool is actually quite ordinary. Its the standard
  700. Fractint mandel(fn||fn). Here is the equivalent Fractint par file. This will
  701. generate the same image, but with the banding characteristic of Fractint:
  702.  
  703. - ------------------------------------------------------------------------------
  704. - --------------------------------
  705. WhirlPool          { ; .                                     t=  0:02:25.72
  706.                      ; Copyright Ron Barnett [70153,1233], Jan 1998
  707.                      ; On a Cyrix 6x86(P200+) at 1024 x 768
  708.   reset=1960 type=mandel(fn||fn) function=flip/sqr passes=1
  709.   center-mag=-0.99999412050000000/-0.00000169056482000/24813.85/0.8904/-39\
  710.   .999 params=0/0/0.15 float=y maxiter=999 bailout=100 inside=0
  711.   periodicity=0
  712.   colors=0000dL<7>0zW<7>0JJ<14>0xx0zz2tt<6>JE9<15>yjU<7>BJF<15>_zn<6>LO3<8\
  713.   >px9<5>KMGFGIBBM<14>WWz<7>J9J<15>zWz<7>J09<15>z0W<7>J90<15>zW0<7>JJ0<15>\
  714.   zz0<7>99J<15>WWz<7>0J9<6>0bJ
  715.   }
  716. - ------------------------------------------------------------------------------
  717. - ------------------------------------
  718.  
  719. Some of the images do use a variant of the Pickover orbit trap method. The
  720. variant allows coloring to give a more 3D effect, and a user variable to
  721. determine how close to the x or y axis the orbit must be to be trapped. The
  722. coloring is based upon both the iteration count and how close the orbit is
  723. when it is trapped. I am thinking about incorporating some of Paul Carlson's
  724. great methods, since it would be a simple add-on to my current code.
  725.  
  726. >> I put together a quick FractInt FRM to mess around with the technique--it
  727.  is most effective, even in 256 colors.  What's particularly impressive is
  728.  that it works for types like NovaM, where I've been trying in vain to apply
  729.  Linas Vepstas' algorithm.  How does the exponential color value relate to
  730.  the iteration value (or does it)?
  731.  
  732.   >>
  733.  
  734. As far as the relationship between the iteration count and exponential color
  735. value, I have done some empirical exploring running the compiler in the debug
  736. mode but have found no clear relationship. For low iteration counts the
  737. iteration count may be 10 fold or so larger. As the iteration count increases
  738. it looks like the exponential color value might converge towards the iteration
  739. value. For some of the images on my page, the ratio is less than 1.5. This
  740. might be an interesting area to explore mathematically. Note that for
  741. WhirlPool the Fractint coloring based upon the iteration count and exponential
  742. coloring are quite close. All I had to do was to rotate the palette a little
  743. bit.
  744.  
  745. Ron
  746.  
  747. - -
  748. - ------------------------------------------------------------
  749. Thanks for using Fractint, The Fractals and Fractint Discussion List
  750. Post Message:   fractint@xmission.com
  751. Get Commands:   majordomo@xmission.com "help"
  752. Administrator:  twegner@phoenix.net
  753. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  754.  
  755. ------------------------------
  756.  
  757. Date: Sun, 4 Jan 1998 16:15:09 EST
  758. From: RBarn0001 <RBarn0001@aol.com>
  759. Subject: Re: (fractint) Wrong slant on address
  760.  
  761. In a message dated 98-01-04 05:17:40 EST, you write:
  762.  
  763. << Hey, don't sweat it.  I didn't pay the address any attention when I "cut
  764. and
  765.  paste" it into the address line.  I hit go and it went.  Good page, too,
  766.  BTW. >>
  767.  
  768. Thanks for you kind comments.
  769.  
  770. Ron
  771.  
  772. - -
  773. - ------------------------------------------------------------
  774. Thanks for using Fractint, The Fractals and Fractint Discussion List
  775. Post Message:   fractint@xmission.com
  776. Get Commands:   majordomo@xmission.com "help"
  777. Administrator:  twegner@phoenix.net
  778. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  779.  
  780. ------------------------------
  781.  
  782. Date: Sun, 4 Jan 1998 16:21:24 EST
  783. From: RBarn0001 <RBarn0001@aol.com>
  784. Subject: Re: (fractint) Color Maps
  785.  
  786. Thanks, everyone who is using Makemap. By the way, any fractint map, including
  787. the ones created with Makemap, can be readily brought into Excel by using
  788. space as the delimiter rather than comma (csv).
  789.  
  790. Special note to Angela: Makemap can create maps, both by the Fractint
  791. approach, and it can also use four different algorithms to design a complete
  792. map (sine, fourier, HSI and RGB). It runs under Windows 3.1 and 95. I haven't
  793. checked it under NT.
  794.  
  795. Ron
  796.  
  797. - -
  798. - ------------------------------------------------------------
  799. Thanks for using Fractint, The Fractals and Fractint Discussion List
  800. Post Message:   fractint@xmission.com
  801. Get Commands:   majordomo@xmission.com "help"
  802. Administrator:  twegner@phoenix.net
  803. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  804.  
  805. ------------------------------
  806.  
  807. Date: Sun, 4 Jan 1998 16:14:18 EST
  808. From: RBarn0001 <RBarn0001@aol.com>
  809. Subject: Re: (fractint) Web Page Update
  810.  
  811. In a message dated 98-01-03 21:09:36 EST, you write:
  812.  
  813. << 
  814.  Nice page (jeez, I *really* gotta work on mine now!)... one wierd thing I
  815.  noticed was a couple of rectangular areas on the left (but to the right of
  816. the
  817.  Galleries list) would blank out when I scroll... it could just be my browser
  818.  ($#%&*! Micrapsoft!)...  Nice, nice page 'tho...
  819.   >>
  820.  
  821. Thanks for the kind words. One of the perils of web page design is you never
  822. know for sure how it will look on other people's browsers.  I guess we all
  823. must rely upon the helpful comments of others. I don't see the rectangular
  824. areas with my browser. I tested with Netscape 3.0 and Explorer 4.0. I don't
  825. know what Explorer 3.0 or Netscape 4.0 do. What is your browser? Comments from
  826. anyone else who has visited by site would be appreciated
  827.  
  828. Ron
  829.  
  830. http://members.aol.com/RBarn0001
  831.  
  832. - -
  833. - ------------------------------------------------------------
  834. Thanks for using Fractint, The Fractals and Fractint Discussion List
  835. Post Message:   fractint@xmission.com
  836. Get Commands:   majordomo@xmission.com "help"
  837. Administrator:  twegner@phoenix.net
  838. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  839.  
  840. ------------------------------
  841.  
  842. Date: Sun, 4 Jan 1998 14:16:48 -0800
  843. From: "Jay Hill" <ehill1@san.rr.com>
  844. Subject: Watch out! was Re: (fractint) Web Page Update
  845.  
  846. Hi Ron,
  847.  
  848. "WhirlPool is actually quite ordinary".   
  849. Well I don't understand what it the formula is doing. I went exploring 
  850. around and nearly got eaten alive!  
  851.  
  852. I must be more careful poking around in someone else's pool after hours!
  853.  
  854. Jay
  855.  
  856. Jaws               { ; Variation by Jay Hill, 1998
  857.                      ; after Ron Barnett, 1998
  858.   reset=1960 type=mandel(fn||fn) function=flip/sqr passes=1
  859.   center-mag=-0.19270038748862370/+0.67895009630401400/29.75496/0.9645/-5.\
  860.   657/6.412 params=0/0/0.15 float=y maxiter=999 bailout=100 inside=0
  861.   periodicity=0
  862.   colors=0000dL<7>0zW<7>0JJ<12>0rr0uu0xx0zz2tt4nm<5>JE9<15>yjU<7>BJF<15>_z\
  863.   n<6>LO3<8>px9<5>KMGFGIBBM<14>WWz<7>J9J<15>zWz<7>J09<15>z0W<7>J90<15>zW0<\
  864.   7>JJ0<15>zz0<7>99J<15>WWz<7>0J9<6>0bJ
  865.   savename=Jaws
  866.   }
  867.  
  868. - ----------
  869. > From: RBarn0001 <RBarn0001@aol.com>
  870. > To: fractint@lists.xmission.com
  871. > Subject: Re: (fractint) Web Page Update
  872. > Date: Sunday, January 04, 1998 1:08 PM
  873. > In a message dated 98-01-03 18:28:11 EST, you write:
  874. > << These are very interesting pictures.  Some of them look like they use
  875. >  various "orbit boost" techniques, particularly ones like Whirlpool.  Aside
  876. >  from the smooth coloring :) how were they created?
  877. > >> 
  878. > The formula for WhirlPool is actually quite ordinary. Its the standard
  879. > Fractint mandel(fn||fn). Here is the equivalent Fractint par file. This will
  880. > generate the same image, but with the banding characteristic of Fractint:
  881. >
  882. - ------------------------------------------------------------------------------
  883. WhirlPool          { ; .                                     t=  0:02:25.72
  884.                      ; Copyright Ron Barnett [70153,1233], Jan 1998
  885.                      ; On a Cyrix 6x86(P200+) at 1024 x 768
  886.   reset=1960 type=mandel(fn||fn) function=flip/sqr passes=1
  887.   center-mag=-0.99999412050000000/-0.00000169056482000/24813.85/0.8904/-39\
  888.   .999 params=0/0/0.15 float=y maxiter=999 bailout=100 inside=0
  889.   periodicity=0
  890.   colors=0000dL<7>0zW<7>0JJ<14>0xx0zz2tt<6>JE9<15>yjU<7>BJF<15>_zn<6>LO3<8\
  891.   >px9<5>KMGFGIBBM<14>WWz<7>J9J<15>zWz<7>J09<15>z0W<7>J90<15>zW0<7>JJ0<15>\
  892.   zz0<7>99J<15>WWz<7>0J9<6>0bJ
  893.   }
  894. >
  895. - ------------------------------------------------------------------------------
  896.  
  897.  
  898. - -
  899. - ------------------------------------------------------------
  900. Thanks for using Fractint, The Fractals and Fractint Discussion List
  901. Post Message:   fractint@xmission.com
  902. Get Commands:   majordomo@xmission.com "help"
  903. Administrator:  twegner@phoenix.net
  904. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  905.  
  906. ------------------------------
  907.  
  908. Date: Sun, 04 Jan 1998 15:29:39 -0800
  909. From: Wizzle <wizzle@cci-internet.com>
  910. Subject: Re: (fractint) Web Page Update
  911.  
  912. Ron...
  913.  
  914. As I recall...I didn't see the retangular area either...I'm sure I would
  915. have said something (too much, probably). I run Navigator Gold 3.0.....nice
  916. and stable...I've had IE crash my windows twice with half-baked betas and
  917. wouldn't go near it again...plus it doesn't run animated gifs at all
  918. well...there is a darn good reason why Uncle Bill is trying to stuff his
  919. freebie down everyone's throats....it ain't no Netscape.
  920.  
  921. Angela
  922.  
  923.  
  924. At 04:14 PM 1/4/98 EST, you wrote:
  925. >In a message dated 98-01-03 21:09:36 EST, you write:
  926. >
  927. ><< 
  928. > Nice page (jeez, I *really* gotta work on mine now!)... one wierd thing I
  929. > noticed was a couple of rectangular areas on the left (but to the right of
  930. >the
  931. > Galleries list) would blank out when I scroll... it could just be my browser
  932. > ($#%&*! Micrapsoft!)...  Nice, nice page 'tho...
  933. >  >>
  934. >
  935. >Thanks for the kind words. One of the perils of web page design is you never
  936. >know for sure how it will look on other people's browsers.  I guess we all
  937. >must rely upon the helpful comments of others. I don't see the rectangular
  938. >areas with my browser. I tested with Netscape 3.0 and Explorer 4.0. I don't
  939. >know what Explorer 3.0 or Netscape 4.0 do. What is your browser? Comments
  940. from
  941. >anyone else who has visited by site would be appreciated
  942. >
  943. >Ron
  944. >
  945. >http://members.aol.com/RBarn0001
  946. >
  947. >-
  948. >------------------------------------------------------------
  949. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  950. >Post Message:   fractint@xmission.com
  951. >Get Commands:   majordomo@xmission.com "help"
  952. >Administrator:  twegner@phoenix.net
  953. >Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  954. >
  955. >
  956.  
  957. - -
  958. - ------------------------------------------------------------
  959. Thanks for using Fractint, The Fractals and Fractint Discussion List
  960. Post Message:   fractint@xmission.com
  961. Get Commands:   majordomo@xmission.com "help"
  962. Administrator:  twegner@phoenix.net
  963. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  964.  
  965. ------------------------------
  966.  
  967. Date: Sun, 04 Jan 1998 15:47:47 -0800
  968. From: Wizzle <wizzle@cci-internet.com>
  969. Subject: Re: (fractint) Color Maps
  970.  
  971. Ron....
  972.  
  973. Thanks for the explanation....let's see foyer transformation (has to do
  974. with decorating the entry hall)....sines (poor thing can't spell sign or
  975. foyer).....and 4 algorithms, eh??? (probably a new rock band).
  976.  
  977. It's truly wonderful how Fractint allows us artsy types to communicate so
  978. well with you technical/math wizards and brings us together.
  979.  
  980. Angela
  981.  
  982. At 04:21 PM 1/4/98 EST, you wrote:
  983. >Thanks, everyone who is using Makemap. By the way, any fractint map,
  984. including
  985. >the ones created with Makemap, can be readily brought into Excel by using
  986. >space as the delimiter rather than comma (csv).
  987. >
  988. >Special note to Angela: Makemap can create maps, both by the Fractint
  989. >approach, and it can also use four different algorithms to design a complete
  990. >map (sine, fourier, HSI and RGB). It runs under Windows 3.1 and 95. I haven't
  991. >checked it under NT.
  992. >
  993. >Ron
  994. >
  995. >-
  996. >------------------------------------------------------------
  997. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  998. >Post Message:   fractint@xmission.com
  999. >Get Commands:   majordomo@xmission.com "help"
  1000. >Administrator:  twegner@phoenix.net
  1001. >Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1002. >
  1003. >
  1004.  
  1005. - -
  1006. - ------------------------------------------------------------
  1007. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1008. Post Message:   fractint@xmission.com
  1009. Get Commands:   majordomo@xmission.com "help"
  1010. Administrator:  twegner@phoenix.net
  1011. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1012.  
  1013. ------------------------------
  1014.  
  1015. Date: Sun, 4 Jan 1998 20:01:28 -0500
  1016. From: Les St Clair <Les_StClair@compuserve.com>
  1017. Subject: Re: (fractint) Long Time Coming!
  1018.  
  1019. Hi Janet, Angela, Sylvie, Paul...
  1020.  
  1021. Re: http://ourworld.compuserve.com/homepages/Les_StClair/
  1022.  
  1023. Thanks for all your kind words.
  1024. The feed-back was much appreciated
  1025.  
  1026. Angela wrote:
  1027. >>How do you like Flarium?? (did I say a bad word)???? <<
  1028.  
  1029. Did someone mention true-color<g>
  1030. Actually, I've just started using it after seeing what you clever people =
  1031. on
  1032. the web have been doing with it!!
  1033.  
  1034. It just occured to me, with nearly 800 Fractint parameters zipped on my
  1035. pages, I should have included a link for Michael Peters Par-to-bat
  1036. utility!!
  1037.  
  1038. cheers, Les
  1039.  
  1040. - -
  1041. - ------------------------------------------------------------
  1042. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1043. Post Message:   fractint@xmission.com
  1044. Get Commands:   majordomo@xmission.com "help"
  1045. Administrator:  twegner@phoenix.net
  1046. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1047.  
  1048. ------------------------------
  1049.  
  1050. Date: Sun, 4 Jan 1998 20:54:57 -0500
  1051. From: "Brian E. Jones" <bejones@netunlimited.net>
  1052. Subject: Re: (fractint) Long Time Coming!
  1053.  
  1054. Hi Les,
  1055.  
  1056. >>
  1057. So
  1058. why no Fractal web page?
  1059. I dunno!
  1060. Anyway, it's there now!
  1061. Find it at:  http://ourworld.compuserve.com/homepages/Les_StClair/
  1062. <<
  1063.  
  1064. Super Pages!!!
  1065.  
  1066. I really like the way you have included a "taste" of images for each
  1067. available par set!!!!  Very Nice!!!!
  1068.  
  1069. Brian
  1070. http://ourworld.compuserve.com/homepages/Brian_E_Jones
  1071.  
  1072.  
  1073. - -
  1074. - ------------------------------------------------------------
  1075. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1076. Post Message:   fractint@xmission.com
  1077. Get Commands:   majordomo@xmission.com "help"
  1078. Administrator:  twegner@phoenix.net
  1079. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1080.  
  1081. ------------------------------
  1082.  
  1083. Date: Sun, 4 Jan 1998 09:19:28 +1100
  1084. From: "B Michie" <michie@acenet.com.au>
  1085. Subject: (fractint) Quartz formula
  1086.  
  1087. QuartzM2C { ; Mandelbrot set 2 sliced diagonally
  1088.     z=1:
  1089.     a=z*z
  1090.     b=z*a
  1091.     c=z*b
  1092.     z=(pixel+p1)*(3*c-4*b-6*a+12*z)+(pixel-p1),
  1093.     |z|<=127}
  1094.  
  1095. Could someone please tell me, to use this formula, which is the part to be
  1096. saved in a frm file? All, or just from z down?
  1097.  
  1098. Also, having saved a frm, Fractint prompts for parameters. How do you feed
  1099. info from par file to the pars screen?
  1100. IS it just a matter of having 2 half size screens open, and manually
  1101. entering the pars, or can Fractint automatically enter parameters from a
  1102. specified par file. If so, where does one specify the par file?
  1103. Your tolerance and patience appreciated
  1104. Beth
  1105.  
  1106.  
  1107. Plant real trees. Don't give me rubbish like, "I'd like
  1108.  a tall tree, but it mustn't grow above the gutters!
  1109. Oh- and the colour of the flowers mustn't clash
  1110. with the brickwork -- Spare me !@#$%^&***!
  1111.  
  1112. - -
  1113. - ------------------------------------------------------------
  1114. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1115. Post Message:   fractint@xmission.com
  1116. Get Commands:   majordomo@xmission.com "help"
  1117. Administrator:  twegner@phoenix.net
  1118. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1119.  
  1120. ------------------------------
  1121.  
  1122. Date: Fri, 2 Jan 1998 09:31:16 +1100
  1123. From: "B Michie" <michie@acenet.com.au>
  1124. Subject: (fractint) entering formulas
  1125.  
  1126. Angela, Bill, and all helpful fractinters,
  1127.  
  1128. Getting there slowly
  1129. This is the par file, exactly as saved in notepad. No spaces apart from
  1130. those
  1131. to the left of reset.
  1132. Saved in fractint/pars
  1133.  
  1134. elegance           { ; by Angela 1997 using deeps7.map
  1135.   reset=1950 type=formula formulafile=bessels.frm formulaname=BESSEL-2
  1136.   center-mag=-8.88178e-016/6.66134e-016/1.041667/1/90 float=y
  1137.   inside=bof60 periodicity=0
  1138.   colors=00000S<6>000<15>zzm<15>0000700F0<13>0zm<13>080040000<15>z0z<14>40\
  1139.   400K<15>zzz<14>44N<2>4A45D5<13>QvjSzmRwj<14>C00<15>zzm<15>0CC<12>0zz<15>\
  1140.   000<15>00z<7>00W
  1141.   }
  1142.  
  1143.  
  1144. THis is the frm file, saved in notepad via edit, in order to retain
  1145. the frm extension. Notepad will only save as txt.
  1146. Saved as BESSELL-2.FRM in fractint
  1147.  
  1148. BESSEL-2 {
  1149.       c = z = pixel:
  1150.          z = cos(z) / z + pixel,
  1151.       |z| <= 100
  1152. }
  1153.  
  1154. Am I right so far?
  1155. I still get an oops message, and can't parse that formula
  1156.  
  1157. Is there a way for the pars to load automatically, or does one always type
  1158. them in manually
  1159.  
  1160. THanks,
  1161. Beth
  1162.  
  1163.  
  1164.  
  1165. Plant real trees. Don't give me rubbish like, "I'd like
  1166.  a tall tree, but it mustn't grow above the gutters!
  1167. Oh- and the colour of the flowers mustn't clash
  1168. with the brickwork -- Spare me !@#$%^&***!
  1169.  
  1170. - -
  1171. - ------------------------------------------------------------
  1172. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1173. Post Message:   fractint@xmission.com
  1174. Get Commands:   majordomo@xmission.com "help"
  1175. Administrator:  twegner@phoenix.net
  1176. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1177.  
  1178. ------------------------------
  1179.  
  1180. Date: Mon, 05 Jan 1998 06:05:32 -0500
  1181. From: davides <davides@pipeline.com>
  1182. Subject: Re: (fractint) entering formulas
  1183.  
  1184. At 09:31 AM 1/2/98 +1100, you wrote:
  1185. >Angela, Bill, and all helpful fractinters,
  1186.  
  1187. >BESSEL-2 {
  1188. >      c = z = pixel:
  1189. >         z = cos(z) / z + pixel,
  1190. >      |z| <= 100
  1191. >}
  1192. >
  1193. >Am I right so far?
  1194. >I still get an oops message, and can't parse that formula
  1195.  
  1196. I may be doing this all wrong, but what I do seems to work fine for me. Due
  1197. to limitations of notepad I have .frms' defaulted to WP. In the above
  1198. formula, I suspect a little bit was missing: first line after   Bessel-2 I
  1199. added:  (after the "{"  ; Bessel2
  1200.  
  1201. It now works fine.
  1202.  
  1203. The .par, after inserting into .par file also worked fine. (got rid of the
  1204. ">'s".
  1205.  
  1206. (>Is there a way for the pars to load automatically, or does one always type
  1207. >them in manually)
  1208.  
  1209. For what I am doing, still using windows, I highlight the entire thing, hit
  1210. ctrl-c, bring up where I am going to put the item, then hit ctrl-v. Saves a
  1211. lot of typing.
  1212.  
  1213. THanks,
  1214. >Beth
  1215.  
  1216. HTH
  1217. davides@pipeline.com
  1218. "Do Not Meddle In The Affairs Of Dragons For You Are Crunchy And Good With
  1219. Ketchup"
  1220.  
  1221. - -
  1222. - ------------------------------------------------------------
  1223. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1224. Post Message:   fractint@xmission.com
  1225. Get Commands:   majordomo@xmission.com "help"
  1226. Administrator:  twegner@phoenix.net
  1227. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1228.  
  1229. ------------------------------
  1230.  
  1231. End of fractint-digest V1 #60
  1232. *****************************
  1233.  
  1234.