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

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #175
  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         Sunday, April 26 1998         Volume 01 : Number 175
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Sat, 25 Apr 1998 21:41:38 -0400 (EDT)
  18. From: cjc26@cornell.edu
  19. Subject: Re: (fractint) Strngy Mandlebrot
  20.  
  21. On Sat, 25 Apr 1998, Angela Wilczynski wrote:
  22.  
  23. > No strings.  Also, in the first line of the par, there is no float=y > >
  24. What is that? Does that cause the "strings"???? Can float=y be set in one
  25. of the > options?? I looked but didn't see it. 
  26.  
  27. I'm guessing "float=y" means that floating-point is turned on.  (The 
  28. "Floating Point Algorithm" from the basic options screen)
  29.  
  30. - --Cliff
  31.   http://www.people.cornell.edu/pages/cjc26/
  32.  
  33. - -
  34. - ------------------------------------------------------------
  35. Thanks for using Fractint, The Fractals and Fractint Discussion List
  36. Post Message:   fractint@xmission.com
  37. Get Commands:   majordomo@xmission.com "help"
  38. Administrator:  twegner@phoenix.net
  39. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  40.  
  41. ------------------------------
  42.  
  43. Date: Sat, 25 Apr 1998 21:10:58 -0500 (CDT)
  44. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  45. Subject: (fractint) Perfect(?) spiral formula
  46.  
  47. comment {
  48. This formula and pars create two spiral images using the
  49. Pokorny equation, w=1/(w*w+c), and my flexball rendering
  50. method.
  51.  
  52. I've called the first image "perfect_spiral" because it
  53. has what I think is a beautiful rate of convergence.  The
  54. spiral has a real nice "circularity" to it.  Although my
  55. recently posted harlequin spiral is my alltime favorite
  56. spiral, this spiral is the most perfectly shaped spiral
  57. I've seen in a fractal.  I don't know - maybe I'm making
  58. too much of it - what do you think?
  59.  
  60. The second spiral, "solid_spiral," has a more common shape
  61. found in fractal images, but is still quite pretty with a
  62. very solid look to it.
  63.  
  64. Paul Carlson
  65. }
  66.  
  67. frm:FlexBalls_Pky {; Copyright (c) Paul W. Carlson, 1998
  68.     ; p1       = Julia set coordinates
  69.     ; real(p1) = radius of center of ring (0.01 to 10)
  70.     ; imag(p2) = one half thickness of ring (0.01 to p1)
  71.     ; real(p3) = iterations to skip
  72.     ; imag(p3) = bailout value for |w|
  73.     ;
  74.     w = pixel
  75.     c = p1
  76.     z = iter = bailout = 0
  77.     d0 = real(p2) + imag(p2)
  78.     d1 = 0.382683432365 * real(p2)
  79.     d2 = 0.923879532511 * real(p2)
  80.     dsqd = d0 * d0 + real(p2) * real(p2) - (d0 + d0) * d2
  81.     :
  82.     w = 1 / (w * w + c)
  83.     ;
  84.     IF ((abs(cabs(w) - real(p2)) < imag(p2)) && iter > real(p3))
  85.     bailout = 1
  86.     wr = real(w), wi = imag(w)
  87.     awr = abs(wr), awi = abs(wi)
  88.     IF (awr >= awi)
  89.         dist = (awr - d2) * (awr - d2) + (awi - d1) * (awi - d1)
  90.         adjust = 1
  91.     ELSE
  92.         dist = (awr - d1) * (awr - d1) + (awi - d2) * (awi - d2)
  93.         adjust = 0
  94.     ENDIF
  95.     IF     (wr >= 0 && wi >= 0)
  96.         range_num = 1 - adjust
  97.     ELSEIF (wr < 0 && wi >= 0)
  98.         range_num = 2 + adjust
  99.     ELSEIF (wr < 0 && wi < 0)
  100.         range_num = 5 - adjust
  101.     ELSE
  102.         range_num = 6 + adjust
  103.     ENDIF
  104.     ratio = sqrt(dist / dsqd)
  105.     z = 29 * ratio + range_num * 30 + 1
  106.     ENDIF
  107.     iter = iter + 1
  108.     z = z - iter
  109.     bailout == 0 && |w| < imag(p3)
  110. }
  111.  
  112. perfect_spiral     { ; Copyright (c) Paul W. Carlson, 1998
  113.   reset=1960 type=formula formulafile=fbpky.frm
  114.   formulaname=flexballs_pky passes=t
  115.   center-mag=-1.13043/1.0438/28.41217/1/180
  116.   params=-0.408904407794/0.5007793232810001/0.12/0.1/50/1000
  117.   float=y maxiter=242 inside=253 outside=summ
  118.   colors=000zW0<28>c40zz0<28>aG00zR<28>0C40zz<28>0CCGGz<28>00Of\
  119.   Oz<28>I0Kz0f<28>O08z88<28>O00000<13>000 cyclerange=1/240
  120.   }
  121.  
  122. solid_spiral       { ; Copyright (c) Paul W. Carlson, 1998
  123.   reset=1960 type=formula formulafile=fbpky.frm
  124.   formulaname=flexballs_pky passes=t
  125.   center-mag=0.972403/0.660603/21.17126/1/-37.498
  126.   params=-0.401846/0.513278/0.2/0.2/0/1000
  127.   float=y maxiter=300 inside=253 outside=summ
  128.   colors=000z0f<28>O08z88<28>O00zW0<28>c40zz0<28>aG00zR<28>0C40\
  129.   zz<28>0CCGGz<28>00OfOz<28>I0K000<13>000 cyclerange=1/240
  130.   }
  131.  
  132.  
  133. - -
  134. - ------------------------------------------------------------
  135. Thanks for using Fractint, The Fractals and Fractint Discussion List
  136. Post Message:   fractint@xmission.com
  137. Get Commands:   majordomo@xmission.com "help"
  138. Administrator:  twegner@phoenix.net
  139. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  140.  
  141. ------------------------------
  142.  
  143. Date: Sat, 25 Apr 1998 23:02:28 -0400
  144. From: Gedeon Peteri <gedeon@InfoAve.Net>
  145. Subject: Re: (fractint) Strngy Mandlebrot
  146.  
  147. Angela Wilczynski wrote:
  148.  
  149. > As far as I can tell, the mandlebrot that is the default in Fractint isn't
  150. > "stringy" like the one in this par.
  151. >
  152. > Here is a par for the default mandlebrot
  153. >
  154. > No strings.  Also, in the first line of the par, there is no    float=y
  155. >
  156. > What is that? Does that cause the "strings"???? Can float=y be set in one of the
  157. > options?? I looked but didn't see it.
  158. >
  159.  
  160. No, float=y does not cause the strings. The default set does not have strings
  161. because it is the full set. The stringy one of your par is a zoom, one of the major
  162. midgets on the spike. It has strings whether you generate it with float or not. Zoom
  163. into its seahorse valley, and you'll see more strings with julias galore there too.
  164. I have no idea why this is so, since the seahorse valley of the full m-set does not
  165. have those strings extending into the middle of the valley. One of the
  166. mathematicians on this list will have to enlighten us about that.
  167.  
  168. Gedeon
  169.  
  170.  
  171. - -
  172. - ------------------------------------------------------------
  173. Thanks for using Fractint, The Fractals and Fractint Discussion List
  174. Post Message:   fractint@xmission.com
  175. Get Commands:   majordomo@xmission.com "help"
  176. Administrator:  twegner@phoenix.net
  177. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  178.  
  179. ------------------------------
  180.  
  181. Date: Sat, 25 Apr 1998 20:20:33 -0700 (MST)
  182. From: Kerry Mitchell <lkmitch@primenet.com>
  183. Subject: Re: (fractint) Strngy Mandlebrot
  184.  
  185. Here's a heuristic argument (beware of waving hands!):
  186.  
  187. The midgets have "strings" where the full set does not, and the deeper the
  188. zoom, the more "strings" the midget has.  One suggestion is that, when
  189. zooming deeper into the set, you're using more iterations.  Each midget
  190. that you find has a point it in that is like (0,0) in the main set:  the
  191. orbit of this point contains (0,0).  Now, these points can be found by
  192. looking at the locus of all points that have zero in their orbit:
  193.  
  194. f1(c) = c = 0 gives the main set
  195. f2(c) = f1*f1+c = c*c + c = 0 gives the main set and the large disk
  196. f3(c) = 0 = f2*f2+c gives the large midget at -1.75 and some disks
  197. etc.
  198.  
  199. Each additional iteration doubles the number of points (midgets or disks)
  200. that there must be.  When using many iterations, this number increases
  201. very quickly.
  202.  
  203. The point?  Maybe the midgets are so "stringy" because it provides a place
  204. to put all these other midgets.
  205.  
  206. Kerry Mitchell
  207.  
  208. - -------------------------------------------------------------------------------
  209. Kerry Mitchell
  210. lkmitch@primenet.com
  211. - -------------------------------------------------------------------------------
  212.  
  213.  
  214. - -
  215. - ------------------------------------------------------------
  216. Thanks for using Fractint, The Fractals and Fractint Discussion List
  217. Post Message:   fractint@xmission.com
  218. Get Commands:   majordomo@xmission.com "help"
  219. Administrator:  twegner@phoenix.net
  220. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  221.  
  222. ------------------------------
  223.  
  224. Date: Sat, 25 Apr 1998 22:29:19 -0500
  225. From: Felix <aduhan@TTACS.TTU.EDU>
  226. Subject: Re: (fractint) Fractal Chatting
  227.  
  228. This note on chating makes me think:  How many of you are on ICQ?
  229. I would be glad to try and organize an informal ICQ gathering time, or even an
  230. official room if a few of you would join...
  231.  
  232. My ICQ# is 10363110 - you might try me there before posting...
  233.  
  234. - -Andrew
  235.  
  236.  
  237. Angela Wilczynski wrote:
  238.  
  239. > If anyone would like to join us, Paul Carlson and I will be trying out IRC
  240. > chatting at 8PM Pacific Standard Time on the Undernet. We will be in
  241. > #fractals......
  242.  
  243.  
  244.  
  245. - --
  246. | Andrew Duhan    |  Cereal is g00d   |
  247. | aduhan@ttu.edu  |   ICQ 10363110    |
  248. | http://chimera.acs.ttu.edu/~aduhan/ |
  249.  
  250.  
  251.  
  252. - -
  253. - ------------------------------------------------------------
  254. Thanks for using Fractint, The Fractals and Fractint Discussion List
  255. Post Message:   fractint@xmission.com
  256. Get Commands:   majordomo@xmission.com "help"
  257. Administrator:  twegner@phoenix.net
  258. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  259.  
  260. ------------------------------
  261.  
  262. Date: Sat, 25 Apr 1998 22:49:05 
  263. From: "Nhan Nguyen" <nguy0505@tc.umn.edu>
  264. Subject: Re: (fractint) Got a new printer
  265.  
  266. Angela,
  267.  
  268. GOOD GOD!! Is that how much the Epson 3000 cost???!!! I had no clue as to 
  269. how much it was. I just heard some amazing stuff it can do. The ink tanks 
  270. are also costly is what I heard...around 240.00 or more for all of them. 
  271. OUCH! 
  272.  
  273. I just hope that my friend doesn't mess up while printing, that would not be 
  274. good. She's a graphics designer to some extent, so she has to get up-to-date 
  275. printers. I'm just lucky she accepted my request to print a large fractal 
  276. for me. TTYL! Chatting now....
  277.  
  278. Lucky Lav
  279.  
  280.  
  281.  
  282.  
  283.  
  284. - -
  285. - ------------------------------------------------------------
  286. Thanks for using Fractint, The Fractals and Fractint Discussion List
  287. Post Message:   fractint@xmission.com
  288. Get Commands:   majordomo@xmission.com "help"
  289. Administrator:  twegner@phoenix.net
  290. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  291.  
  292. ------------------------------
  293.  
  294. Date: Sat, 25 Apr 1998 23:49:02 -0700
  295. From: Mark Christenson <mchris@hooked.net>
  296. Subject: (fractint) misc. / catching up
  297.  
  298. comment { commentary and pars by Mark "Bud" Christenson 4/25/98
  299.  
  300. Hi, all.  Sorry I've been incommunicado for a week, but duties
  301. call.  I'm finally getting around to some fractal activities.  Man,
  302. what a busy bunch of fractal fanatics!  So much going on.
  303. Paul continues to churn out new and interesting ways to filet
  304. fractals, Wizzle continues her chromatic wizardry, Tim and
  305. crew continue to bust hump on v20.0, and the rest keep piling
  306. logs on the bonfire.
  307.  
  308. A few specific notes (in more or less chronological order): 
  309.  
  310. 1) Thanks to those who checked my site update, and special 
  311. thanks to Wizzle and Gedeon for the kind words
  312.  
  313. 2) Thanks to Janet for the updated resource list
  314.  
  315. 3) To Jim M, I enjoyed "Wackyland" (is he on this list?)
  316.  
  317. 4) Thanks to Paul Lee for indexing Jim's Muth's FOTD
  318.  (I know *he's* on this list)
  319.  
  320. 5) Enjoyed Spiralgia2 (Kathy Roth, a modified Gallet from a 
  321.  Carr formula with a Mitchell "bumpy" palette - puts tie-dye 
  322.  to shame) and the Etudes, especially  No._01 (Bob Margolis
  323.  from a Gallet formula - I guess Sylvie was working with real 
  324.  function fractals long before gravijul-v2!)
  325.  
  326. I also enjoyed "the_godhead", so much that I had to defile it
  327. (I hope you're not *too* offended, Kathy).  I also reaped some
  328. fruit from "the great color map hunt", applying one of Sylvie's 
  329. palettes to a new zoom of "Jester".  It looks like a feather
  330. headdress to me.
  331.  
  332. A request: I can't seem to find MyEqn_Julia, Carr2958, and Eqn_5.
  333.  
  334.  
  335. Later, Bud
  336. }
  337.  
  338. ;*** pars:
  339.  
  340. the_godhead-b      { ; kathy roth 4-8-98 - recolor by Bud 4/25/98
  341.                      ; Bob Carr's formula modified by Sylvie Gallet
  342.   reset=1960 type=formula formulafile=filist.frm formulaname=carr3197
  343.   passes=1 center-mag=0.00120777/0.217085/4.191818
  344.   params=100/100/100/100 float=y maxiter=3000 inside=253 outside=summ
  345.   colors=0000eW<19>022000211<30>zsX<30>222000101<30>w0_<30>202000111<30>ss\
  346.   s<30>222000021<30>0zk<5>0ob00V0_k0Zi cyclerange=0/255
  347.   }
  348.  
  349. gja2-023           { ; "Headdress" (c) Bud 4/18/98 / color map by Sylvie Gallet
  350.                      ; "Jester" zoom
  351.   reset=1930 type=formula formulafile=budz.frm formulaname=gravijul-a2
  352.   function=recip/atanh/atan passes=t
  353.   center-mag=1.33227e-015/4.84138/0.2074202
  354.   params=1/0.9/-0.02/0/1.05/2.96 float=y maxiter=300 inside=111
  355.   decomp=256
  356.   colors=vvtwwu<10>wwgwwfwvevud<4>tqZtpYsoXsnVrmUrmT<21>eT6eS5eS5<29>O31N2\
  357.   0O41N20<10>Q72R82R82S93TA3<14>gQ5hR5iS4<3>mW3nX2nX2nY2<6>rc0rc0rb0<4>pZ1\
  358.   pY1oX2nX2<11>aL4`K4ZI3<2>UG3SG4QF4OF5ME5<2>GC6DB7DB7<74>ssrttsttstts<10>\
  359.   vvt000kkk cyclerange=0/255
  360.   }
  361.  
  362. ;*** frms:
  363.  
  364. frm:Carr3197(YAXIS){;Modified Sylvie Gallet frm. [101324,3444],1996
  365. ;passes=1 needs to be used with this PHC formula.
  366. pixel=-abs(real(pixel))+flip(imag(pixel)),
  367. d=log(1/pixel-cos(1/pixel))
  368. b4=pixel^2-(0.2*cabs(0.2-pixel^-0.025))
  369. b5=flip(b4)^2-cabs(0.1/pixel-flip(0.01/b4))-conj(0.1/pixel)-0.65
  370. c=whitesq*b4-(whitesq==0)*b4
  371. z=whitesq*b5-(whitesq==0)*b5
  372. c1=1.5*z^1.2,c2=2.25*conj(z),c3=3.375*flip(z),c4=5.0625*flip(z),
  373. l1=real(p1),l2=imag(p1),l3=real(p2),l4=imag(p2),
  374. bailout=16,iter=0:
  375. t1=(iter==l1),t2=(iter==l2),t3=(iter==l3),t4=(iter==l4),
  376. t=1-(t1||t2||t3||t4),z=z*t,c=c*t+c1*t1+c2*t2+c3*t3+c4*t4,
  377. z=z^2+(-0.7456,-0.132)+cabs(|c/7.5|)+flip(real(|d/80*pixel|)),
  378. 0iter=iter+1
  379. (|z|)<=bailout
  380. }
  381.  
  382. frm:gravijul-a2 { ; generalized r^(-2) by Mark "Bud" Christenson 3/6/98
  383. ; favors p2
  384. ; defaults: p1 = (1,1) p2 = (0,0) p3 = (1,4)
  385.   q4 = p2
  386.   q2 =real(p1)
  387.   q1 = imag(p1) ; new knob 1
  388.   q3 = real(p3) ; new knob 2
  389.   q5 = imag(p3) ; bailout
  390.    z = pixel:
  391.    v = fn1(z)
  392.    w = q1*(v*v)
  393.    z = q3*fn3(q2/fn2(w)) + q4
  394.     |z| < q5
  395.   }
  396.  
  397.  
  398.  
  399. - -
  400. - ------------------------------------------------------------
  401. Thanks for using Fractint, The Fractals and Fractint Discussion List
  402. Post Message:   fractint@xmission.com
  403. Get Commands:   majordomo@xmission.com "help"
  404. Administrator:  twegner@phoenix.net
  405. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  406.  
  407. ------------------------------
  408.  
  409. Date: Sun, 26 Apr 1998 03:33:03 -0700 (PDT)
  410. From: Jiho Kim <kimjd@plu.edu>
  411. Subject: (fractint) Another mandelbrot
  412.  
  413. funnel           { ; a weird 3d abyss
  414. reset=1960 type=mandel
  415. center-mag=-0.74768045740803170/-0.14830237742746590/4.262502e+009/1.108\
  416. 1/180 params=0/0 float=y maxiter=2147483647
  417. colors=CCCsssU0Xrrrb0Oqqqj0Gpppr08oooz00nnnz60mmmzE0lllzM0kkkzU0jjjza0ii\
  418. izi0hhhzq0gggzy0ffftz0eeelz0ddddz0cccXz0bbbPz0aaaHz0```Ex5___BuBZZZ9qHYY\
  419. Y6nNXXX3kTWWW0gZVVV0YeUUU0NkTTT0EqSSS03xRRR60tQQQE0lPPPM0dOOOU0XNNNb0OMM\
  420. Mj0GLLLr08KKKz00JJJz60IIIzE0HHHzM0GGGzU0FFFza0EEEzi0DDDzq0CCCzy0BBBtz0AA\
  421. Alz0999dz0888Xz0777Pz0666Hz0555Ex5444BuB3339qH2226nN1113kT0000gZ0bb0000S\
  422. h1110Jn22208u33320x444A0p555I0h666Q0`777Z0S888f0K999n0CAAAv04BBBz20CCCzA\
  423. 0DDDzI0EEEzQ0FFFzY0GGGze0HHHzm0IIIzu0JJJxz0KKKpz0LLLhz0MMM`z0NNNTz0OOOLz\
  424. 0PPPFy2QQQDv8RRRAsESSS7pKTTT4mQUUU2jWVVV0bbWWW0ShXXX0JnYYY08uZZZ20x___A0\
  425. p```I0haaaQ0`bbbZ0Scccf0Kdddn0Ceeev04fffz20gggzA0hhhzI0iiizQ0jjjzY0kkkze\
  426. 0lllzm0mmmzu0nnnxz0ooopz0ppphz0qqq`z0rrrTz0sssLz0tttFy2uuuDv8vvvAsEwww7p\
  427. Kxxx4mQzzz2jWzzz0bbyyy0Shxxx0Eqwww03xvvv60tuuuE0ltttM0d
  428. }
  429.  
  430. I don't know if people have discovered this part of the set already, but
  431. I'll submit it anyway...  :) 
  432.  
  433. Jiho
  434.  
  435.  
  436. - -
  437. - ------------------------------------------------------------
  438. Thanks for using Fractint, The Fractals and Fractint Discussion List
  439. Post Message:   fractint@xmission.com
  440. Get Commands:   majordomo@xmission.com "help"
  441. Administrator:  twegner@phoenix.net
  442. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  443.  
  444. ------------------------------
  445.  
  446. Date: Sun, 26 Apr 1998 08:18:38 EDT
  447. From: Bill at NY <BillatNY@aol.com>
  448. Subject: Re: (fractint) Got a new printer
  449.  
  450. Hi everyone!  I've also been looking to buy a new printer.  One model I've
  451. come across is the ALPS MD1300.  I sent for their literature and it certainly
  452. appears attractive.  (Here's the URL for their website:
  453. http://www.alpsusa.com/cgibin/var/alpsusa/index.html)
  454.  
  455. Anyway, it's so different from the inkjets that I'd like to get some feedback
  456. from someone out there who has actually tried it.  I found it at CompUSA for
  457. $550.  They have one set up so that you can print out a "test" image on their
  458. special photographic quality paper.  It really looks impressive.  But of
  459. course, that's advertising and I'd prefer some real-life stories.  Anyone?
  460.  
  461. Bill
  462.  
  463. - -
  464. - ------------------------------------------------------------
  465. Thanks for using Fractint, The Fractals and Fractint Discussion List
  466. Post Message:   fractint@xmission.com
  467. Get Commands:   majordomo@xmission.com "help"
  468. Administrator:  twegner@phoenix.net
  469. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  470.  
  471. ------------------------------
  472.  
  473. Date: Sun, 26 Apr 1998 07:40:50 -0500
  474. From: Bob Margolis <rttyman@wwa.com>
  475. Subject: (fractint) Re: A JPL Formula
  476.  
  477. > On Sat, 25 Apr 1998, Bob Margolis wrote:
  478. > > spiderM {z=pixel,f=pixel,g=pixel:
  479. > >          f=f/p1+z,
  480. > >          z=fn1(z^(p2+g))+fn2(f),
  481. > >          |z| <= 4 }
  482.  
  483.  
  484. Hi Team Fractals:
  485.  
  486. So that it doesn't appear as if I'm the one who originated the spiderM
  487. formula I'm resending it with an inserted credit line to Monsieur JPL.
  488.  
  489. Bob
  490.  
  491.  
  492. spiderM {; by Jean-Pierre Louvet
  493. z=pixel,f=pixel,g=pixel:
  494. f=f/p1+z,
  495. z=fn1(z^(p2+g))+fn2(f),
  496. |z| <= 4 }
  497.  
  498. - -
  499. - ------------------------------------------------------------
  500. Thanks for using Fractint, The Fractals and Fractint Discussion List
  501. Post Message:   fractint@xmission.com
  502. Get Commands:   majordomo@xmission.com "help"
  503. Administrator:  twegner@phoenix.net
  504. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  505.  
  506. ------------------------------
  507.  
  508. Date: Sun, 26 Apr 1998 09:29:23 -0400
  509. From: Gedeon Peteri <gedeon@InfoAve.Net>
  510. Subject: Re: (fractint) Strngy Mandlebrot
  511.  
  512. Here are some julia-like structures located on the "strings" of various midgets of the
  513. M-set. All of them have midgets in the center, and lots of other places too. Some of
  514. these are slow.
  515.  
  516. Gedeon
  517.  
  518. gp-mand053             {
  519.   reset=1960 type=mandel passes=1
  520.   corners=-1.90736945521764093029/-1.9073694552176409\
  521.   0116/1.6239734721606419e-5/1.6239734721628266e-5
  522.   params=0/0 float=y maxiter=5000 bailoutest=or inside=0
  523.   colors=0UVXr2Yu2Zw2_x2_x3_x2Zv2Yu2Xs2Vo2Ul1<3>\
  524.   LV153V63Z74d84h85m95q95sA6vA6xA6y<2>B6z<2>A5t95q85m<3>\
  525.   53WP2L<3>c3_g3bi4fk4jm4nn4qn4un4q<2>i4fg3bd3\
  526.   _a3WY3ST2PQ2LBDA<4>WXQ_`UcdXgg`llcopgopgllc<2>__UWWRSTN\
  527.   <2>GHDK82<3>dI5iL6mO6<3>xZ8xZ8<2>pR7mO6iL6<2>WD4RB3L820\
  528.   L40N40R5<3>0`70b70c80d80d80d8<3>0Z70X60U6<2>0L4I01<2>\
  529.   Q02T02V13X13Z13<2>`14`14_14<3>T02R02O02L02I01ML2<9>vv\
  530.   6vv6<9>ML23KL3OP4SS5WX<5>8sr9wv8sr<4>5__5WX4SS3OP3KL1Z_1c\
  531.   d1gh1km1op1qs2tv2uw2wx2xy2wy2vw2tv1rs1op1lm<3>0VWV02<3>\
  532.   l04p05r05u06w06x17y17y17x17w06u06<2>m04<3>W02UNA<2>gXGk`In\
  533.   bKqdMsfOuhQviSwiUviSuhQsfOqeMnbKk`I<3>VOAKU1<2>Rh1Ul1Vo2
  534.   }
  535.  
  536. gp-mand060             {
  537.   reset=1960 type=mandel passes=1
  538.   corners=-0.16741233678878/-0.167412286361673/1.04129739\
  539.   136992/1.04129742919025 params=0/0 float=y maxiter=5000
  540.   bailoutest=and inside=0
  541.   colors=40Wjk_nnbpqdssfuugvvhvwivvhuugssfpqdnnbjk_<3>\
  542.   TUMHGT<3>ORjPTnQUpSWsSXuTYvTYvTYvSXuSWsQUpPTn<4>HGTJC8\
  543.   <3>SHEUJFVJGXKIYLJYLKZMMZMMYLKYLJ<2>UJFSIEQGC<2>JC8HU1J\
  544.   Y1Mb2Pg2Rk2Uo2Vq3Xt3Yv3Yw3Zx3Yw3Yv3Xt3Vq3Uo2<4>HU1E3P<2\
  545.   >H4_I5bI5dJ6gJ7jK7kK8lK8mK8lK7kJ7j<2>I5bH4_G4WF3SE3PV31\
  546.   <4>q72s82v82x92yA2zA2zA2yA2x92v82s82q72<4>V31WV9`_AecBi\
  547.   hCmlDpoFsrGvtHxvIywJyxLywJxvIvtHsrGpoFmlD<3>WV91JU1MZ1P\
  548.   c1Rh2Ul2Wp2Xr2Zu2_v3_x3`y3`x2_w2Zu2Xr2Wp<4>1JUL04<2\
  549.   >S16U17V17<2>Z19_19_19<3>Y18X18V17U17<3>L04GVF<3>\
  550.   PlLRpNTrPUuQVvSVxTWyVWxTVwSUuQTrPRpN<4>GVF40_51d51i61m\
  551.   <4>71y71y71y71w71u71s61p61m<3>40WV92ZA2dB2hD3mE3<2>\
  552.   vI4xJ4yK4zM4zM4yK4xJ4<2>pF3mE3hD3dB2ZA2V92TUM<2>fgX
  553.   }
  554.  
  555. gp-mand078             {
  556.   reset=1960 type=mandel passes=1
  557.   center-mag=-1.36813761029174600/+0.00178562423048\
  558.   541/8.322979e+010/1/-19.998 params=0/0 float=y maxiter=5000
  559.   colors=47OV21W21W31<3>T21S20Q10<2>J10c38h39l3Ap3As4\
  560.   Bu4Cw4Dx4Ey4Fy4Fy4Fy4Ew4Du4Cs4Bp3Am3Ai39d3847R<2>69Z\
  561.   6Aa7Ab<3>8Dk9Dm9En<4>AHuBIvBIwBJxBJxBKyBLy<2>BKyBJxBJx\
  562.   BIwAHv<2>AGsAFr9Ep9En<3>8Bg7Be7Ab6Aa<3>47RLV2PZ3Td3Xh4`m4cq\
  563.   5<2>ox6ox6kv6gt5cq5<4>LW2QCT<4>WDkXDoXErYEvYEv<5>TD_SCX\
  564.   QCTPCPO62<2>W83Z83`93b94<3>jB5lC5mD5oE5pE5rF5<4>vI6wJ6w\
  565.   J6wK6wK6<2>vI6vI6uH6tG5tG5<4>mD5lC5jC4hB4<4>Z83W73U73R62\
  566.   13Y13a13e<2>15l15n15o16o16o15o<2>14j14h13e13b13Z3M\
  567.   1ZQ1cT1hY2l`2pd2<2>xp2xp2xp2<2>pd2m`2iY2dT2_Q1WM11LC\
  568.   <5>2SH2TH2UI2VI2WJ<2>3YL3ZL3_L3_L3_M<2>3aM3aM3aN3aN3aN\
  569.   <3>3aM3`M3`M3_M3_L<3>2YJ2XJ2WJ2VI2UI<6>1NDJ10<2>Q10S20T21U21
  570.   }
  571.  
  572. gp-mand083            {
  573.   reset=1960 type=mandel passes=1
  574.   center-mag=-0.54365421007946350/+0.65464514880706540/5.93\
  575.   3912e+007/1/-2.499 params=0/0 float=y maxiter=5000
  576.   bailoutest=manh
  577.   colors=000Su1<12>1QCW0W<14>zWz<15>W0W777<14>kkk<15>\
  578.   777W00<14>zWG<15>W0000W<14>0zz<15>00WG00<14>ylH<15>\
  579.   G00000<14>aaa<15>000W92<14>z00<14>W921QC<15>Wz0Ux0
  580.   }
  581.  
  582. gp-mand084            {
  583.   reset=1960 type=mandel passes=1
  584.   center-mag=-0.54365420422591380/+0.654645139328546\
  585.   60/3.108233e+010/1/20 params=0/0 float=y maxiter=5000
  586.   bailoutest=manh
  587.   colors=A0vuC2vC1xC1wC1xC0xCP<2>wCZ<2>oCgmCkiCmdCo_Cp\
  588.   WCqRCuLCvFCx9Cx2Dx3Fx3Fw3Gu3Hq<3>4Lk4Mg4Nd4Na<2>5SS5T9\
  589.   <5>4OB4NC4LC<3>3HE3GE3FE3FE2DEHHE<2>ONEQQDTSDVUCXWC<4>\
  590.   gfAji9lk9om9om1<14>HH2812A12B12<3>M32P42R42T52<5>Y71Y7O<\
  591.   4>U5ZT5aR4c<2>K3jI2lE2nB1pA1s81uIEuOJsUNpYRncVlgYjkagnc\
  592.   erfcuha<2>wjVxjTxjQxkOxk9xjBxjCwjHviKuiOuhSrfWoc_kacgYg\
  593.   cViYRkUNoOJsIEvC0sE0oG0kI1iK1g<3>P1SR1OR1KS2HT2CT2BU29U2A\
  594.   <3>R1LR1NP1Q<2>L1UK1VI1V<3>A0WCCW<2>MDWSEV<2>dHTh\
  595.   ISlIQnJNqKL<3>tNAtN0tM2sL3sL4qK6oJ7lI8iI9eHBaGCXFCTEDNDE\
  596.   <2>CCFFDF<3>KHDLIDMJCNLB<3>RP6RQ4SS3ST2TV0TV0<2>RQ1RP2QO\
  597.   2PN3OM3<6>GE69C6<2>RC5SC5VC5<2>hC3lC3oC3rC2
  598.   }
  599.  
  600. gp-mand097            {
  601.   reset=1960 type=mandel passes=1
  602.   center-mag=+0.44247053772441490/+0.37514823500652010/58\
  603.   4386.5 params=0/0 float=y maxiter=5000 bailoutest=or
  604.   logmap=131 logmode=fly
  605.   colors=C9EN15<5>V29X29X29<11>F020CK1HQ1LV1O_1Sc2Xh2`l2\
  606.   do2gr3lu<2>3wx3tx3pv3lu2gr2do2`l2Xi1Sd1O_1LW1HR0CLGAGKBJ\
  607.   <2>VFOZGQbIReJS<3>tOVtOV<4>bIRZGQVFO<4>C9FEEKIIQMMVQQZTT\
  608.   cYYg``kddohhqllt<2>wwwttwppullthhqddo``lYYhTTdQQ_M\
  609.   MWIIQEELIB7<2>YNEbRGfVJjZLnbNpfQsjSunUvrXvvZwvZvrXunUsjSq\
  610.   fQnbNkZL<3>UJCPF9JB71F31F31F31I41K5<2>1U72X82Z9<2>2gA2gA\
  611.   <5>1Q61O61K51I41F31F31F3I12<3>c35h45l46p56r57u57w57<2>y57\
  612.   <4>m46<2>_34V34P23J2211D<11>53v53v<11>11DDC9<4>WWR__UccX\
  613.   gg_kkcnofrsjtuktukrsj<2>gg_ccX__UWWRSSN<3>DC9IC0OH0UK0<2>gW1l_\
  614.   1oc1rg1uk1wo1xs1xw2xs1wo1<2>oc1l_1hW1cS1ZO0VK0PH0JC0F02<3>L14
  615.   }
  616.  
  617. gp-mand101            {
  618.   reset=1960 type=mandel passes=1
  619.   corners=-1.941540801902466/-1.941540798995427/0.00033426201\
  620.   30836713/0.0003342641933627336 params=0/0 float=y maxiter=5000
  621.   colors=C9Em46<2>_34V34P23J2211D<11>53v53v<11>11DDC9<4>\
  622.   WWR__UccXgg_kkcnofrsjtuktukrsj<2>gg_ccX__UWWRSSN<3>DC9IC0\
  623.   OH0UK0<2>gW1l_1oc1rg1uk1wo1xs1xw2xs1wo1<2>oc1l_1hW1cS1ZO0VK0\
  624.   PH0JC0F02<10>V29X29X29<11>F020CK1HQ1LV1O_1Sc2Xh2`l2do2gr3lu\
  625.   <2>3wx3tx3pv3lu2gr2do2`l2Xi1Sd1O_1LW1HR0CLGAGKBJ<2>VFOZGQb\
  626.   IReJS<3>tOVtOV<4>bIRZGQVFO<4>C9FEEKIIQMMVQQZTTcYYg``kddohhqllt\
  627.   <2>wwwttwppullthhqddo``lYYhTTdQQ_MMWIIQEELIB7<2>YNEbRGfVJjZLn\
  628.   bNpfQsjSunUvrXvvZwvZvrXunUsjSqfQnbNkZL<3>UJCPF9JB71F31F31F31I\
  629.   41K5<2>1U72X82Z9<2>2gA2gA<5>1Q61O61K51I41F31F31F3I12<3>c35h45\
  630.   l46p56r57u57w57<2>y57<3>p56
  631.   }
  632.  
  633. gp-mand103            {
  634.   reset=1960 type=mandel passes=1
  635.   corners=-0.1595205252184/-0.1595087300444/1.03825115891/1.038\
  636.   27551539/-0.1595281230913/1.03826235549 params=0/0 float=y
  637.   maxiter=5000 bailoutest=or inside=0
  638.   colors=G11WBF<6>vLSvLS<6>WBFVVV<6>tuutuu<6>VVVW8X<6>uCvuCv\
  639.   <6>W8XAWW<6>CvuCvu<6>AWWJ21<4>U32X33X33<6>G114W4<6>8u78u7\
  640.  <6>4W4F4W<5>R7rT8uT8u<6>F4WWVK<6>uu_uu_<6>WVK6H8<5>BUFCW\
  641. GCWG<6>6H8X3A<6>v5Dv5D<6>X3A2WU<6>3vs3vs<6>2WUXEC<6>\
  642. vRGvRG<6>XECW8X<6>uCvuCv<6>W8XCWQ<6>IuaIua<5>D_SCWQ9JX\
  643.  <5>HVsIXwIXw<6>9JXVV4<6>vs8vs8<6>VV4
  644.   }
  645.  
  646. gp-mand107            {
  647.   reset=1960 type=mandel passes=1
  648.   center-mag=-0.168865355890532788/1.04231073272060494/3.026\
  649.   135e+013/1/4.928/0.066 params=0/0 float=y maxiter=5000
  650.   bailoutest=and inside=0
  651.   colors=100o8ps8tw8ww8ws8to8pk8lg7gc7d_6`X6XS5SO5OL4LH3HC2C\
  652.   <2>10120040461881BA1GC2JE2NF3R<2>M3bO4fP4iR4mT4qV4uV4u<5>\
  653.   K3ZI3VF3RE2NC2JA2G81B<2>200310956E8AKCGQHLVKQZOTcSYhXal_doc\
  654.   grgjtllvonwsoxwoxwowsovontllrgjocgl_ehXadSY_OUWKQQHMLCG<2>\
  655.   411100<2>I01O02T03Y03a04f05j05m06p06r07t08u08v09v09u08t0\
  656.   8r07p06m06j05<3>U03P02J01<2>200101515918C2CH3HL4LO4OS5SX\
  657.   6X_6`c7dg7gk8l<2>w8ww8ws8to8pk8lg7gc7d_6`X6XS5SO5OL4LH3HC2C\
  658.   <2>10120040461881BA1GC2JE2NF3R<2>M3bO4fP4iR4mT4qV4uV4u<5>\
  659.   K3ZI3VF3RE2NC2JA2G81B<2>200310956E8AKCGQHLVKQZOTcSYhXal_doc\
  660.   grgjtllvonwsoxwoxwowsovontllrgjocgl_ehXadSY_OUWKQQHMLCG<2\
  661.   >411700C01I01O02<3>f05j05m06p06r07t08u08v09v09u08t08r07p0\
  662.   6m06j05<3>U03P02J01<2>200101515918C2CH3HL4LO4OS5SX\
  663.   6X_6`c7dg7gk8l
  664.   }
  665.  
  666. gp-mand116            {
  667.   reset=1960 type=mandel passes=1
  668.   corners=-1.749158522824/-1.749155843172/0.00022610982954\
  669.   13/0.0002323830524987/-1.749160569296/0.0002288384590803 \
  670.   params=0/0 float=y maxiter=5000 bailoutest=and
  671.   colors=C9E1O61K51I41F31F31F3I12<3>c35h45l46p56r57u57w57<2>\
  672.   y57<4>m46<2>_34V34P23J2211D<11>53v53v<11>11DDC9<4>WWR__Ucc\
  673.   Xgg_kkcnofrsjtuktukrsj<2>gg_ccX__UWWRSSN<3>DC9IC0OH0UK0<2>\
  674.   gW1l_1oc1rg1uk1wo1xs1xw2xs1wo1<2>oc1l_1hW1cS1ZO0VK0PH0JC0F02\
  675.   <10>V29X29X29<11>F020CK1HQ1LV1O_1Sc2Xh2`l2do2gr3lu<2>3\
  676.   wx3tx3pv3lu2gr2do2`l2Xi1Sd1O_1LW1HR0CLGAGKBJ<2>VFOZGQbIReJS\
  677.   <3>tOVtOV<4>bIRZGQVFO<4>C9FEEKIIQMMVQQZTTcYYg``kddohhqllt<2>\
  678.   wwwttwppullthhqddo``lYYhTTdQQ_MMWIIQEELIB7<2>YNEbRGfVJjZLnb\
  679.   NpfQsjSunUvrXvvZwvZvrXunUsjSqfQnbNkZL<\
  680.   3>UJCPF9JB71F31F31F31I41K5<2>1U72X82Z9<2>2gA2gA<5>1Q6
  681.   }
  682.  
  683.  
  684.  
  685. - -
  686. - ------------------------------------------------------------
  687. Thanks for using Fractint, The Fractals and Fractint Discussion List
  688. Post Message:   fractint@xmission.com
  689. Get Commands:   majordomo@xmission.com "help"
  690. Administrator:  twegner@phoenix.net
  691. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  692.  
  693. ------------------------------
  694.  
  695. Date: Sun, 26 Apr 1998 07:46:31 -0700 (PDT)
  696. From: "James R. McKenzie" <whookam88@yahoo.com>
  697. Subject: Re: (fractint) Fractal Chatting
  698.  
  699. >My ICQ# is 10363110 - you might try me there before posting...
  700.  
  701. >-Andrew
  702.  
  703.  
  704. I can't stand it any more what is an ICQ number?  I've seen 'em listed
  705. all overthe INTERNET but I have never seen ANY explaination as to what
  706. or why they are.
  707.  
  708.  
  709.  
  710.  
  711.                            James R. McKenzie
  712.  
  713.  
  714.  
  715.                            WHOOKAM88@YAHOO.COM
  716.  
  717.  
  718.  
  719.  
  720.  
  721.  
  722.  
  723. _________________________________________________________
  724. DO YOU YAHOO!?
  725. Get your free @yahoo.com address at http://mail.yahoo.com
  726.  
  727.  
  728. - -
  729. - ------------------------------------------------------------
  730. Thanks for using Fractint, The Fractals and Fractint Discussion List
  731. Post Message:   fractint@xmission.com
  732. Get Commands:   majordomo@xmission.com "help"
  733. Administrator:  twegner@phoenix.net
  734. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  735.  
  736. ------------------------------
  737.  
  738. Date: Sun, 26 Apr 1998 11:17:35 -0400 (EDT)
  739. From: Jim Muth <jamth@mindspring.com>
  740. Subject: Re: (fractint) misc. / catching up
  741.  
  742. At 11:49 PM 4/25/98 -0700, you wrote:
  743.  
  744. >3) To Jim M, I enjoyed "Wackyland" (is he on this list?)
  745.  
  746.  
  747. I'm here.  I read every letter and run off as many par 
  748. files as I can find time for, but I don't talk much on this 
  749. list.   After all, one learns by listening and gaining new 
  750. knowledge rather than by speaking and showing that they do 
  751. not yet have the knowledge.
  752.  
  753.  
  754. Jim Muth
  755. jamth@mindspring.com
  756.  
  757.  
  758. - -
  759. - ------------------------------------------------------------
  760. Thanks for using Fractint, The Fractals and Fractint Discussion List
  761. Post Message:   fractint@xmission.com
  762. Get Commands:   majordomo@xmission.com "help"
  763. Administrator:  twegner@phoenix.net
  764. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  765.  
  766. ------------------------------
  767.  
  768. Date: Sun, 26 Apr 1998 10:32:29 -0500 (CDT)
  769. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  770. Subject: (fractint) Cycle_me formula
  771.  
  772. comment {
  773. This formula uses my bubble rendering method with the classic
  774. Mandelbrot equation (mapped to the 1/c plane).  The first par,
  775. "cycle_me," I accidentally discovered several years ago - it
  776. has a really nice hypnotic effect when color-cycled.  After the
  777. image has been plotted and saved, press the '-' key (the minus
  778. sign key) for an eye-boggling effect.
  779.  
  780. I also included the "ibubsjul1" par which produces the same
  781. image in a more conventional manner.
  782.  
  783. Paul Carlson
  784. }
  785.  
  786. frm:Ibubs_Julia_Mset {; Copyright (c) Paul W. Carlson, 1998
  787.     ;   p1       = if both real(p1) and imag(p1) are zero
  788.     ;              do Mset, otherwise do Julia set.
  789.     ;   real(p2) = maximum contour of minimum sqrt(|w|)
  790.     ;              (this is the outside edge of the bubbles).
  791.     ;   imag(p2) = Value of |w| at bailout.
  792.     ;   real(p3) = number of color ranges.
  793.     ;   imag(p3) = number of colors in each color range.
  794.     ;
  795.     IF (real(p1) == 0 && imag(p1) == 0)
  796.     w = 0
  797.     c = 1 / pixel
  798.     ELSE
  799.     w = 1 / pixel
  800.     c = p1
  801.     ENDIF
  802.     z = 0
  803.     bailout = 0
  804.     iter = 0
  805.     range_num = 0
  806.     max_w = imag(p2)
  807.     num_ranges = real(p3)
  808.     colors_in_range = imag(p3)
  809.     max_min_w = real(p2)
  810.     min_w = 1.0e20:
  811.     ;
  812.     w = w * w + c  ; classic Mandelbrot equation
  813.     ;
  814.     temp = sqrt(|w|)
  815.     IF (temp < min_w)
  816.        min_w = temp
  817.        save_range = range_num
  818.     ENDIF
  819.     IF (|w| > max_w)
  820.     IF (min_w < max_min_w)
  821.         range_index = (min_w / max_min_w) * (colors_in_range - 1)
  822.         z = range_index + save_range * colors_in_range + 1
  823.     ELSE
  824.         z = 0
  825.     ENDIF
  826.     bailout = 1
  827.     ENDIF
  828.     range_num = range_num + 1
  829.     IF (range_num == num_ranges)
  830.         range_num = 0
  831.     ENDIF
  832.     iter = iter + 1
  833.     z = z - iter
  834.     bailout == 0  && |w| < max_w
  835. }
  836.  
  837. cycle_me           { ; Copyright (c) Paul Carlson, 1998
  838.   reset=1960 type=formula formulafile=ibubs.frm
  839.   formulaname=ibubs_julia_mset passes=t
  840.   corners=-1.6899829/-1.5880734/3.62762689/3.70405904
  841.   params=-0.770833/0.178571/0.1788955/16/1/240
  842.   float=y maxiter=10000 outside=summ
  843.   colors=0K70G50C30CB<15>0zy<12>0CB00N<14>FFvGGyFFv<11>00NSA_<1\
  844.   4>eNwfOyeNv<11>I0JO07<2>V0DX0G_0H<10>z0e<13>O07000O00<2>V10X2\
  845.   1_21a32d32<8>z87<12>O00c40<14>xU0zW0yU0<11>c40aG0<15>zz0<12>a\
  846.   G00C3<15>0zQ<9>0O8000<11>000O07
  847.   cyclerange=0/241
  848.   }
  849.  
  850. ibubsjul1          { ; Copyright (c) Paul Carlson, 1998
  851.   reset=1960 type=formula formulafile=ibubs.frm
  852.   formulaname=ibubs_julia_mset passes=t
  853.   corners=-1.6899829/-1.5880734/3.62762689/3.70405904
  854.   params=-0.770833/0.178571/0.1788955/16/2/125
  855.   float=y maxiter=10000 outside=summ
  856.   colors=000zz0<123>aG0zVz<123>L5L000<3>000
  857.   }
  858.  
  859.  
  860. - -
  861. - ------------------------------------------------------------
  862. Thanks for using Fractint, The Fractals and Fractint Discussion List
  863. Post Message:   fractint@xmission.com
  864. Get Commands:   majordomo@xmission.com "help"
  865. Administrator:  twegner@phoenix.net
  866. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  867.  
  868. ------------------------------
  869.  
  870. Date: Sun, 26 Apr 1998 08:50:35 -0700
  871. From: Mark Christenson <mchris@hooked.net>
  872. Subject: (fractint) carr3197... ?
  873.  
  874. Can someone explain to me what's going on in carr3197?
  875.  
  876. Carr3197(YAXIS){;Modified Sylvie Gallet frm. [101324,3444],1996
  877. ;passes=1 needs to be used with this PHC formula.
  878. pixel=-abs(real(pixel))+flip(imag(pixel)),
  879. d=log(1/pixel-cos(1/pixel))
  880. b4=pixel^2-(0.2*cabs(0.2-pixel^-0.025))
  881. b5=flip(b4)^2-cabs(0.1/pixel-flip(0.01/b4))-conj(0.1/pixel)-0.65
  882. c=whitesq*b4-(whitesq==0)*b4 ; *** what's "whitesq", and what does "==" do?
  883. z=whitesq*b5-(whitesq==0)*b5
  884. c1=1.5*z^1.2,c2=2.25*conj(z),c3=3.375*flip(z),c4=5.0625*flip(z),
  885. l1=real(p1),l2=imag(p1),l3=real(p2),l4=imag(p2),
  886. bailout=16,iter=0:
  887. t1=(iter==l1),t2=(iter==l2),t3=(iter==l3),t4=(iter==l4), ; *** how does ||
  888. operate on
  889. t=1-(t1||t2||t3||t4),z=z*t,c=c*t+c1*t1+c2*t2+c3*t3+c4*t4, ; *** non-booleans? 
  890. z=z^2+(-0.7456,-0.132)+cabs(|c/7.5|)+flip(real(|d/80*pixel|)),
  891. 0iter=iter+1 ; *** is this actually doing anything?  It's not evaluated.
  892. (|z|)<=bailout ; *** what's the difference between (|z|) and |z|?
  893. }
  894.  
  895. Also, since Fractint defines |z| as modulus squared, we should 
  896. be aware that terms like |c/7.5| are actually returning |c/7.5|^2.
  897.  
  898.  
  899. Thanks, Bud
  900.  
  901.  
  902. - -
  903. - ------------------------------------------------------------
  904. Thanks for using Fractint, The Fractals and Fractint Discussion List
  905. Post Message:   fractint@xmission.com
  906. Get Commands:   majordomo@xmission.com "help"
  907. Administrator:  twegner@phoenix.net
  908. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  909.  
  910. ------------------------------
  911.  
  912. Date: Sun, 26 Apr 1998 10:08:57 -0700
  913. From: "Angela Wilczynski" <wizzle@beachnet.com>
  914. Subject: Re: (fractint) Fractal Chatting
  915.  
  916. Paul Carlson, Kathy Roth, Earl Simpson and myself got together on the Undernet
  917. last night for a fractal chat.  Kathy and Paul are brand new to using IRC
  918. (internet relay chat) but they were doing just great ..........exchanging files,
  919. using utilities, etc........by the end of the session. I hope more of you will
  920. join us next time. Kathy downloaded the software yesterday so I think she can
  921. attest to how easy it is to install and use.
  922.  
  923. In the hopes that some of the european contingent would like to chat, we've
  924. selected 10AM PST or 6 PM GMT (zulu) next Sunday for another try. Software is
  925. available for download at
  926.  
  927. http://www.mirc.co.uk/
  928.  
  929. and I'd be glad to answer any questions you have about it. 
  930.  
  931. We will meet on the Undernet in #fractals. I'll post a reminder Saturday but
  932. mark your calendars now if you'd like to come.  
  933.  
  934.  
  935. James R. McKenzie wrote:
  936. > >My ICQ# is 10363110 - you might try me there before posting...
  937. > >-Andrew
  938. > I can't stand it any more what is an ICQ number?  I've seen 'em listed
  939. > all overthe INTERNET but I have never seen ANY explaination as to what
  940. > or why they are.
  941. >                            James R. McKenzie
  942. >                            WHOOKAM88@YAHOO.COM
  943.  
  944.  
  945. ICQ is a variation on chatting and each person who has ICQ software installed
  946. and running is assigned a number. When they log on to the web, this number
  947. notifies interested folks that they are "on" and available to chat, exchange
  948. files, etc. 
  949.  
  950. Angela
  951.  
  952. - -
  953. - ------------------------------------------------------------
  954. Thanks for using Fractint, The Fractals and Fractint Discussion List
  955. Post Message:   fractint@xmission.com
  956. Get Commands:   majordomo@xmission.com "help"
  957. Administrator:  twegner@phoenix.net
  958. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  959.  
  960. ------------------------------
  961.  
  962. Date: Sun, 26 Apr 1998 14:17:33 EDT
  963. From: SKarl52884 <SKarl52884@aol.com>
  964. Subject: Re: (fractint) Re: A JPL Formula
  965.  
  966. In a message dated 98-04-25 17:45:09 EDT, you write:
  967.  
  968. << Try working with this formula yourself and share your params with your
  969.  fractal artist buddies here. I'll upload some soon.
  970.  
  971. <<< inserted credit line to Monsieur JPL.
  972.  
  973. Bob
  974. >>>
  975.  
  976. spiderM {; by Jean-Pierre Louvet
  977. z=pixel,f=pixel,g=pixel:
  978. f=f/p1+z,
  979. z=fn1(z^(p2+g))+fn2(f),
  980. |z| <= 4 }
  981.  
  982.  Bob
  983.   >>
  984. ~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^
  985. Hi 
  986.      Nice .frm
  987.  
  988. Here's some minimalist fun!
  989. Have a great Sunday All.
  990. Steve
  991. ~~~^~~~~^~~~~~^~~~~~~^~~~~~~~^~~~~~~~^ { I'm gonna get some sleep }
  992.  
  993.  
  994. 001Smile              { ; SK
  995.   reset=1960 type=formula formulafile=spiderm.frm formulaname=spiderm
  996.   function=sqr/cabs center-mag=0.215369/-0.0418968/0.6512441/1/90
  997.   params=1/-946735786/1/0 maxiter=32 outside=1
  998.   potential=256/999/-31073 decomp=256
  999.   colors=000W00<2>c00<14>zzz<15>c00<14>300000020<14>0c0<15>zzz<15>0c0<14>0\
  1000.   30000002<14>00c<15>zzz<15>00c<14>003000022<14>0cc<15>zzz<15>0cc<14>03300\
  1001.   0200<10>U00
  1002.   }
  1003.  
  1004. 002Wink!              { ; SK
  1005.   reset=1960 type=formula formulafile=spiderm.frm formulaname=spiderm
  1006.   function=sqr/conj center-mag=3.7015e-005/-0.0417213/0.6512441/1/90
  1007.   params=-5.7/-946735786/0.68/0 maxiter=32 outside=1
  1008.   potential=256/999/-31073 decomp=256
  1009.   colors=000000Z00`00c00<14>zzz<15>c00<14>300000020<14>0c0<15>zzz<15>0c0<1\
  1010.   4>030000002<14>00c<15>zzz<15>00c<14>003000022<14>0cc<15>zzz<15>0cc<14>03\
  1011.   3000200<9>R00000
  1012.   }
  1013.  
  1014. 003Namaste            { ; SK
  1015.   reset=1960 type=formula formulafile=spiderm.frm formulaname=spiderm
  1016.   function=sqr/cabs center-mag=3.6895e-005/-0.0418887/0.6512441/1/90
  1017.   params=1/-946735786/0.6/0 maxiter=32 outside=1
  1018.   potential=256/999/-31073 decomp=256
  1019.   colors=000W00<2>c00<14>zzz<15>c00<14>300000020<14>0c0<15>zzz<15>0c0<14>0\
  1020.   30000002<14>00c<15>zzz<15>00c<14>003000022<14>0cc<15>zzz<15>0cc<14>03300\
  1021.   0200<10>U00
  1022.   }
  1023.  
  1024.  
  1025.  
  1026. - -
  1027. - ------------------------------------------------------------
  1028. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1029. Post Message:   fractint@xmission.com
  1030. Get Commands:   majordomo@xmission.com "help"
  1031. Administrator:  twegner@phoenix.net
  1032. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1033.  
  1034. ------------------------------
  1035.  
  1036. Date: Sun, 26 Apr 1998 13:42:53 -0600
  1037. From: "Tim Wegner" <twegner@phoenix.net>
  1038. Subject: Re: (fractint) misc. / catching up
  1039.  
  1040. Jim Muth wrote:
  1041.  
  1042. > I'm here.  I read every letter and run off as many par 
  1043. > files as I can find time for, but I don't talk much on this 
  1044. > list.   After all, one learns by listening and gaining new 
  1045. > knowledge rather than by speaking and showing that they do 
  1046. > not yet have the knowledge.
  1047.  
  1048. Lurk away, Jim! I am sure I speak for those of us here who also
  1049. subscribe to fractal-art that we are deeply appreciate your
  1050. interesting "Fractal of the Day" series. Amazing how you keep 'em
  1051. coming!
  1052.  
  1053. For everyone else: to subscribe to fractal-art, send a message to 
  1054. majordomo@aros.net, message body "subscribe fractal-art".
  1055.  
  1056. We have thought of asking Jim to cross-post his "Fractal of the day" 
  1057. here (and Jay his "Fractal of the night"), but the consensus is that 
  1058. many folks subscribe to both lists so it would be a waste of 
  1059. bandwidth to have it both places.
  1060.  
  1061. Tim
  1062.  
  1063.  
  1064. - -
  1065. - ------------------------------------------------------------
  1066. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1067. Post Message:   fractint@xmission.com
  1068. Get Commands:   majordomo@xmission.com "help"
  1069. Administrator:  twegner@phoenix.net
  1070. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1071.  
  1072. ------------------------------
  1073.  
  1074. Date: Sun, 26 Apr 1998 15:38:23 -0400
  1075. From: "Peter Gavin" <pgavin@mindspring.com>
  1076. Subject: (fractint) Cool variation on mandelbrot set
  1077.  
  1078. This is a multi-part message in MIME format.
  1079.  
  1080. - ------=_NextPart_000_00BC_01BD7129.590D8CE0
  1081. Content-Type: multipart/alternative;
  1082.     boundary="----=_NextPart_001_00BD_01BD7129.590D8CE0"
  1083.  
  1084.  
  1085. - ------=_NextPart_001_00BD_01BD7129.590D8CE0
  1086. Content-Type: text/plain;
  1087.     charset="iso-8859-1"
  1088. Content-Transfer-Encoding: quoted-printable
  1089.  
  1090. This weekend, I was at the Florida Mu Alpha Theta state math convention, =
  1091. and there was a speaker from Florida Atlantic University named Dr. =
  1092. Richard Voss.  He worked with Benoit Mandelbrot for several years, and =
  1093. was very intelligent.  He gave a lecture on fractals and their uses =
  1094. etc., and I got many ideas about how to play with the Mandelbrot set.  =
  1095. In this formula, I changed the bailout method, using an ellipse rather =
  1096. than a circle for the bailout region, with p1 giving its dimensions.  I =
  1097. have found that this gives the level sets a kind of 'toothy' shape, =
  1098. which looks really cool, and this is more pronounced the larger the =
  1099. eccentricity of the ellipse.  I plan on trying to use a rectangle next, =
  1100. rather than an ellipse.  That could be pretty cool looking, I think...  =
  1101. The speaker showed use on image he rendered using a bailout region =
  1102. shaped like a fish, and there were little fish shaped regions in it.  It =
  1103. had a blue color scheme and the point he zoomed in on looked like a wavy =
  1104. shore, which made it look like the fish were jumping out of the sea.  It =
  1105. looked really cool.  But anyways, here's that formula...
  1106.  
  1107. Pete
  1108.  
  1109. frm:MandEllipse {; Uses an ellipse rather then a circle for the bailout
  1110.    ; value.  real(P1) is the square of it's width, and
  1111.    ; imag(P2) is the square of it's height.
  1112.  z =3D 0, c =3D pixel, a =3D real(p1), b =3D imag(p1):
  1113.  z =3D z * z + c
  1114.  real(z) * real(z) / a + imag(z) * imag(z) / b < 1
  1115.  }
  1116.  
  1117. MandEllipse #1     { ; An image using the MandEllipse Formula
  1118.   reset=3D1960 type=3Dformula formulafile=3Dwierdmnd.frm
  1119.   formulaname=3DMandEllipse passes=3D3
  1120.   center-mag=3D-0.11416740306288670/+0.96910114211212610/232.8935
  1121.   params=3D16/256 float=3Dy maxiter=3D65536 inside=3D0 logmap=3Dyes
  1122.   symmetry=3Dnone periodicity=3D8
  1123.   =
  1124. colors=3D000U0U<13>000<15>zzz<15>000<15>wg0<15>000<30>0Ni0Ok0Oj<29>012000=
  1125. 0\
  1126.   00<93>y0yz0zy0y<14>W0W
  1127.   }
  1128.  
  1129.  
  1130.  
  1131. - ------=_NextPart_001_00BD_01BD7129.590D8CE0
  1132. Content-Type: text/html;
  1133.     charset="iso-8859-1"
  1134. Content-Transfer-Encoding: quoted-printable
  1135.  
  1136. <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
  1137. <HTML>
  1138. <HEAD>
  1139.  
  1140. <META content=3Dtext/html;charset=3Diso-8859-1 =
  1141. http-equiv=3DContent-Type>
  1142. <META content=3D'"MSHTML 4.72.2106.6"' name=3DGENERATOR>
  1143. </HEAD>
  1144. <BODY bgColor=3D#ffffff>
  1145. <DIV><FONT face=3DVerdana size=3D2>This weekend, I was at the Florida Mu =
  1146. Alpha Theta=20
  1147. state math convention, and there was a speaker from Florida Atlantic =
  1148. University=20
  1149. named Dr. Richard Voss.  He worked with Benoit Mandelbrot for =
  1150. several=20
  1151. years, and was <EM>very</EM> intelligent.  He gave a lecture on =
  1152. fractals=20
  1153. and their uses etc., and I got many ideas about how to play with the =
  1154. Mandelbrot=20
  1155. set.  In this formula, I changed the bailout method, using an =
  1156. ellipse=20
  1157. rather than a circle for the bailout region, with p1 giving its=20
  1158. dimensions.  I have found that this gives the level sets a kind of =
  1159. 'toothy'=20
  1160. shape, which looks really cool, and this is more pronounced the larger =
  1161. the=20
  1162. eccentricity of the ellipse.  I plan on trying to use a rectangle =
  1163. next,=20
  1164. rather than an ellipse.  That could be pretty cool looking, I=20
  1165. think...  The speaker showed use on image he rendered using a =
  1166. bailout=20
  1167. region shaped like a <EM>fish</EM>, and there were little fish shaped =
  1168. regions in=20
  1169. it.  It had a blue color scheme and the point he zoomed in on =
  1170. looked like a=20
  1171. wavy shore, which made it look like the fish were jumping out of the =
  1172. sea. =20
  1173. It looked <EM>really</EM> cool.  But anyways, here's that=20
  1174. formula...</FONT></DIV>
  1175. <DIV><FONT face=3DVerdana size=3D2></FONT> </DIV>
  1176. <DIV><FONT face=3DVerdana size=3D2>Pete</FONT></DIV>
  1177. <DIV><FONT face=3DVerdana size=3D2></FONT> </DIV>
  1178. <DIV><FONT face=3DVerdana size=3D2>frm:MandEllipse {; Uses an ellipse =
  1179. rather then a=20
  1180. circle for the bailout<BR>   ; value.  real(P1) is the =
  1181. square of=20
  1182. it's width, and<BR>   ; imag(P2) is the square of it's=20
  1183. height.<BR> z =3D 0, c =3D pixel, a =3D real(p1), b =3D =
  1184. imag(p1):<BR> z =3D z *=20
  1185. z + c<BR> real(z) * real(z) / a + imag(z) * imag(z) / b <=20
  1186. 1<BR> }</FONT></DIV>
  1187. <DIV><FONT face=3DVerdana size=3D2></FONT> </DIV>
  1188. <DIV><FONT face=3DVerdana size=3D2>MandEllipse =
  1189. #1     { ; An=20
  1190. image using the MandEllipse Formula<BR>  reset=3D1960 =
  1191. type=3Dformula=20
  1192. formulafile=3Dwierdmnd.frm<BR>  formulaname=3DMandEllipse =
  1193. passes=3D3<BR> =20
  1194. center-mag=3D-0.11416740306288670/+0.96910114211212610/232.8935<BR> =
  1195. =20
  1196. params=3D16/256 float=3Dy maxiter=3D65536 inside=3D0 =
  1197. logmap=3Dyes<BR>  symmetry=3Dnone=20
  1198. periodicity=3D8<BR> =20
  1199. colors=3D000U0U<13>000<15>zzz<15>000<15>wg0<15=
  1200. >000<30>0Ni0Ok0Oj<29>0120000\<BR> =20
  1201. 00<93>y0yz0zy0y<14>W0W<BR>  }</FONT></DIV>
  1202. <DIV><FONT face=3DVerdana size=3D2></FONT> </DIV>
  1203. <DIV><FONT face=3DVerdana size=3D2></FONT> </DIV></BODY></HTML>
  1204.  
  1205. - ------=_NextPart_001_00BD_01BD7129.590D8CE0--
  1206.  
  1207. - ------=_NextPart_000_00BC_01BD7129.590D8CE0
  1208. Content-Type: application/octet-stream;
  1209.     name="WIERDMND.PAR"
  1210. Content-Transfer-Encoding: 7bit
  1211. Content-Disposition: attachment;
  1212.     filename="WIERDMND.PAR"
  1213.  
  1214. MandEllipse #1     { ; An image using the MandEllipse Formula
  1215.   reset=1960 type=formula formulafile=wierdmnd.frm
  1216.   formulaname=MandEllipse passes=3
  1217.   center-mag=-0.11416740306288670/+0.96910114211212610/232.8935
  1218.   params=16/256 float=y maxiter=65536 inside=0 logmap=yes
  1219.   symmetry=none periodicity=8
  1220.   colors=000U0U<13>000<15>zzz<15>000<15>wg0<15>000<30>0Ni0Ok0Oj<29>0120000\
  1221.   00<93>y0yz0zy0y<14>W0W
  1222.   }
  1223.  
  1224.  
  1225. - ------=_NextPart_000_00BC_01BD7129.590D8CE0
  1226. Content-Type: application/octet-stream;
  1227.     name="WIERDMND.FRM"
  1228. Content-Transfer-Encoding: 7bit
  1229. Content-Disposition: attachment;
  1230.     filename="WIERDMND.FRM"
  1231.  
  1232. MandEllipse    {; Uses an ellipse rather then a circle for the bailout
  1233.          ; value.  real(P1) is the square of it's width, and
  1234.          ; imag(P2) is the square of it's height.
  1235.     z = 0, c = pixel, a = real(p1), b = imag(p1):
  1236.     z = z * z + c
  1237.     real(z) * real(z) / a + imag(z) * imag(z) / b < 1
  1238.     }
  1239. - ------=_NextPart_000_00BC_01BD7129.590D8CE0--
  1240.  
  1241.  
  1242. - -
  1243. - ------------------------------------------------------------
  1244. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1245. Post Message:   fractint@xmission.com
  1246. Get Commands:   majordomo@xmission.com "help"
  1247. Administrator:  twegner@phoenix.net
  1248. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1249.  
  1250. ------------------------------
  1251.  
  1252. End of fractint-digest V1 #175
  1253. ******************************
  1254.  
  1255.