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

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #58
  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        Friday, January 2 1998        Volume 01 : Number 058
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Fri, 02 Jan 1998 11:47:35 -0600
  18. From: "Damien M. Jones" <dmj@fractalus.com>
  19. Subject: Re: (fractint) Formula Questions
  20.  
  21. Angela,
  22.  
  23.  - 1.  How big can a file of formulas be? 
  24.  
  25. I'm not sure what the upper limit is, but I've got one that's 178K and
  26. FractInt handles it fine.
  27.  
  28.  - 2.  If I change the location of the formula from
  29.  - say....formulafile=fractint.frm ....to web1.frm and change the par
  30.  - accordingly, will this work?
  31.  
  32. Yes.  FractInt looks first in the file specified by formulafile=, but if it
  33. can't find the formula there, it will look through ALL the FRM files it has
  34. for the formula.  So even if you forget to change the formulafile=, it will
  35. still work.
  36.  
  37.  - I assume I put my formula file where fractint.exe is, right?
  38.  
  39. Put the FRM file with all the other FRM files.  If that's the directory
  40. where FRACTINT.EXE is, then that's where it goes. :)
  41.  
  42.  - 3.  Is there a limitation on the size of par files? 
  43.  
  44. Don't know about that either, the biggest in my PAR directory is 100K.
  45. That seems to work fine.
  46.  
  47. Damien M. Jones   \\
  48. dmj@fractalus.com  \\  http://www.icd.com/tsd/  (temporary sanity designs)
  49.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  50.  
  51.  
  52. - -
  53. - ------------------------------------------------------------
  54. Thanks for using Fractint, The Fractals and Fractint Discussion List
  55. Post Message:   fractint@xmission.com
  56. Get Commands:   majordomo@xmission.com "help"
  57. Administrator:  twegner@phoenix.net
  58. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  59.  
  60. ------------------------------
  61.  
  62. Date: Fri, 02 Jan 1998 13:31:52 -0600
  63. From: "Damien M. Jones" <dmj@fractalus.com>
  64. Subject: Re: (fractint) 3DBalls question
  65.  
  66. Stephen.
  67.  
  68.  - Having spent some time playing with the 3DBalls frm by Paul Carson, a
  69.  - thought struck me.  How easy is it to adapt this formula for other types?
  70.  
  71. Somewhere in the formula will be a short section which is the real fractal
  72. calculation.  The rest is the coloring stuff.  Change the guts, and you've
  73. got the coloring technique applied to a different fractal.  As
  74. well-commented as Paul Carlson's formula was, I don't think you'll have any
  75. trouble.
  76.  
  77.  - Could you use it for a Julia?
  78.  
  79. Yes, but keep in mind that you need a parameter for Julia sets (unless you
  80. embed it in the formula).  Most of my coloring formulae use all three
  81. parameters, leaving no room for Julia exploration. :(
  82.  
  83.  - Could you use it for the INSIDE of a Mandel?
  84.  
  85. For any type which stops iterating early, coloring the inside the same way
  86. as the outside is automatic.  But if you're using a coloring technique
  87. which allows iteration to proceed normally, you have to keep track of the
  88. number of iterations and stop one iteration before maxit if you want to be
  89. able to specify a color for inside pixels.  You also end up having to turn
  90. periodicity off, so that FractInt itself doesn't bail out early on those
  91. interior points.  Basically, you have to fool FractInt into thinking all
  92. the inside pixels are outside pixels.  See any of the -I variants in my FRM
  93. file:
  94.  
  95.     http://www.geocities.com/~fractalus/misc/dmj-pub.zip
  96.  
  97.  - could you use it to spice up relatively "monochrome" types, are the
  98.  - possibilities really endless?
  99.  
  100. Yes, the possibilities really ARE endless!  I have 100+ variants, plus
  101. another batch I'm working on which aren't ready for "release" yet--one of
  102. which I posted earlier.
  103.  
  104.  - If I could understand how the damn formula works I'd have a go myself,
  105.  - but I cant work out how the hell it works (anyone like to throw me a
  106.  - tutorial?), so if someone with more skill than me could have a go...
  107.  
  108. OK, a basic formula in FractInt works like this:
  109.  
  110. MyFormula {
  111.   <initialization stuff> :
  112.   <per-iteration calculation>
  113.   <keep-iterating test>
  114. }
  115.  
  116. The <initialization stuff> is where you put everything that needs to only
  117. be done once per pixel.  For example, a Mandelbrot version would include z
  118. = 0, c = pixel and nothing else.
  119.  
  120. The <per-iteration calculation> is where you put everything that must be
  121. done for each iteration.  Our Mandelbrot example would just be z = sqr(z) + c.
  122.  
  123. The <keep-iterating test> part is the very last statement in the formula.
  124. If it evaluates to anything other than zero, the formula keeps iterating;
  125. the point hasn't bailed out.  A Mandelbrot would use something like |z| <
  126. 4, which has the value 1 ("true") when |z| is less than 4, and value 0
  127. ("false") otherwise.
  128.  
  129. Now, how you turn this into a "coloring" formula is a little trickier. :)
  130. The basic trick is that FractInt provides several coloring modes which use
  131. not just the iteration value where a point bailed out, but also the final
  132. iteration value.  For example, with outside=real, the outside color is
  133. defined not just by the iteration, but by iter + real(z) + 8.  (The 8 is
  134. the fudge factor mentioned in other posts.)  Now, if we write the formula
  135. so it watches for when z bails out, and stuffs in a phony real(z), we can
  136. completely control the color FractInt uses to plot any given point.
  137.  
  138. Here's a simple example.  This is a stripped-down version of
  139. dmj-Mand-Pnt-Dst from my FRM file:
  140.  
  141. dmj-Mand-Bof60 { ; outside = real: bof60 coloring, but outside
  142.  
  143.   closest = 1e+38                  ; Closest approach so far.
  144.   done = 0                         ; Iteration counter.
  145.  
  146.   z = 0, c = pixel:                ; Mandelbrot initialization.
  147.   z = sqr(z) + c                   ; Mandelbrot calculation.
  148.  
  149.   done = done + 1                  ; Done one more iteration.
  150.   d = |z|                          ; Compute distance to p1 (squared).
  151.   IF (d < closest)                 ; Closer than previous value.
  152.     closest = d                    ; Save the closest approach.
  153.   ENDIF
  154.   IF (d > 128)                     ; Point exceeds bailout.
  155.     z = sqrt(closest) * 75         ; Apply color scale.
  156.     z = z - done - 8               ; Return value.
  157.     done = -1                      ; Set flag to force an exit.
  158.   ENDIF
  159.     
  160.   done >= 0                        ; Continue if the flag is clear.
  161. }
  162.  
  163. The basic idea behind the coloring algorithm bof60 is to determine the
  164. closest distance the point gets to the origin.  So in the first block,
  165. where variables used by the coloring algorithm are set up, the "closest"
  166. distance so far is set to a huge number.  "done" is used to count iterations.
  167.  
  168. The next block is the actual fractal calculation.  The initialization stage
  169. is completed in standard Mandelbrot fashion, and the actual iteration code
  170. follows immediately--again, standard Mandelbrot iteration.  This formula
  171. uses the Mandelbrot set!
  172.  
  173. In the next block, the iteration counter is updated.  Then, the distance
  174. for the currently iterated point is computed (|z|).  If this distance is
  175. closer than the previous closest distance, the new closer distance is saved.
  176.  
  177. The last IF is actually our bailout test.  If z is too big (remember, d is
  178. the distance of z from the origin) then we need to bail out.  The first
  179. thing that is done is to compute a new value for z--we are stuffing the
  180. color value we want in here.  sqrt(closest) is what we are basing our color
  181. on, and the 75 is an arbitrary scaling factor.  The next line takes out the
  182. other values FractInt uses with outside=real; we don't want those items, so
  183. the formula subtracts them and FractInt adds them, and they cancel out.
  184. The last line in the IF sets "done" to -1, which the very last of the
  185. formula uses to tell whether or not to bail out.
  186.  
  187. Hope this helps get your started!
  188.  
  189. Damien M. Jones   \\
  190. dmj@fractalus.com  \\  http://www.icd.com/tsd/  (temporary sanity designs)
  191.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  192.  
  193.  
  194. - -
  195. - ------------------------------------------------------------
  196. Thanks for using Fractint, The Fractals and Fractint Discussion List
  197. Post Message:   fractint@xmission.com
  198. Get Commands:   majordomo@xmission.com "help"
  199. Administrator:  twegner@phoenix.net
  200. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  201.  
  202. ------------------------------
  203.  
  204. Date: Fri, 2 Jan 1998 14:32:24 -0500 (EST)
  205. From: A M Kelley <amkelley@freenet.columbus.oh.us>
  206. Subject: Re: (fractint) Fractint pausing problem
  207.  
  208. I tried all the textsafe options. Textsafe=save seems to make the problem
  209. slightly worse. Textsafe=bios locks up the computer completely.
  210. Textsafe=yes seems to be the best option. It's still a disappointment that
  211. my 7 year old 15" SVGA monitor has no pause whatsoever, yet the brand new
  212. one does. That part doesn't make sense to me, since this one has to change
  213. between the video modes, too. --Alice
  214.  
  215.  
  216.  
  217. - -
  218. - ------------------------------------------------------------
  219. Thanks for using Fractint, The Fractals and Fractint Discussion List
  220. Post Message:   fractint@xmission.com
  221. Get Commands:   majordomo@xmission.com "help"
  222. Administrator:  twegner@phoenix.net
  223. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  224.  
  225. ------------------------------
  226.  
  227. Date: Fri, 02 Jan 1998 14:57:59 -0800
  228. From: Peter Jakubowicz <pfjakub@earthlink.net>
  229. Subject: (fractint) Orchid fractals
  230.  
  231. Does anyone know alogrithms for creating *orchid fractals*, invented by
  232. someone named Keith Still? Saw one in the new book Life's Other Secret
  233. today by Ian Stewart, who unfortunately does not supply details beyond
  234. their being based on modeling crowd behavior and Keith's Still's Internet
  235. handle being Hari Seldon. It looks like it can be done in Fractint, but I'm
  236. clueless; any help would be appreciated. Peter
  237.  
  238.  
  239. - -
  240. - ------------------------------------------------------------
  241. Thanks for using Fractint, The Fractals and Fractint Discussion List
  242. Post Message:   fractint@xmission.com
  243. Get Commands:   majordomo@xmission.com "help"
  244. Administrator:  twegner@phoenix.net
  245. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  246.  
  247. ------------------------------
  248.  
  249. Date: Fri, 02 Jan 1998 12:19:04 -0800
  250. From: Wizzle <wizzle@cci-internet.com>
  251. Subject: Re: (fractint) 3DBalls question
  252.  
  253. Damien....
  254.  
  255. Geocities gave me a message saying
  256.  
  257. http://www.geocities.com/~fractalus/misc/dmj-pub.zip
  258.  
  259. does not exist.....???????
  260.  
  261. I did get to http://www.geocities.com/~fractalus/
  262.  
  263. and got distracted by both your galleries and your graphics tips.  Are the
  264. coloring techniques for Fractint available somewhere??  Are they a plug-in???
  265.  
  266. Angela
  267.  
  268. >Damien M. Jones   \\
  269. >dmj@fractalus.com  \\  http://www.icd.com/tsd/  (temporary sanity designs)
  270. >                    \\  http://www.fractalus.com/ (fractals are my hobby)
  271. >
  272. >
  273. >-
  274. >------------------------------------------------------------
  275. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  276. >Post Message:   fractint@xmission.com
  277. >Get Commands:   majordomo@xmission.com "help"
  278. >Administrator:  twegner@phoenix.net
  279. >Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  280. >
  281. >
  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: Fri, 02 Jan 1998 14:16:45 -0600
  294. From: "Damien M. Jones" <dmj@fractalus.com>
  295. Subject: Re: (fractint) 3DBalls question
  296.  
  297. Angela,
  298.  
  299.  - Geocities gave me a message saying
  300.  -
  301.  - http://www.geocities.com/~fractalus/misc/dmj-pub.zip
  302.  - 
  303.  - does not exist.....???????
  304.  
  305. Question marks are indeed appropriate here; I tried it this very minute and
  306. it worked fine.  I've attached it to a private e-mail to you.
  307.  
  308.  - I did get to http://www.geocities.com/~fractalus/
  309.  -
  310.  - and got distracted by both your galleries and your graphics tips.  Are the
  311.  - coloring techniques for Fractint available somewhere??  Are they a
  312. plug-in???
  313.  
  314. dmj-pub.zip contains the coloring techniques in a FractInt FRM file.
  315.  
  316. Damien M. Jones   \\
  317. dmj@fractalus.com  \\  http://www.icd.com/tsd/  (temporary sanity designs)
  318.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  319.  
  320.  
  321. - -
  322. - ------------------------------------------------------------
  323. Thanks for using Fractint, The Fractals and Fractint Discussion List
  324. Post Message:   fractint@xmission.com
  325. Get Commands:   majordomo@xmission.com "help"
  326. Administrator:  twegner@phoenix.net
  327. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  328.  
  329. ------------------------------
  330.  
  331. Date: Fri, 2 Jan 1998 15:34:51 EST
  332. From: RBarn0001 <RBarn0001@aol.com>
  333. Subject: Re: (fractint) DEEPER Program
  334.  
  335. In a message dated 97-12-27 19:55:04 EST, you write:
  336.  
  337. << I'd like to try TruMand (assuming it is politically correct....and doesn't
  338.  make any sexist fractals)....does it run under win95??
  339.  
  340.  Angela
  341.  
  342.  P.S.  I've been pondering all day....just what IS a sexist fractal??
  343.  (pondering brought on by Beth's earlier comment)
  344.   >>
  345. Hi Wizzle!
  346. Sorry for the late reply. I have been on vacation. Truemand does run under
  347. Win95. As far as being politically correct, it merely reflects the views of
  348. the user <g>.
  349.  
  350. Ron
  351.  
  352. - -
  353. - ------------------------------------------------------------
  354. Thanks for using Fractint, The Fractals and Fractint Discussion List
  355. Post Message:   fractint@xmission.com
  356. Get Commands:   majordomo@xmission.com "help"
  357. Administrator:  twegner@phoenix.net
  358. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  359.  
  360. ------------------------------
  361.  
  362. Date: Fri, 2 Jan 1998 15:52:37 EST
  363. From: RBarn0001 <RBarn0001@aol.com>
  364. Subject: Re: (fractint) Jay's variation
  365.  
  366. In a message dated 97-12-28 18:40:51 EST, you write:
  367.  
  368. << I do think Jay managed to find a "sexist" variation on my
  369.  image....<<<<snikker>>>>> Nice ....um....phrallic choice of colors.  I'm
  370.  gonna have to go find a fem counterpart....I didn't know phractals could be
  371.  so stimulating.
  372.  
  373.  Angela >>
  374.  
  375. Angela, 
  376. Check out Gallery 3 on my web site. Perhaps there are some sexist images there
  377. - -- created with Fractint!
  378. http:\\members.aol.com\RBarn0001
  379.  
  380. Ron
  381.  
  382. - -
  383. - ------------------------------------------------------------
  384. Thanks for using Fractint, The Fractals and Fractint Discussion List
  385. Post Message:   fractint@xmission.com
  386. Get Commands:   majordomo@xmission.com "help"
  387. Administrator:  twegner@phoenix.net
  388. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  389.  
  390. ------------------------------
  391.  
  392. Date: Fri, 02 Jan 1998 14:25:19 -0700
  393. From: Rich Thomson <rthomson@ptc.com>
  394. Subject: Re: (fractint) another 24-bit coloring idea 
  395.  
  396. I improved that textured mandel image by improving the texture
  397. lookup quality and anti-aliasing it.  The PNG file went on a diet as a
  398. result and dropped 75K in size.  At first it seemed a little strange
  399. that the PNG file would decrease in size with anti-aliasing, but when
  400. I think of the details of how PNG stores the picture data, it makes
  401. sense.  At any rate, I think the image improved quite a bit as a
  402. result. :)
  403. - --
  404.   ``Between stimulus and response is the will to choose.''  -- Steven Covey
  405.  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  406.      3D Paint: The Power to Create in 3D;        Rich Thomson
  407.      email me for more info                rthomson@ptc.com
  408.  
  409. - -
  410. - ------------------------------------------------------------
  411. Thanks for using Fractint, The Fractals and Fractint Discussion List
  412. Post Message:   fractint@xmission.com
  413. Get Commands:   majordomo@xmission.com "help"
  414. Administrator:  twegner@phoenix.net
  415. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  416.  
  417. ------------------------------
  418.  
  419. Date: Fri, 02 Jan 1998 17:12:36 -0500
  420. From: Jack Valero <jval@globalserve.net>
  421. Subject: Re: (fractint) DEEPER Program
  422.  
  423. At 06:17 PM 01/01/98 -0500, Jason wrote:
  424. >To all who haven't... I highly recommend visiting this page created by Jack
  425. >Valero and his wife...<snip>
  426.  
  427. I will be forever grateful that one cannot blush across
  428. the internet. Margaret and I thank you.
  429. Regards - Jack
  430.  
  431. visit our fractal gallery: http://www.globalserve.net/~jval/
  432.  
  433. - -
  434. - ------------------------------------------------------------
  435. Thanks for using Fractint, The Fractals and Fractint Discussion List
  436. Post Message:   fractint@xmission.com
  437. Get Commands:   majordomo@xmission.com "help"
  438. Administrator:  twegner@phoenix.net
  439. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  440.  
  441. ------------------------------
  442.  
  443. Date: Fri, 02 Jan 1998 14:38:39 -0800
  444. From: Wizzle <wizzle@cci-internet.com>
  445. Subject: Re: (fractint) DEEPER Program
  446.  
  447. Jack...
  448.  
  449. I was mentioning the other day to someone starting a homepage that your
  450. page is an example of truly fine web style.....as well as containing
  451. magnificent images. You have very crisp layout....good
  452. navigation....attention to bandwidth....all the essentials....it's really a
  453. page worth studying for how well it's put together.  No need to
  454. blush......but r40, b20 and g05 does produce a nice (frac) tint for blushing.
  455.  
  456. Angela
  457.  
  458. At 05:12 PM 1/2/98 -0500, you wrote:
  459. >At 06:17 PM 01/01/98 -0500, Jason wrote:
  460. >>To all who haven't... I highly recommend visiting this page created by Jack
  461. >>Valero and his wife...<snip>
  462. >
  463. >I will be forever grateful that one cannot blush across
  464. >the internet. Margaret and I thank you.
  465. >Regards - Jack
  466. >
  467. >visit our fractal gallery: http://www.globalserve.net/~jval/
  468. >
  469. >-
  470. >------------------------------------------------------------
  471. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  472. >Post Message:   fractint@xmission.com
  473. >Get Commands:   majordomo@xmission.com "help"
  474. >Administrator:  twegner@phoenix.net
  475. >Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  476. >
  477. >
  478.  
  479. - -
  480. - ------------------------------------------------------------
  481. Thanks for using Fractint, The Fractals and Fractint Discussion List
  482. Post Message:   fractint@xmission.com
  483. Get Commands:   majordomo@xmission.com "help"
  484. Administrator:  twegner@phoenix.net
  485. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  486.  
  487. ------------------------------
  488.  
  489. Date: Fri, 02 Jan 1998 14:44:14 -0800
  490. From: Wizzle <wizzle@cci-internet.com>
  491. Subject: Re: (fractint) Jay's variation
  492.  
  493. Ron....
  494.  
  495. Not only would I like to visit....but also to add a link to your
  496. homepage....however...my version of Netscape didn't like your url.....?????
  497. Am I having a problem??? It's been a funny day....I couldn't get to
  498. Damien's site eitiher
  499.  
  500. Angela
  501.  
  502. At 03:52 PM 1/2/98 EST, you wrote:
  503. >In a message dated 97-12-28 18:40:51 EST, you write:
  504. >
  505. ><< I do think Jay managed to find a "sexist" variation on my
  506. > image....<<<<snikker>>>>> Nice ....um....phrallic choice of colors.  I'm
  507. > gonna have to go find a fem counterpart....I didn't know phractals could be
  508. > so stimulating.
  509. > Angela >>
  510. >
  511. >Angela, 
  512. >Check out Gallery 3 on my web site. Perhaps there are some sexist images
  513. there
  514. >-- created with Fractint!
  515. >http:\\members.aol.com\RBarn0001
  516. >
  517. >Ron
  518. >
  519. >-
  520. >------------------------------------------------------------
  521. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  522. >Post Message:   fractint@xmission.com
  523. >Get Commands:   majordomo@xmission.com "help"
  524. >Administrator:  twegner@phoenix.net
  525. >Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  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: Fri, 02 Jan 1998 17:56:02 -0500
  540. From: Dick Amerman <ramerman@erols.com>
  541. Subject: Re: (fractint) Happy New Year!
  542.  
  543. Rich Thomson wrote:
  544.  
  545. > .....  Some people have mail readers that can handle
  546. > printed-quotable and they do the decoding.  So it displays fine in
  547. > such mail software.  However, not everyone has mail software that
  548. > understands the printed-quotable encoding.  To that software, every =
  549. > appears as =3D, which for fractint par and frm files is quite
  550. > annoying.  The reason it is suggested turning it off is to accomodate
  551. > those people who don't have mailers understanding printed-quotable..............
  552.  
  553. Guess I'm going to have to show my ignorance.  I'm using the plain vanilla e-mail access that comes with Communicator - just give it SMTP and POP connections to my ISP.  I can
  554. find no reference to printed-quotable encoding, so don't know how to disable it if I'm using it!
  555.  
  556. Here's a par ... does it come to you with garbage?  (Don't know why it
  557. resets to 1920 -- I'm using 19.6)
  558.  
  559. ConvergenceII      { ; Found while learning how to reproduce Caren Park's
  560.                      ; ornatecbclogo - I set decomp to 128, not inverted.
  561.                      ; uses OK! color map
  562.   reset=1920 type=mandelfn function=ident
  563.   corners=-9.076954/2.797033/-2.850051/6.05544 params=0/0 float=y
  564.   maxiter=32767 bailout=2500 outside=real logmap=yes decomp=128
  565.   finattract=y
  566.   colors=00000z<14>000<16>z0X<15>000<15>p0w<15>000<15>zzz\
  567.   <15>000L00<13>z00<2>p00l00h00d00a00<9>000<15>zX0<15>000\
  568.   <15>ut0<15>000GA4<12>2v10z00w0<14>\
  569.   000<14>00v
  570.   }
  571.  
  572. Dick Amerman
  573.  
  574.  
  575. - -
  576. - ------------------------------------------------------------
  577. Thanks for using Fractint, The Fractals and Fractint Discussion List
  578. Post Message:   fractint@xmission.com
  579. Get Commands:   majordomo@xmission.com "help"
  580. Administrator:  twegner@phoenix.net
  581. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  582.  
  583. ------------------------------
  584.  
  585. Date: Fri, 2 Jan 1998 18:11:09 EST
  586. From: RBarn0001 <RBarn0001@aol.com>
  587. Subject: Re: (fractint) Jay's variation
  588.  
  589. In a message dated 98-01-02 17:34:03 EST, you write:
  590.  
  591. << Ron....
  592.  
  593.  Not only would I like to visit....but also to add a link to your
  594.  homepage....however...my version of Netscape didn't like your url.....?????
  595.  Am I having a problem??? It's been a funny day....I couldn't get to
  596.  Damien's site eitiher
  597.  
  598.  Angela >>
  599.  
  600. If you are using Netscape 4.0, that may be the problem. Apparently Netscape
  601. 4.0 doesn't like the Javascript there that plays the fractal music -- even
  602. though all of the functions used are from Netscape's own Javascript site. It
  603. seems to work with everything else, including Netscape 2.x, 3.x, Internet
  604. Explorer 3.x and 4.x. I guess I need to change the Javascript. Will let you
  605. know when its ready. You might like the image called "Fertility"
  606.  
  607. Ron
  608.  
  609. - -
  610. - ------------------------------------------------------------
  611. Thanks for using Fractint, The Fractals and Fractint Discussion List
  612. Post Message:   fractint@xmission.com
  613. Get Commands:   majordomo@xmission.com "help"
  614. Administrator:  twegner@phoenix.net
  615. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  616.  
  617. ------------------------------
  618.  
  619. Date: Fri, 02 Jan 1998 17:24:59 -0600
  620. From: "Damien M. Jones" <dmj@fractalus.com>
  621. Subject: Re: (fractint) Jay's variation
  622.  
  623. Ron,
  624.  
  625.  - http:\\members.aol.com\RBarn0001
  626.  
  627. I can't believe you used backslashes here. :)  It should be:
  628.  
  629.     http://members.aol.com/RBarn0001
  630.  
  631. Damien M. Jones   \\
  632. dmj@fractalus.com  \\  http://www.icd.com/tsd/  (temporary sanity designs)
  633.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  634.  
  635.  
  636. - -
  637. - ------------------------------------------------------------
  638. Thanks for using Fractint, The Fractals and Fractint Discussion List
  639. Post Message:   fractint@xmission.com
  640. Get Commands:   majordomo@xmission.com "help"
  641. Administrator:  twegner@phoenix.net
  642. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  643.  
  644. ------------------------------
  645.  
  646. Date: Fri, 2 Jan 1998 20:45:21 -0000
  647. From: Peter Moreland <peter@getitonbangagong.demon.co.uk>
  648. Subject: Re: (fractint) Humor Hint
  649.  
  650. Erm... Sorry but that is my email address :)
  651.  
  652. So what do you think to the PAR ;)
  653.  
  654.  
  655.  
  656. - -----Original Message-----
  657. From: Paul Derbyshire <ao950@freenet.carleton.ca>
  658. To: fractint@lists.xmission.com <fractint@lists.xmission.com>
  659. Date: 02 January 1998 04:52
  660. Subject: Re: (fractint) Humor Hint
  661.  
  662.  
  663. >>                     ; Email: peter@getitonbangagong.demon.co.uk
  664. >
  665. >Is that hostname for real? If not, people're gonna have a hard time giving
  666. >feedback about the PAR!
  667. >
  668. >(BTW it is 11:38. If this thing bounces but goes through at 12:01, we'll
  669. >know for sure about the list having some kind of offpeak time restriction.)
  670. <SNIP>
  671.  
  672.  
  673. - -
  674. - ------------------------------------------------------------
  675. Thanks for using Fractint, The Fractals and Fractint Discussion List
  676. Post Message:   fractint@xmission.com
  677. Get Commands:   majordomo@xmission.com "help"
  678. Administrator:  twegner@phoenix.net
  679. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  680.  
  681. ------------------------------
  682.  
  683. Date: Fri, 02 Jan 1998 16:32:26 -0800
  684. From: Wizzle <wizzle@cci-internet.com>
  685. Subject: (fractint) Zip File Thingummie
  686.  
  687. Damien Writes <<snip>>
  688.  
  689.  Basically, you have to fool FractInt into thinking all
  690. >the inside pixels are outside pixels.  See any of the -I variants in my FRM
  691. >file:
  692. >
  693. >    http://www.geocities.com/~fractalus/misc/dmj-pub.zip
  694. >
  695. > - could you use it to spice up relatively "monochrome" types, are the
  696. > - possibilities really endless?
  697. >
  698. >Yes, the possibilities really ARE endless!  I have 100+ variants, plus
  699. >another batch I'm working on which aren't ready for "release" yet--one of
  700. >which I posted earlier.
  701. >
  702. <<snip>>
  703.  
  704. Damien......
  705.  
  706. The stuff in the zip file is fabulous!!!
  707.  
  708. I've gotten at least 6 good images today....including one straight out of
  709. Tolkien I think I'll call "Balrog."  I'm going to yank some of the old
  710. stuff at my homepage and set up a new gallery for your goodies.....any
  711. preference as to what you think it ought to be called????
  712.  
  713. Thank you soooooooooooooooooooo much.....
  714.  
  715. Angela
  716.  
  717. - -
  718. - ------------------------------------------------------------
  719. Thanks for using Fractint, The Fractals and Fractint Discussion List
  720. Post Message:   fractint@xmission.com
  721. Get Commands:   majordomo@xmission.com "help"
  722. Administrator:  twegner@phoenix.net
  723. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  724.  
  725. ------------------------------
  726.  
  727. Date: Sat, 03 Jan 1998 00:28:21 +0000
  728. From: Kevin Weedon <kevin.weedon@diamond.co.uk>
  729. Subject: Re: (fractint) Orchid fractals
  730.  
  731. Only reference I've seen was on a magazine cover disk - it was a crippled demo
  732. - - I'll see if I can dig it out for you...
  733.  
  734. Peter Jakubowicz wrote:
  735.  
  736. > Does anyone know alogrithms for creating *orchid fractals*, invented by
  737. > someone named Keith Still? Saw one in the new book Life's Other Secret
  738. > today by Ian Stewart, who unfortunately does not supply details beyond
  739. > their being based on modeling crowd behavior and Keith's Still's Internet
  740. > handle being Hari Seldon. It looks like it can be done in Fractint, but I'm
  741. > clueless; any help would be appreciated. Peter
  742. >
  743. > -
  744. > ------------------------------------------------------------
  745. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  746. > Post Message:   fractint@xmission.com
  747. > Get Commands:   majordomo@xmission.com "help"
  748. > Administrator:  twegner@phoenix.net
  749. > Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  750.  
  751.  
  752.  
  753. - --
  754.           Kevin Weedon aka WertPerch, the Bald Otter
  755.          http://www.geocities.com/HotSprings/Spa/6918
  756.  
  757.       "Sodomy non sapiens," said Albert under his breath.
  758.       "What does that mean?"
  759.       "Means I'm buggered if I know."
  760.  
  761.       Mort and Albert are facing a problem (Terry Pratchett, Mort)
  762.       (Courtesy of http://www.us.lspace.org/books/pqf/index.html)
  763.  
  764.  
  765.  
  766. - -
  767. - ------------------------------------------------------------
  768. Thanks for using Fractint, The Fractals and Fractint Discussion List
  769. Post Message:   fractint@xmission.com
  770. Get Commands:   majordomo@xmission.com "help"
  771. Administrator:  twegner@phoenix.net
  772. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  773.  
  774. ------------------------------
  775.  
  776. Date: Fri, 2 Jan 1998 19:53:13 -0500
  777. From: "Brian E. Jones" <bejones@netunlimited.net>
  778. Subject: Re: (fractint) BEJ Formulas
  779.  
  780. Hi Angela,
  781.  
  782. >>I would very much like to see them, but I am missing the following
  783. referenced formula files...<<
  784.  
  785. The frms for the pars located at the Spanky site are available at:
  786.  
  787. http://spanky.triumf.ca/pub/fractals/formulas/bejones.frm
  788.  
  789. If you are wanting the all of the entire frm files, let me know and I'll
  790. send them to you.
  791.  
  792. BTW, there are several par files available on my web page in the download
  793. section.    |
  794.  
  795. |
  796. >>I noticed that Sylvie very sensibly made Gallet.frm (which was avaialbe at
  797. |
  798. Spanky) as the single point of reference for her par file.<<
  799. |
  800.  
  801. |
  802. Even the way I referenced my formulafile entries is chaotic!  %^#
  803. |
  804.  
  805. |
  806. Brian
  807. |
  808. http://ourworld.compuserve.com/homepages/Brian_E_Jones
  809. <-------------------------------|
  810.  
  811.  
  812. - -
  813. - ------------------------------------------------------------
  814. Thanks for using Fractint, The Fractals and Fractint Discussion List
  815. Post Message:   fractint@xmission.com
  816. Get Commands:   majordomo@xmission.com "help"
  817. Administrator:  twegner@phoenix.net
  818. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  819.  
  820. ------------------------------
  821.  
  822. Date: Fri, 2 Jan 1998 19:56:00 EST
  823. From: RBarn0001 <RBarn0001@aol.com>
  824. Subject: Re: (fractint) Jay's variation
  825.  
  826. In a message dated 98-01-02 18:30:51 EST, you write:
  827.  
  828. << Ron,
  829.  
  830.   - http:\\members.aol.com\RBarn0001
  831.  
  832.  I can't believe you used backslashes here. :)  It should be:
  833.  
  834.      http://members.aol.com/RBarn0001
  835.   >>
  836.  
  837. It has been a rough holiday. Major disaster at our seasonal place in upstate
  838. NY. I guess my brain has totally fried. I can't believe I did it either <g>.
  839. My apologies to all who tried to go visit.
  840. Ron
  841.  
  842. - -
  843. - ------------------------------------------------------------
  844. Thanks for using Fractint, The Fractals and Fractint Discussion List
  845. Post Message:   fractint@xmission.com
  846. Get Commands:   majordomo@xmission.com "help"
  847. Administrator:  twegner@phoenix.net
  848. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  849.  
  850. ------------------------------
  851.  
  852. Date: Fri, 02 Jan 1998 19:24:00 -0600
  853. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  854. Subject: Re: (fractint) Orchid fractals
  855.  
  856. Peter Jakubowicz wrote:
  857. >
  858. > Does anyone know alogrithms for creating *orchid fractals*,
  859. > invented by someone named Keith Still?
  860. >
  861.  
  862. Maybe the following will assist in your search:
  863.  
  864. ______________________________________________________________________
  865. G. Keith Still BSC is a graduate in Physical Sciences from RGIT
  866. (Aberdeen).  In the 1980's he was involved in the design of computer
  867. systems for electron microscope imaging and chemical analysis.  He
  868. developed computer systems for environmental data capture and analysis -
  869. Compliance Manger - and linked them into virtual reality for
  870. visualisation of data in four dimensions (including time).  That work
  871. led to the development of the VEgAS (Virtual Egress Analysis and
  872. Simulation) system - modelling egress from burning buildings.  This
  873. system has been reviewed internationally, with Keith appearing on
  874. various television programmes worldwide, and producing articles for
  875. national and international magazines and journals.  Keith has lectured
  876. at many organisations, including the Fire Research Station and the Fire
  877. Services College, Morton-on-the-Marsh.  VEgAS was the runner up in the
  878. innovation of the year award in 1992. 
  879.  
  880. Keith sold VEgAS to an international fire and ventilation company.  He
  881. then went on to created FMIG Limited and developed a more powerful
  882. system LEGION that uses the Orchid fractals, a discovery he made while
  883. recuperating from an operation on his back.  LEGION uses "entity
  884. oriented programming" and handles 250,000 individuals.
  885.  
  886. Orchid Fractals have applications for currency market analysis, data
  887. compression, data encryption, data analysis, digital fingerprinting and
  888. crowd dynamics analysis.  LEGION has received international coverage on
  889. European Business News and a variety of science magazines including the
  890. New Scientist and Reuters. 
  891.  
  892. Keith is currently registered at Warwick University (under Professor Ian
  893. Stewart) for a PhD in Mathematics.
  894.  
  895. What do three parameter fractals look like?
  896. The three interdependent functions are expressed as objective, motility
  897. and constraint.  This applies to a wide range of interactive systems
  898. from crowd dynamics to ecosystems modelling (Objective can also  be
  899. expressed as a function of some environmental change). Using phase space
  900. diagrams to illustrate these as two dimensional objects, to Keith's
  901. delight, they produce rich, beautiful and very complex shapes.
  902.  
  903. The author named these Orchid fractals (the internal shapes reminded him
  904. of an Orchid).  They map the interactions within this type of dynamic
  905. systems.  It would require a trained mathematician to use the
  906. relationship between geometry and dynamic systems within the Orchid 
  907. phase space diagrams and to non-scientists they are just pretty shapes.
  908.  
  909. However, Keith's entity oriented programming technique's use these
  910. fractals to map these interactions inside a virtual reality model that
  911. is more understandable than a phase space diagram.
  912.  
  913. Some curious phenomena of Orchid projections are that, when applied to
  914. some mathematical functions (for example the stock market) they distill
  915. out strange attractors.  They produces shapes, full of detail and
  916. mini-bifurcations but self-organising as if there was a higher order,
  917. limiting function holding them together.  Applications for these
  918. algorithms include data compression, data encryption, currency market
  919. analysis and digital fingerprinting techniques.  Keith is currently
  920. developing a series of applications using the Orchid Fractals.
  921. ______________________________________________________________________
  922.  
  923. - -
  924. - ------------------------------------------------------------
  925. Thanks for using Fractint, The Fractals and Fractint Discussion List
  926. Post Message:   fractint@xmission.com
  927. Get Commands:   majordomo@xmission.com "help"
  928. Administrator:  twegner@phoenix.net
  929. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  930.  
  931. ------------------------------
  932.  
  933. Date: Fri, 02 Jan 1998 20:49:20 -0500
  934. From: Jack Valero <jval@globalserve.net>
  935. Subject: Re: (fractint) My new homepage!
  936.  
  937. At 01:34 AM 02/01/98 -0500, Paul wrote:
  938. <snip>
  939. >Guy posts in HTML(:P), asking us to see his fractal page, and then
  940. >neglects to supply the URL. Ladies and gentlemen, we have a newbie!
  941. <snip>
  942.  
  943. Aw, come on Paul. We were all newbies once and most of us are
  944. still newbies at something. I'd rather give newcomers some
  945. helpful advice by private email than ridicule them publicly.
  946.  
  947. If I was shot down for all my mistakes I'd have died from
  948. embarrassment before I got started!
  949.  
  950. Regards - Jack
  951.  
  952. visit our fractal gallery: http://www.globalserve.net/~jval/
  953.  
  954. - -
  955. - ------------------------------------------------------------
  956. Thanks for using Fractint, The Fractals and Fractint Discussion List
  957. Post Message:   fractint@xmission.com
  958. Get Commands:   majordomo@xmission.com "help"
  959. Administrator:  twegner@phoenix.net
  960. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  961.  
  962. ------------------------------
  963.  
  964. Date: Fri, 02 Jan 1998 20:49:25 -0500
  965. From: Jack Valero <jval@globalserve.net>
  966. Subject: Re: (fractint) DEEPER Program
  967.  
  968. At 02:38 PM 02/01/98 -0800, Angela wrote:
  969. >I was mentioning the other day to someone starting a homepage that your
  970. >page is an example of truly fine web style..<snip>
  971.  
  972. Thank you. Six months ago I thought HTML was a four letter word
  973. I hadn't heard yet. Only a couple of months ago a number of
  974. readers of this list gave me valuable advice in correcting
  975. a browser width problem I had. If *I* can do this it means there
  976. is hope for us all.
  977.  
  978. I'm just putting the finishing touches on a complete redesign
  979. of our gallery pages. It is much slicker with a (I think...)
  980. unique way of exploring the gallery. A few more images and
  981. larger pics. The bandwidth will suffer a little but such
  982. is the price of style. Sigh...
  983.  
  984. Thanks again. I'll tell Margaret :)
  985. Regards - Jack
  986.  
  987. visit our fractal gallery: http://www.globalserve.net/~jval/
  988.  
  989. - -
  990. - ------------------------------------------------------------
  991. Thanks for using Fractint, The Fractals and Fractint Discussion List
  992. Post Message:   fractint@xmission.com
  993. Get Commands:   majordomo@xmission.com "help"
  994. Administrator:  twegner@phoenix.net
  995. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  996.  
  997. ------------------------------
  998.  
  999. Date: Fri, 02 Jan 1998 19:49:02 -0600
  1000. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  1001. Subject: Re: (fractint) Orchid fractals
  1002.  
  1003. Peter Jakubowicz wrote:
  1004. >
  1005. > Does anyone know alogrithms for creating *orchid fractals*,
  1006. > invented by someone named Keith Still?
  1007. >
  1008.  
  1009. You might also check with Homer Wilson Smith (of Art Matrix) about some
  1010. "Peitgen" and "Orchid" images used in an IAIN SOFTLEY Film called "H A C
  1011. K E R S" (by UNITED ARTISTS PICTURES).
  1012.  
  1013.  
  1014. Advanced Graphical Technology & FMIG Ltd. - Entity-oriented programming
  1015. by G. Keith Still.  Check out the Orchid Fractal Explorer at the
  1016. following URL:
  1017.         http://dspace.dial.pipex.com/town/plaza/ae111/
  1018.  
  1019. - -
  1020. - ------------------------------------------------------------
  1021. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1022. Post Message:   fractint@xmission.com
  1023. Get Commands:   majordomo@xmission.com "help"
  1024. Administrator:  twegner@phoenix.net
  1025. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1026.  
  1027. ------------------------------
  1028.  
  1029. Date: Fri, 02 Jan 1998 18:44:54 -0800
  1030. From: Wizzle <wizzle@cci-internet.com>
  1031. Subject: (fractint) From Paul Carlson
  1032.  
  1033. Paul writes
  1034.  
  1035. Well, I tried again today - the Fractint list is still bouncing
  1036. all my email back to me, so could I impose upon you again to send
  1037. the following for me?  I think you'll like this one - it's kind
  1038. of cute.  Thanks.  Paul
  1039.  
  1040. - ----------------------------------------------------------------
  1041. The par file that accompanied my 3D_Phoenix_Spirals formula that
  1042. Lee Skinner posted here for me some time ago produced a rather "elegant"
  1043. fractal.  The par file below produces my favorite 3D_Phoenix_Spirals
  1044. fractal -  I think it has a real "whimsical" quality to it.  It looks
  1045. to me like the thingy on the left is saying to the thingy on the
  1046. right, "Hello there, haven't I seen you someplace before?"
  1047.  
  1048. whimsical          { ; Copyright (c) Paul W. Carlson, 1997
  1049.   reset=1920 type=formula formulafile=phxspirs.frm
  1050.   formulaname=3D_Phoenix_Spirals passes=t
  1051.   corners=0.5762403157945/0.5762421404185/0.786099693384/0.786101061852
  1052.   params=0.563/0/2/125 float=y maxiter=300 inside=253
  1053.   outside=summ colors=000n_z<123>I0Kjzb<123>4E0000<3>000
  1054.   }
  1055.  
  1056. Paul Carlson
  1057.  
  1058.  
  1059. - -
  1060. - ------------------------------------------------------------
  1061. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1062. Post Message:   fractint@xmission.com
  1063. Get Commands:   majordomo@xmission.com "help"
  1064. Administrator:  twegner@phoenix.net
  1065. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1066.  
  1067. ------------------------------
  1068.  
  1069. Date: Fri, 02 Jan 1998 20:27:12 -0800
  1070. From: kathy roth <kroth@well.com>
  1071. Subject: (fractint) Fractint (Moving Sideways)
  1072.  
  1073. I hope someone can help with this- I  have been reading
  1074. all the posts about saving par files and  I am
  1075. still having problems with some of them.  I would really
  1076. like to get 3D_balls by Paul Carlson - it sounds like it
  1077. is fun and I would like to get the images from the pars that
  1078. other people have made out of it.  Les St. Clair's don't seem
  1079. to work either.  ( The New Year message worked ok in the
  1080. attachment.)  Nearly all the other pars and formulas work now.
  1081. I am using Netscape 4.04 and Fractint 19.6, and I open them
  1082. into Pfe32 and save them as whatever.frm or .par. (into
  1083.  the same directory as Fractint without defining exactly where
  1084. it goes) and it sometimes it  seems to hunt for a formula but usually
  1085. finds it. ( I thought I was doing something wrong but so many of
  1086. them do work that I think this is probably not it- duuuhhhh!)
  1087. (Maybe it's my brain- ohhhhnooooooooooooooo)
  1088. Maybe it is the server or maybe it would work better in the
  1089. earlier version of Netscape.  Can someone re-post  (or send
  1090. to my address)  3D_balls  and I can see if it works better in an
  1091. earlier version of Netscape, or any other suggestions would be welcome.
  1092.  
  1093.  
  1094. - -
  1095. - ------------------------------------------------------------
  1096. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1097. Post Message:   fractint@xmission.com
  1098. Get Commands:   majordomo@xmission.com "help"
  1099. Administrator:  twegner@phoenix.net
  1100. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1101.  
  1102. ------------------------------
  1103.  
  1104. End of fractint-digest V1 #58
  1105. *****************************
  1106.  
  1107.