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

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #142
  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, March 22 1998         Volume 01 : Number 142
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Sat, 21 Mar 1998 03:23:29 -0500 (EST)
  18. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  19. Subject: (fractint) More Nuclear Fractals
  20.  
  21. It is verified: Thereare Herman rings in Nuclear! Moreover, there are
  22. Herman rings of a type I have not seen before, where the ring
  23. center...well... I'll let you see for yourself. First two new formula
  24. files, which draw Julia sets of Nuclear in 4 color ranges basedon not only
  25. convergence to infinity but also any finite attractors. Then more PAR
  26. entries, with further Mandelbrot zooms and Julia sets including a Herman
  27. ring and zoom of an intriguing structure...
  28.  
  29.  
  30. - ---8<--- Add these to nuclear.frm (from a few posts up) --->8---
  31.  
  32. Nuclear_JulCol { ; p1, p2, p3 parameters. Use float=y, outside=real, logmap=0,
  33.                  ; periodicity=0. Colors from 4 ranges by finite attractors
  34.                  ; and attracted to infinity.
  35.   a=p1, c=p2, k=p3, a2=a*a, ac=a*c, r3=sqrt(3), r3a2=r3*a2, a6=3*a2
  36.   r3ac=r3*ac, ack=k*ac
  37.   m=maxit-1, m4=m/2, iter=0, done=0, iter2=0
  38.   qq=0.000001, bail=1000
  39.   IF(notfirstpixel)
  40.     m4=0
  41.   ELSE
  42.     za=-1
  43.     zb=0
  44.     zc=1
  45.     qqa=qq
  46.     qqb=qq
  47.     qqc=qq
  48.   ENDIF
  49.   z=pixel
  50.   :
  51.   IF(iter<m4)
  52.     IF(qqa>0)
  53.       z2=sqr(za)
  54.       z3=za*z2
  55.       za=(r3a2*z3-a6*z2-r3ac*za-ac)/(r3*za+1)+ack
  56.       IF(|za|>bail)
  57.         qqa=0
  58.       ENDIF
  59.     ENDIF
  60.     IF(qqb>0)
  61.       z2=sqr(zb)
  62.       z3=zb*z2
  63.       zb=(r3a2*z3-a6*z2-r3ac*zb-ac)/(r3*zb+1)+ack
  64.       IF(|zb|>bail)
  65.         qqb=0
  66.       ENDIF
  67.     ENDIF
  68.     IF(qqc>0)
  69.       z2=sqr(zc)
  70.       z3=zc*z2
  71.       zc=(r3a2*z3-a6*z2-r3ac*zc-ac)/(r3*zc+1)+ack
  72.       IF(|zc|>bail)
  73.         qqc=0
  74.       ENDIF
  75.     ENDIF
  76.     iter=iter+1
  77.   ELSE
  78.     z2=sqr(z)
  79.     z3=z*z2
  80.     z=(r3a2*z3-a6*z2-r3ac*z-ac)/(r3*z+1)+ack
  81.     iter=iter+1
  82.     iter2=iter2+1
  83.     IF(lastsqr>bail)
  84.       done=1
  85.       color=iter2
  86.       IF(color<1)
  87.         color=1
  88.       ENDIF
  89.       IF(color>66)
  90.         color=66
  91.       ENDIF
  92.     ELSEIF(|z-za|<qqa)
  93.       done=1
  94.       color=iter2
  95.       IF(color<1)
  96.         color=1
  97.       ENDIF
  98.       IF(color>63)
  99.         color=63
  100.       ENDIF
  101.       color=color+66
  102.     ELSEIF(|z-zb|<qqb)
  103.       done=1
  104.       color=iter2
  105.       IF(color<1)
  106.         color=1
  107.       ENDIF
  108.       IF(color>63)
  109.         color=63
  110.       ENDIF
  111.       color=color+129
  112.     ELSEIF(|z-zc|<qqc)
  113.       done=1
  114.       color=iter2
  115.       IF(color<1)
  116.         color=1
  117.       ENDIF
  118.       IF(color>63)
  119.         color=63
  120.       ENDIF
  121.       color=color+192
  122.     ENDIF
  123.     IF(done)
  124.       z=color-iter-7
  125.       notfirstpixel=1
  126.     ENDIF
  127.   ENDIF
  128.   done==0
  129. }
  130.  
  131. Nuclear_JColLog { ; p1, p2, p3 parameters. Use float=y, outside=real, logmap=0,
  132.                   ; periodicity=0. Colors from 4 ranges by finite attractors
  133.                   ; and attracted to infinity. Uses a "logmap".
  134.   a=p1, c=p2, k=p3, a2=a*a, ac=a*c, r3=sqrt(3), r3a2=r3*a2, a6=3*a2
  135.   r3ac=r3*ac, ack=k*ac
  136.   m=maxit-1, m4=m/2, iter=0, done=0, iter2=0
  137.   qq=0.000001, bail=1000
  138.   IF(notfirstpixel)
  139.     m4=0
  140.   ELSE
  141.     za=-1
  142.     zb=0
  143.     zc=1
  144.     qqa=qq
  145.     qqb=qq
  146.     qqc=qq
  147.   ENDIF
  148.   m3=m-m4
  149.   z=pixel
  150.   :
  151.   IF(iter<m4)
  152.     IF(qqa>0)
  153.       z2=sqr(za)
  154.       z3=za*z2
  155.       za=(r3a2*z3-a6*z2-r3ac*za-ac)/(r3*za+1)+ack
  156.       IF(|za|>bail)
  157.         qqa=0
  158.       ENDIF
  159.     ENDIF
  160.     IF(qqb>0)
  161.       z2=sqr(zb)
  162.       z3=zb*z2
  163.       zb=(r3a2*z3-a6*z2-r3ac*zb-ac)/(r3*zb+1)+ack
  164.       IF(|zb|>bail)
  165.         qqb=0
  166.       ENDIF
  167.     ENDIF
  168.     IF(qqc>0)
  169.       z2=sqr(zc)
  170.       z3=zc*z2
  171.       zc=(r3a2*z3-a6*z2-r3ac*zc-ac)/(r3*zc+1)+ack
  172.       IF(|zc|>bail)
  173.         qqc=0
  174.       ENDIF
  175.     ENDIF
  176.     iter=iter+1
  177.   ELSE
  178.     z2=sqr(z)
  179.     z3=z*z2
  180.     z=(r3a2*z3-a6*z2-r3ac*z-ac)/(r3*z+1)+ack
  181.     iter=iter+1
  182.     iter2=iter2+1
  183.     IF(lastsqr>bail)
  184.       done=1
  185.       color=66*(log(iter2)/log(m3))
  186.       IF(color<1)
  187.         color=1
  188.       ENDIF
  189.       IF(color>66)
  190.         color=66
  191.       ENDIF
  192.     ELSEIF(|z-za|<qqa)
  193.       done=1
  194.       color=63*(log(iter2)/log(m3))
  195.       IF(color<1)
  196.         color=1
  197.       ENDIF
  198.       IF(color>63)
  199.         color=63
  200.       ENDIF
  201.       color=color+66
  202.     ELSEIF(|z-zb|<qqb)
  203.       done=1
  204.       color=63*(log(iter2)/log(m3))
  205.       IF(color<1)
  206.         color=1
  207.       ENDIF
  208.       IF(color>63)
  209.         color=63
  210.       ENDIF
  211.       color=color+129
  212.     ELSEIF(|z-zc|<qqc)
  213.       done=1
  214.       color=63*(log(iter2)/log(m3))
  215.       IF(color<1)
  216.         color=1
  217.       ENDIF
  218.       IF(color>63)
  219.         color=63
  220.       ENDIF
  221.       color=color+192
  222.     ENDIF
  223.     IF(done)
  224.       z=color-iter-7
  225.       notfirstpixel=1
  226.     ENDIF
  227.   ENDIF
  228.   done==0
  229. }
  230.  
  231.  
  232. - --->8--- Add these to nuclear.par ---8<---
  233.  
  234. fracmini_zoom3     {
  235.   reset=1960 type=formula formulafile=nuclear.frm
  236.   formulaname=nuclear_m_k passes=t
  237.   center-mag=6.69587/-1.21995/1.400751 params=0.2/0.4/-0.3/0.3/0/1.2
  238.   float=y maxiter=257 inside=0 outside=real periodicity=0
  239.   colors=000zzz<64>000K0e<61>hlze0K<61>zhqU0U<61>zcz
  240.   }
  241.  
  242. fracmini_zoom4     {
  243.   reset=1960 type=formula formulafile=nuclear.frm
  244.   formulaname=nuclear_m_k passes=t
  245.   center-mag=6.62916/-1.67046/10.29964 params=0.2/0.4/-0.3/0.3/0/1.2
  246.   float=y maxiter=257 inside=0 outside=real periodicity=0
  247.   colors=000zzz<64>000K0e<61>hlze0K<61>zhqU0U<61>zcz
  248.   }
  249.  
  250. fracmini_zoom1a    {
  251.   reset=1960 type=formula formulafile=nuclear.frm
  252.   formulaname=nuclear_m_k passes=t center-mag=7.08534/2.64775/3.387863
  253.   params=0.2/0.4/-0.3/0.3/0/1.2 float=y maxiter=257 inside=0
  254.   outside=real periodicity=0
  255.   colors=000zzz<64>000K0e<61>hlze0K<61>zhqU0U<61>zcz
  256.   }
  257.  
  258. fracmini_zoom1b    {
  259.   reset=1960 type=formula formulafile=nuclear.frm
  260.   formulaname=nuclear_m_k passes=t
  261.   center-mag=+6.90457180794366800/+2.71575563221129500/67.75727
  262.   params=0.2/0.4/-0.3/0.3/0/1.2 float=y maxiter=4000 inside=0
  263.   outside=real periodicity=0
  264.   colors=000zzz<64>000K0e<61>hlze0K<61>zhqU0U<61>zcz
  265.   }
  266.  
  267. herman_ring_01     {
  268.   reset=1960 type=formula formulafile=nuclear.frm
  269.   formulaname=Nuclear_Jul passes=t
  270.   center-mag=0.703812/-0.0857366/0.136612
  271.   params=0.2/0.4/-0.3/0.3/7.019340119066568/2.534415006977062 float=y
  272.   maxiter=4000 inside=0 logmap=yes periodicity=0
  273.   colors=000zlh<64>VKC00e<61>hlze00<17>kDFKA0kEH<41>zhq0e0<30>MoRNoRNpSNpS\
  274.   <27>lzh
  275.   }
  276.  
  277. hring_01_col       {
  278.   reset=1960 type=formula formulafile=nuclear.frm
  279.   formulaname=nuclear_julcol passes=t
  280.   center-mag=0.703812/-0.0857366/0.136612
  281.   params=0.2/0.4/-0.3/0.3/7.019340119066568/2.534415006977062 float=y
  282.   maxiter=1000 inside=0 outside=real periodicity=0
  283.   colors=000zlh<64>VKC00e<61>hlze00<17>kDFKA0kEH<41>zhq0e0<30>MoRNoRNpSNpS\
  284.   <27>lzh
  285.   }
  286.  
  287. hring_01_col_b     {
  288.   reset=1960 type=formula formulafile=nuclear.frm
  289.   formulaname=nuclear_julcol passes=t
  290.   center-mag=-0.860841/0.620496/0.7041856
  291.   params=0.2/0.4/-0.3/0.3/7.019340119066568/2.534415006977062 float=y
  292.   maxiter=1000 inside=0 outside=real periodicity=0
  293.   colors=000lhz<12>gbugbufate`s<17>LEWJCUJCU<20>53G75I<6>00Ahlz<44>12f00e0\
  294.   0c<14>000zhq<44>f12e00c00<14>000lzh<44>2f10e00c0<14>000
  295.   }
  296.  
  297. near_hring_01      {
  298.   reset=1960 type=formula formulafile=nuclear.frm
  299.   formulaname=nuclear_jcollog center-mag=1.25716/-0.0284745/0.1666
  300.   params=0.2/0.4/-0.3/0.3/7.05/2.534415006977062 float=y maxiter=5000
  301.   inside=0 outside=real periodicity=0
  302.   colors=000<15>I09K0AK0B<47>zcz00e<61>hlze00<17>kDFKA0kEH<41>zhq0e0<30>Mo\
  303.   RNoRNpSNpS<27>lzh
  304.   }
  305.  
  306. near_hring_01a     {
  307.   reset=1960 type=formula formulafile=nuclear.frm
  308.   formulaname=nuclear_jcollog center-mag=-1.10546/0.566287/0.8009615
  309.   params=0.2/0.4/-0.3/0.3/7.05/2.534415006977062 float=y maxiter=5000
  310.   inside=0 outside=real periodicity=0
  311.   colors=000zrz<29>n2Wm0Ul0U<31>20B00A00e<61>hlze00<17>kDFKA0kEH<41>zhq0e0\
  312.   <30>MoRNoRNpSNpS<27>lzh
  313.   }
  314.  
  315. nukej_2            {
  316.   reset=1960 type=formula formulafile=nuclear.frm
  317.   formulaname=nuclear_jcollog passes=t
  318.   center-mag=1.25716/-0.0284745/0.1666
  319.   params=0.2/0.4/-0.3/0.3/6.91038/2.72676 float=y maxiter=5000
  320.   inside=0 outside=real periodicity=0
  321.   colors=000<15>I09K0AK0B<47>zcz00e<61>hlze00<17>kDFKA0kEH<41>zhq0e0<30>Mo\
  322.   RNoRNpSNpS<27>lzh
  323.   }
  324.  
  325. - ---8<--- End --->8---
  326.  
  327. - --
  328.     .*.  Friendship, companionship, love, and having fun are the reasons for
  329.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  330.     `*'  Send any and all mail with attachments to the hotmail address please.
  331. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  332.  
  333. - -
  334. - ------------------------------------------------------------
  335. Thanks for using Fractint, The Fractals and Fractint Discussion List
  336. Post Message:   fractint@xmission.com
  337. Get Commands:   majordomo@xmission.com "help"
  338. Administrator:  twegner@phoenix.net
  339. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  340.  
  341. ------------------------------
  342.  
  343. Date: Sat, 21 Mar 1998 03:33:40 -0500 (EST)
  344. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  345. Subject: (fractint) Doing lengthy computations once per image in Fractint 19.6
  346.  
  347. Many have lamented the lack of a "per-image" initialization in Fractint
  348. formula files. Lament no more. It can be done! Here's how:
  349.  
  350. To do something simple only once per image:
  351.  
  352. foo {
  353.   stuff
  354.   IF(!notfirstpixel)
  355.     slow_stuff_not_pix_dependent
  356.     notfirstpixel=1
  357.   ENDIF
  358.   stuff
  359.   :
  360.   stuff
  361. }
  362.  
  363. If you want to do something looping, such as iterating some critical
  364. points to find finite attractors (as done in my newest Nuclear Julia
  365. formulas above):
  366.  
  367. foo {
  368.   stuff
  369.   m=maxit
  370.   m2=maxit/2
  371.   IF(notfirstpixel)
  372.     m2=0
  373.   ELSE
  374.     initialize some variables where results will go
  375.     (za, zb, zc, qqa, qqb, and qqc in the Nuclear_Jul_Col's)    
  376.   ENDIF
  377.   stuff
  378.   iter=0
  379.   notfirstpixel=1
  380.   :
  381.   IF(iter<m2)
  382.     Newton's method, iterate some critical points, you name it
  383.     Won't execute when m2=0 when notfirstpixel is true
  384.   ELSE
  385.     Normal iteration
  386.     (Note: First pixel will only get 1/2 normal iterations. Should not be a
  387.     problem.)
  388.   ENDIF
  389.   iter=iter+1
  390.   stuff
  391. }
  392.  
  393. - --
  394.     .*.  Friendship, companionship, love, and having fun are the reasons for
  395.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  396.     `*'  Send any and all mail with attachments to the hotmail address please.
  397. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  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: Sat, 21 Mar 1998 03:41:05 -0500 (EST)
  410. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  411. Subject: (fractint) How I found it out
  412.  
  413. I have discovered that Fractint zeros all the formula variables once *per
  414. image* but keeps them from pixel to pixel. How I did it: First I had, in
  415. making a goof (missing a something=0 in an initializer ina formula)
  416. observed that Fractint remembered a formula variable from one pixel to
  417. another. (A counter had kept counting pixel by pixel, resulting in a
  418. striped image!) I realized I could speed up my first attempt at the
  419. Nuclear_Jul_Col if it turned out to zero them at the start of the image.
  420. (It originally did the SAME ~2000 iterations of the 3 critical points
  421. every pixel! This was slow and ledto hour long calctimes on "simple" Julia
  422. sets. Ouch.) So I did this:
  423.  
  424. fuddle {
  425.   IF(adq==0)
  426.     adq=3
  427.   ELSE
  428.     adq=14
  429.   ENDIF
  430.   :
  431.   z=adq-8
  432.   done=1
  433.   done==0
  434. }
  435.  
  436. If adq was zero, it would become 3. Then z would be set on first iteration
  437. to 3 - 8, and the loop would immediately exit, yielding a cyan pixel (using
  438. the default color map and outside=real). If instead adq was nonzero, it would
  439. go to 14, yielding a yellow pixel. I ran this with outside=real, logmap=0,
  440. maxiter>255, and passes=1, and got a single blue pixel in the upper left
  441. corner of an otherwise yellow screen, thus demonstrating 2 of the 3 things
  442. I was hoping to verify: that variables are set to zero sometime before use,
  443. and that they are definitely kept unchanged from the end of one
  444. pixel to the start of the next. They were zeroed at most once per image.
  445. But maybe they were only zeroed less often, e.g. per use of the formula?
  446. That would be no good.
  447. I then upped maxiter  (specifically from 2000 to 6000) to force a
  448. regeneration of the image. Same deal, thus showing that the variable is
  449. indeed zeroed again at the start of a new image, not only zeroed for one
  450. run of the formula or for one run of the 'z' parameters or for one run of
  451. Fractint.
  452.  
  453. It works.
  454.  
  455.  
  456. - --
  457.     .*.  Friendship, companionship, love, and having fun are the reasons for
  458.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  459.     `*'  Send any and all mail with attachments to the hotmail address please.
  460. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  461.  
  462. - -
  463. - ------------------------------------------------------------
  464. Thanks for using Fractint, The Fractals and Fractint Discussion List
  465. Post Message:   fractint@xmission.com
  466. Get Commands:   majordomo@xmission.com "help"
  467. Administrator:  twegner@phoenix.net
  468. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  469.  
  470. ------------------------------
  471.  
  472. Date: Sat, 21 Mar 1998 03:58:02 -0500 (EST)
  473. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  474. Subject: Re: (fractint) Nuclear Explosion
  475.  
  476. >hi, can someone tell me what that Julia's doing inside that piece of an
  477. >M-set.  i haven't seen this before, but maybe it's common? if so ignore,
  478. >but otherwise, cld someone explain this. the formula is longish and was
  479. >posted early this morning so i won't post it again.
  480. >thank you
  481.  
  482. Heh. :)
  483. That's coloring by all critical points, just to get neat effects like
  484. that. It superimposes the pictures for all 3 critical points. The red buds
  485. are where one of them is going to finite attractors and is determining
  486. them; the orange Julia inside is where one of the other 2 is being sucked
  487. into the attractor picked by the first. (Elsewhere it was going to infinity.)
  488. Note that the Julia set fits with the bud's period and location. This neat
  489. effect occurs with all the multicolored Nuke Mandelbrot formulas, as well
  490. asthe tricolor and 4color formulas posted ages ago.
  491.  
  492.  
  493. - --
  494.     .*.  Friendship, companionship, love, and having fun are the reasons for
  495.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  496.     `*'  Send any and all mail with attachments to the hotmail address please.
  497. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  498.  
  499. - -
  500. - ------------------------------------------------------------
  501. Thanks for using Fractint, The Fractals and Fractint Discussion List
  502. Post Message:   fractint@xmission.com
  503. Get Commands:   majordomo@xmission.com "help"
  504. Administrator:  twegner@phoenix.net
  505. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  506.  
  507. ------------------------------
  508.  
  509. Date: Sat, 21 Mar 1998 04:10:00 -0500 (EST)
  510. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  511. Subject: Re: (fractint) Fractals Just Went Nuclear!
  512.  
  513. >These are incredible! 
  514.  
  515. Thanks :-)
  516.  
  517. >(has any tried them?). But the cool/weird thing is
  518. >that if I set outside color to summ I get pictures of M-sets and Julias
  519. >within M-sets. Paul, can you explain?   
  520.  
  521. It's supposed to do that... the comments should make that clear; the
  522. Mandel ones without a specific critical point use all 3 to make a "triple
  523. exposure" picture using color ranges. The comments say to use
  524. outside=real; outside=summ will work identically (since the z value
  525. emitted has imaginary component 0). Best results without using a logmap,
  526. but there's an ersatz logmap builtin with 2 real parameters, which affect
  527. the "compressed" you usually use logmap=2 to achieve, and the rate of
  528. decline (not an option using the normal logmap!). It uses not a log but an
  529. nth-root, like the square root alternative logmap, but using any n. Bigger
  530. n means more colors for lower iterations. n smaller than 1 means colors
  531. pushed toward higher iterations. Either way all iterations are used.
  532.  
  533. The new Nuclear_J_ColLog uses a logmap similar if not equal to the builtin
  534. one, with no compression. (No tweaks because no spare parameters!)
  535.  
  536. - --
  537.     .*.  Friendship, companionship, love, and having fun are the reasons for
  538.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  539.     `*'  Send any and all mail with attachments to the hotmail address please.
  540. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  541.  
  542. - -
  543. - ------------------------------------------------------------
  544. Thanks for using Fractint, The Fractals and Fractint Discussion List
  545. Post Message:   fractint@xmission.com
  546. Get Commands:   majordomo@xmission.com "help"
  547. Administrator:  twegner@phoenix.net
  548. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  549.  
  550. ------------------------------
  551.  
  552. Date: Sat, 21 Mar 1998 04:24:50 -0500 (EST)
  553. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  554. Subject: Re: (fractint) Colormaps Ahoy
  555.  
  556. wizzle wrote
  557.  
  558. >Good idea and you can do it in very little space as one file containing
  559. >only pars required to create the images. The color part can be copied
  560. >out into any other par we need it for.
  561.  
  562. Heck, then why not keep all 120? ;-)
  563.  
  564. Better yet: Put them in a PAR that renders a full-on Mandelbrot with each
  565. map in turn. Then supply with Fractint a few maps already, the PAR, and a
  566. maps.key .key file (you do know about the autokey feature, don't you?
  567. ;-)) that draws them one at a time and saves the maps, and cycles them for
  568. effect. The key file, even with map names and stuff, won't be big either.
  569.  
  570.  
  571. - --
  572.     .*.  Friendship, companionship, love, and having fun are the reasons for
  573.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  574.     `*'  Send any and all mail with attachments to the hotmail address please.
  575. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  576.  
  577. - -
  578. - ------------------------------------------------------------
  579. Thanks for using Fractint, The Fractals and Fractint Discussion List
  580. Post Message:   fractint@xmission.com
  581. Get Commands:   majordomo@xmission.com "help"
  582. Administrator:  twegner@phoenix.net
  583. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  584.  
  585. ------------------------------
  586.  
  587. Date: Sat, 21 Mar 1998 15:51:16 -0800
  588. From: Peter Jakubowicz <pfjakub@earthlink.net>
  589. Subject: (fractint) Hardware
  590.  
  591. Hi,
  592. Has anyone run Fractint w/a Diamond Permedia II video card. I am about to
  593. purchase a new computer that comes with that and wld be interested if I wld
  594. have a problem with Fractint w/ that. The salesperson has never heard of
  595. Fractint. Also, is a Sony 17'' monitor w/ .25 dot pitch that runs at
  596. 1600x1200 sufficient for viewing fractals. Pls answer me personally, so as
  597. not to clog up the list, as I have just done.
  598. Thank you
  599.  
  600.  
  601. - -
  602. - ------------------------------------------------------------
  603. Thanks for using Fractint, The Fractals and Fractint Discussion List
  604. Post Message:   fractint@xmission.com
  605. Get Commands:   majordomo@xmission.com "help"
  606. Administrator:  twegner@phoenix.net
  607. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  608.  
  609. ------------------------------
  610.  
  611. Date: Sat, 21 Mar 1998 18:25:00 -0500
  612. From: "Peter Gavin" <pgavin@mindspring.com>
  613. Subject: Re: (fractint) Sqrt(3) in the Mset
  614.  
  615. Hehe..  I had that program, but the 48g is pretty much RAM-less..  :)
  616.  
  617.  
  618. - -----Original Message-----
  619. From: Ryan Jameson <ratguy@proaxis.com>
  620. To: fractint@lists.xmission.com <fractint@lists.xmission.com>
  621. Date: Saturday, March 21, 1998 2:02 AM
  622. Subject: Re: (fractint) Sqrt(3) in the Mset
  623.  
  624.  
  625. |At 06:55 PM 3/20/98 -0500, you wrote:
  626. |>Jeez, you're right, it is close!  But what I wanna know is, how the *&^$
  627. did
  628. |>you figure THAT out?!!
  629. |>:)
  630. |
  631. |Hmm... I remember from some time ago that there is a program written for
  632. |the HP48 calculator that would solve funky numbers like that for thier
  633. |fractional equivalent. It even inluded such numbers like square roots.
  634. |perhaps that is how he did it....
  635. |
  636. |Ryan
  637. |
  638. |-
  639. |------------------------------------------------------------
  640. |Thanks for using Fractint, The Fractals and Fractint Discussion List
  641. |Post Message:   fractint@xmission.com
  642. |Get Commands:   majordomo@xmission.com "help"
  643. |Administrator:  twegner@phoenix.net
  644. |Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  645.  
  646.  
  647. - -
  648. - ------------------------------------------------------------
  649. Thanks for using Fractint, The Fractals and Fractint Discussion List
  650. Post Message:   fractint@xmission.com
  651. Get Commands:   majordomo@xmission.com "help"
  652. Administrator:  twegner@phoenix.net
  653. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  654.  
  655. ------------------------------
  656.  
  657. Date: Sat, 21 Mar 1998 16:43:02 -0800
  658. From: Ryan Jameson <ratguy@proaxis.com>
  659. Subject: Re: (fractint) Sqrt(3) in the Mset
  660.  
  661. At 06:25 PM 3/21/98 -0500, you wrote:
  662. >Hehe..  I had that program, but the 48g is pretty much RAM-less..  :)
  663. >
  664.  
  665. Heh.. I guess you should have bought the gx. I have an sx, and I went and
  666. put a 128 card in it. (160 total) I've yet to run out of room. 
  667.  
  668. Ryan
  669.  
  670. - -
  671. - ------------------------------------------------------------
  672. Thanks for using Fractint, The Fractals and Fractint Discussion List
  673. Post Message:   fractint@xmission.com
  674. Get Commands:   majordomo@xmission.com "help"
  675. Administrator:  twegner@phoenix.net
  676. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  677.  
  678. ------------------------------
  679.  
  680. Date: Sat, 21 Mar 1998 22:07:28 -0800
  681. From: kathy roth <kroth@well.com>
  682. Subject: (fractint) formula
  683.  
  684. I've been learning to write formulas for a while now, randomly
  685. changing things,  having fun at it but have not come up with
  686. anything particularly interesting- I guess this is not too surprising-
  687. You drop a watch on the floor and... most of the times it's worse!
  688.           There's been talk of a contest based on coloring methods
  689. and I was looking at a fractal in "The Science of Fractal Images"
  690. with a very simple formula but a different coloring method.  (page 160
  691. if you have it).    This is waaayyy past my level of knowledge of this
  692. but I was trying to write a formula and found it was worthwhile for the
  693. basics of it- like is the initialization right and what is the bailout
  694. here and how does Fractint assign a color really, aside from hitting
  695. the "x" screen  and hitting "iter"....
  696.      So can anyone put this into a fractint formula?  It's a cool
  697. picture.  (Sorry about the length of this.)
  698.      " ...the Julia set of 1/e*e^x (in white) approximated by points
  699. that escape to infinity according to the following criteria: A point
  700. z(0) is colored white if the orbit of z(0) contains a point z(k) with
  701. real part Re z(k) greater than 50 within the first 25 iterates and if
  702. cos (Im z(k)) >= 0.0 (i.e. the next iterate z(k+1) will be very
  703. large...."  (from The Science of Fractal Images " by Peitgen et.al.)
  704.          This is what I tried:
  705.     {z=pixel
  706.         IF (real(z)>50) && (cos(imag(z))>=0)
  707.       ???what next
  708. Would the k =25 iterates be the bailout value?
  709. How do you get it to assign a color?
  710. Thanks in advance to anyone who read this far.
  711.  
  712.  
  713.  
  714.  
  715.  
  716.  
  717.  
  718.  
  719. - -
  720. - ------------------------------------------------------------
  721. Thanks for using Fractint, The Fractals and Fractint Discussion List
  722. Post Message:   fractint@xmission.com
  723. Get Commands:   majordomo@xmission.com "help"
  724. Administrator:  twegner@phoenix.net
  725. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  726.  
  727. ------------------------------
  728.  
  729. Date: Sun, 22 Mar 1998 03:02:49 -0500
  730. From: "Peter Gavin" <pgavin@mindspring.com>
  731. Subject: (fractint) HP-48G fun!  (aka Sqrt(3) in the Mset)
  732.  
  733. Well, my Calc teacher got a massive grant from HP (I think it was them, or
  734. maybe it was the school board.. i dunno) and got about a hundred 48g's and
  735. she lends them out to the students in her classes who want/need them.  So,
  736. naturally, I borrowed one, after I saw how nifty they really are.  Actually,
  737. I wrote a fractal renderer on it, in RPL, since I didn't have a clue about
  738. its assembly language, let alone have the time to figure it out.  It was
  739. pretty cool.  I built in external formula capability, and I was working on
  740. adding a zoomer, when I realized, hmm, is it really worth paying for a new
  741. set of batteries every other week just to have something to do in school?
  742. (sounds like  ti-85 zshell tetris, huh? <g> )  And besides, (needless to
  743. say) it was slower than a Yugo, and my ram was running short, too (hehe...),
  744. which slowed it down, a lot.  I think the HP uses some kind of paging mode
  745. or something, so it can use cheap ram for storage, and good ram for
  746. calculations... My friend demonstrated this by repetitively copying a number
  747. onto the stack... about 2 bazillion times.  It got to the point where it
  748. took about 10 seconds just to begin reacting to a key-press.  Anyways, I
  749. thought a fractal renderer would be cool, but I didn't know they were
  750. available anywhere.  How much I've learned since... :)  Of course, since
  751. then, I've done more with fractint than I could've in 10e(10e5) years with
  752. the hp, and in 1024x768 resolution and 256 colors!       [LOL :) ]
  753.  
  754. Pete
  755.  
  756. - -----Original Message-----
  757. From: Ryan Jameson <ratguy@proaxis.com>
  758. To: fractint@lists.xmission.com <fractint@lists.xmission.com>
  759. Date: Saturday, March 21, 1998 7:45 PM
  760. Subject: Re: (fractint) Sqrt(3) in the Mset
  761.  
  762.  
  763. |At 06:25 PM 3/21/98 -0500, you wrote:
  764. |>Hehe..  I had that program, but the 48g is pretty much RAM-less..  :)
  765. |>
  766. |
  767. |Heh.. I guess you should have bought the gx. I have an sx, and I went and
  768. |put a 128 card in it. (160 total) I've yet to run out of room.
  769. |
  770. |Ryan
  771. |
  772. |-
  773. |------------------------------------------------------------
  774. |Thanks for using Fractint, The Fractals and Fractint Discussion List
  775. |Post Message:   fractint@xmission.com
  776. |Get Commands:   majordomo@xmission.com "help"
  777. |Administrator:  twegner@phoenix.net
  778. |Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  779.  
  780.  
  781. - -
  782. - ------------------------------------------------------------
  783. Thanks for using Fractint, The Fractals and Fractint Discussion List
  784. Post Message:   fractint@xmission.com
  785. Get Commands:   majordomo@xmission.com "help"
  786. Administrator:  twegner@phoenix.net
  787. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  788.  
  789. ------------------------------
  790.  
  791. Date: Sun, 22 Mar 1998 04:17:12 -0600
  792. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  793. Subject: Re: (fractint) Celtic formula and pars
  794.  
  795. This is a multi-part message in MIME format.
  796.  
  797. - --------------3B8E4221EC9
  798. Content-Type: text/plain; charset=us-ascii
  799. Content-Transfer-Encoding: 7bit
  800.  
  801. Paul and/or Joyce Carlson wrote:
  802. >
  803. > I call this formula my Celtic formula because about a year
  804. > ago I posted the image produced by the first par to the
  805. > abpf newsgroup and Noel Giffin wrote to me saying he really
  806. > liked it because it reminded him of some kind of Celtic
  807. > symbol (I don't remember what).
  808. >
  809.  
  810. I enjoyed the formula and images, but I made a change to the colors to
  811. be more appropriate for last Tuesday's Holiday festivities.  They are
  812. attached as MAP files.
  813.  
  814. P.N.L. 
  815.  
  816. - -------------------------------------------------
  817.      Why do most folks hate cynics so much?
  818.        Because we're almost always right.
  819. - -------------------------------------------------
  820. http://home.att.net/~Paul.N.Lee/PNL_Fractals.html
  821.  
  822. - --------------3B8E4221EC9
  823. Content-Type: text/plain; charset=us-ascii; name="Irish_01.map"
  824. Content-Transfer-Encoding: 7bit
  825. Content-Disposition: inline; filename="Irish_01.map"
  826.  
  827. 0 0 0
  828. 255 128 0
  829. 254 128 0
  830. 253 127 0
  831. 252 127 0
  832. 251 126 0
  833. 250 126 0
  834. 249 125 0
  835. 248 124 0
  836. 246 124 0
  837. 245 123 0
  838. 244 123 0
  839. 243 122 0
  840. 242 122 0
  841. 241 121 0
  842. 240 120 0
  843. 239 120 0
  844. 237 119 0
  845. 236 119 0
  846. 235 118 0
  847. 234 118 0
  848. 233 117 0
  849. 232 116 0
  850. 231 116 0
  851. 229 115 0
  852. 228 115 0
  853. 227 114 0
  854. 226 114 0
  855. 225 113 0
  856. 224 112 0
  857. 223 112 0
  858. 222 111 0
  859. 220 111 0
  860. 219 110 0
  861. 218 110 0
  862. 217 109 0
  863. 216 108 0
  864. 215 108 0
  865. 214 107 0
  866. 213 107 0
  867. 211 106 0
  868. 210 106 0
  869. 209 105 0
  870. 208 104 0
  871. 207 104 0
  872. 206 103 0
  873. 205 103 0
  874. 203 102 0
  875. 202 102 0
  876. 201 101 0
  877. 200 100 0
  878. 199 100 0
  879. 198 99 0
  880. 197 99 0
  881. 196 98 0
  882. 194 98 0
  883. 193 97 0
  884. 192 96 0
  885. 191 96 0
  886. 190 95 0
  887. 189 95 0
  888. 188 94 0
  889. 186 93 0
  890. 185 93 0
  891. 184 92 0
  892. 183 92 0
  893. 182 91 0
  894. 181 91 0
  895. 180 90 0
  896. 179 89 0
  897. 177 89 0
  898. 176 88 0
  899. 175 88 0
  900. 174 87 0
  901. 173 87 0
  902. 172 86 0
  903. 171 85 0
  904. 170 85 0
  905. 168 84 0
  906. 167 84 0
  907. 166 83 0
  908. 165 83 0
  909. 164 82 0
  910. 163 81 0
  911. 162 81 0
  912. 160 80 0
  913. 159 80 0
  914. 158 79 0
  915. 157 79 0
  916. 156 78 0
  917. 155 77 0
  918. 154 77 0
  919. 153 76 0
  920. 151 76 0
  921. 150 75 0
  922. 149 75 0
  923. 148 74 0
  924. 147 73 0
  925. 146 73 0
  926. 145 72 0
  927. 144 72 0
  928. 142 71 0
  929. 141 71 0
  930. 140 70 0
  931. 139 69 0
  932. 138 69 0
  933. 137 68 0
  934. 136 68 0
  935. 134 67 0
  936. 133 67 0
  937. 132 66 0
  938. 131 65 0
  939. 130 65 0
  940. 129 64 0
  941. 128 64 0
  942. 127 63 0
  943. 125 63 0
  944. 124 62 0
  945. 123 61 0
  946. 122 61 0
  947. 121 60 0
  948. 120 60 0
  949. 119 59 0
  950. 117 58 0
  951. 0 255 0
  952. 0 254 0
  953. 0 253 0
  954. 0 252 0
  955. 0 250 0
  956. 0 249 0
  957. 0 248 0
  958. 0 247 0
  959. 0 245 0
  960. 0 244 0
  961. 0 243 0
  962. 0 242 0
  963. 0 240 0
  964. 0 239 0
  965. 0 238 0
  966. 0 237 0
  967. 0 235 0
  968. 0 234 0
  969. 0 233 0
  970. 0 232 0
  971. 0 230 0
  972. 0 229 0
  973. 0 228 0
  974. 0 226 0
  975. 0 225 0
  976. 0 224 0
  977. 0 223 0
  978. 0 221 0
  979. 0 220 0
  980. 0 219 0
  981. 0 218 0
  982. 0 216 0
  983. 0 215 0
  984. 0 214 0
  985. 0 213 0
  986. 0 211 0
  987. 0 210 0
  988. 0 209 0
  989. 0 208 0
  990. 0 206 0
  991. 0 205 0
  992. 0 204 0
  993. 0 202 0
  994. 0 201 0
  995. 0 200 0
  996. 0 199 0
  997. 0 197 0
  998. 0 196 0
  999. 0 195 0
  1000. 0 194 0
  1001. 0 192 0
  1002. 0 191 0
  1003. 0 190 0
  1004. 0 189 0
  1005. 0 187 0
  1006. 0 186 0
  1007. 0 185 0
  1008. 0 184 0
  1009. 0 182 0
  1010. 0 181 0
  1011. 0 180 0
  1012. 0 179 0
  1013. 0 177 0
  1014. 0 176 0
  1015. 0 175 0
  1016. 0 173 0
  1017. 0 172 0
  1018. 0 171 0
  1019. 0 170 0
  1020. 0 168 0
  1021. 0 167 0
  1022. 0 166 0
  1023. 0 165 0
  1024. 0 163 0
  1025. 0 162 0
  1026. 0 161 0
  1027. 0 160 0
  1028. 0 158 0
  1029. 0 157 0
  1030. 0 156 0
  1031. 0 155 0
  1032. 0 153 0
  1033. 0 152 0
  1034. 0 151 0
  1035. 0 149 0
  1036. 0 148 0
  1037. 0 147 0
  1038. 0 146 0
  1039. 0 144 0
  1040. 0 143 0
  1041. 0 142 0
  1042. 0 141 0
  1043. 0 139 0
  1044. 0 138 0
  1045. 0 137 0
  1046. 0 136 0
  1047. 0 134 0
  1048. 0 133 0
  1049. 0 132 0
  1050. 0 131 0
  1051. 0 129 0
  1052. 0 128 0
  1053. 0 127 0
  1054. 0 126 0
  1055. 0 124 0
  1056. 0 123 0
  1057. 0 122 0
  1058. 0 120 0
  1059. 0 119 0
  1060. 0 118 0
  1061. 0 117 0
  1062. 0 115 0
  1063. 0 114 0
  1064. 0 113 0
  1065. 0 112 0
  1066. 0 110 0
  1067. 0 109 0
  1068. 0 108 0
  1069. 0 107 0
  1070. 0 105 0
  1071. 0 104 0
  1072. 0 103 0
  1073. 0 102 0
  1074. 0 100 0
  1075. 0 99 0
  1076. 0 98 0
  1077. 0 96 0
  1078. 0 0 0
  1079. 0 0 0
  1080. 0 0 0
  1081. 0 0 0
  1082. 0 0 0
  1083.  
  1084. - --------------3B8E4221EC9
  1085. Content-Type: text/plain; charset=us-ascii; name="Irish_02.map"
  1086. Content-Transfer-Encoding: 7bit
  1087. Content-Disposition: inline; filename="Irish_02.map"
  1088.  
  1089. 0 0 0
  1090. 0 255 0
  1091. 0 254 0
  1092. 0 253 0
  1093. 0 252 0
  1094. 0 250 0
  1095. 0 249 0
  1096. 0 248 0
  1097. 0 246 0
  1098. 0 245 0
  1099. 0 244 0
  1100. 0 242 0
  1101. 0 241 0
  1102. 0 240 0
  1103. 0 239 0
  1104. 0 237 0
  1105. 0 236 0
  1106. 0 235 0
  1107. 0 233 0
  1108. 0 232 0
  1109. 0 231 0
  1110. 0 229 0
  1111. 0 228 0
  1112. 0 227 0
  1113. 0 226 0
  1114. 0 224 0
  1115. 0 223 0
  1116. 0 222 0
  1117. 0 220 0
  1118. 0 219 0
  1119. 0 218 0
  1120. 0 216 0
  1121. 0 215 0
  1122. 0 214 0
  1123. 0 212 0
  1124. 0 211 0
  1125. 0 210 0
  1126. 0 209 0
  1127. 0 207 0
  1128. 0 206 0
  1129. 0 205 0
  1130. 0 203 0
  1131. 0 202 0
  1132. 0 201 0
  1133. 0 199 0
  1134. 0 198 0
  1135. 0 197 0
  1136. 0 196 0
  1137. 0 194 0
  1138. 0 193 0
  1139. 0 192 0
  1140. 0 190 0
  1141. 0 189 0
  1142. 0 188 0
  1143. 0 186 0
  1144. 0 185 0
  1145. 0 184 0
  1146. 0 183 0
  1147. 0 181 0
  1148. 0 180 0
  1149. 0 179 0
  1150. 0 177 0
  1151. 0 176 0
  1152. 0 175 0
  1153. 0 173 0
  1154. 0 172 0
  1155. 0 171 0
  1156. 0 169 0
  1157. 0 168 0
  1158. 0 167 0
  1159. 0 166 0
  1160. 0 164 0
  1161. 0 163 0
  1162. 0 162 0
  1163. 0 160 0
  1164. 0 159 0
  1165. 0 158 0
  1166. 0 156 0
  1167. 0 155 0
  1168. 0 154 0
  1169. 0 153 0
  1170. 0 151 0
  1171. 0 150 0
  1172. 0 149 0
  1173. 0 147 0
  1174. 0 146 0
  1175. 0 145 0
  1176. 0 143 0
  1177. 0 142 0
  1178. 0 141 0
  1179. 0 140 0
  1180. 0 138 0
  1181. 0 137 0
  1182. 0 136 0
  1183. 0 134 0
  1184. 0 133 0
  1185. 0 132 0
  1186. 0 130 0
  1187. 0 129 0
  1188. 0 128 0
  1189. 0 126 0
  1190. 0 125 0
  1191. 0 124 0
  1192. 0 123 0
  1193. 0 121 0
  1194. 0 120 0
  1195. 0 119 0
  1196. 0 117 0
  1197. 0 116 0
  1198. 0 115 0
  1199. 0 113 0
  1200. 0 112 0
  1201. 0 111 0
  1202. 0 110 0
  1203. 0 108 0
  1204. 0 107 0
  1205. 0 106 0
  1206. 0 104 0
  1207. 0 103 0
  1208. 0 102 0
  1209. 0 100 0
  1210. 0 99 0
  1211. 0 98 0
  1212. 0 96 0
  1213. 255 128 0
  1214. 255 128 0
  1215. 254 128 0
  1216. 253 127 0
  1217. 252 127 0
  1218. 251 126 0
  1219. 250 126 0
  1220. 249 125 0
  1221. 248 125 0
  1222. 247 124 0
  1223. 246 124 0
  1224. 245 123 0
  1225. 244 123 0
  1226. 243 122 0
  1227. 242 122 0
  1228. 241 121 0
  1229. 240 121 0
  1230. 239 120 0
  1231. 238 120 0
  1232. 237 119 0
  1233. 236 119 0
  1234. 235 118 0
  1235. 234 118 0
  1236. 233 117 0
  1237. 232 117 0
  1238. 231 116 0
  1239. 231 116 0
  1240. 230 115 0
  1241. 229 115 0
  1242. 228 114 0
  1243. 227 114 0
  1244. 226 113 0
  1245. 225 113 0
  1246. 224 113 0
  1247. 223 112 0
  1248. 222 112 0
  1249. 221 111 0
  1250. 220 111 0
  1251. 219 110 0
  1252. 218 110 0
  1253. 217 109 0
  1254. 216 109 0
  1255. 215 108 0
  1256. 214 108 0
  1257. 213 107 0
  1258. 212 107 0
  1259. 211 106 0
  1260. 210 106 0
  1261. 209 105 0
  1262. 208 105 0
  1263. 207 104 0
  1264. 207 104 0
  1265. 206 103 0
  1266. 205 103 0
  1267. 204 102 0
  1268. 203 102 0
  1269. 202 101 0
  1270. 201 101 0
  1271. 200 100 0
  1272. 199 100 0
  1273. 198 99 0
  1274. 197 99 0
  1275. 196 98 0
  1276. 195 98 0
  1277. 194 98 0
  1278. 193 97 0
  1279. 192 97 0
  1280. 191 96 0
  1281. 190 96 0
  1282. 189 95 0
  1283. 188 95 0
  1284. 187 94 0
  1285. 186 94 0
  1286. 185 93 0
  1287. 184 93 0
  1288. 183 92 0
  1289. 183 92 0
  1290. 182 91 0
  1291. 181 91 0
  1292. 180 90 0
  1293. 179 90 0
  1294. 178 89 0
  1295. 177 89 0
  1296. 176 88 0
  1297. 175 88 0
  1298. 174 87 0
  1299. 173 87 0
  1300. 172 86 0
  1301. 171 86 0
  1302. 170 85 0
  1303. 169 85 0
  1304. 168 84 0
  1305. 167 84 0
  1306. 166 83 0
  1307. 165 83 0
  1308. 164 83 0
  1309. 163 82 0
  1310. 162 82 0
  1311. 161 81 0
  1312. 160 81 0
  1313. 159 80 0
  1314. 159 80 0
  1315. 158 79 0
  1316. 157 79 0
  1317. 156 78 0
  1318. 155 78 0
  1319. 154 77 0
  1320. 153 77 0
  1321. 152 76 0
  1322. 151 76 0
  1323. 150 75 0
  1324. 149 75 0
  1325. 148 74 0
  1326. 147 74 0
  1327. 146 73 0
  1328. 145 73 0
  1329. 144 72 0
  1330. 143 72 0
  1331. 142 71 0
  1332. 141 71 0
  1333. 140 70 0
  1334. 139 70 0
  1335. 138 69 0
  1336. 137 69 0
  1337. 136 68 0
  1338. 135 68 0
  1339. 134 67 0
  1340. 0 0 0
  1341. 0 0 0
  1342. 0 0 0
  1343. 0 0 0
  1344. 0 0 0
  1345.  
  1346. - --------------3B8E4221EC9--
  1347.  
  1348.  
  1349. - -
  1350. - ------------------------------------------------------------
  1351. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1352. Post Message:   fractint@xmission.com
  1353. Get Commands:   majordomo@xmission.com "help"
  1354. Administrator:  twegner@phoenix.net
  1355. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1356.  
  1357. ------------------------------
  1358.  
  1359. Date: Sun, 22 Mar 1998 05:09:33 -0800 (PST)
  1360. From: "James R. McKenzie" <whookam88@yahoo.com>
  1361. Subject: Re: (fractint) Celtic formula and pars
  1362.  
  1363. - ---"Paul N. Lee" <Paul.N.Lee@worldnet.att.net> wrote:
  1364. >
  1365. > Paul and/or Joyce Carlson wrote:
  1366. > >
  1367. > > I call this formula my Celtic formula because about a year
  1368. > > ago I posted the image produced by the first par to the
  1369. > > abpf newsgroup and Noel Giffin wrote to me saying he really
  1370. > > liked it because it reminded him of some kind of Celtic
  1371. > > symbol (I don't remember what).
  1372. > >
  1373. > I enjoyed the formula and images, but I made a change to the colors to
  1374. > be more appropriate for last Tuesday's Holiday festivities.  They are
  1375. > attached as MAP files.
  1376. > P.N.L. 
  1377. > -------------------------------------------------
  1378. >      Why do most folks hate cynics so much?
  1379. >        Because we're almost always right.
  1380. > -------------------------------------------------
  1381. > http://home.att.net/~Paul.N.Lee/PNL_Fractals.html
  1382.  
  1383.  
  1384. Am I supposed to replace a color map and if so which one?  I've never
  1385. cracked open the maps all that much, damn they're huge.  BTW do you
  1386. actually "type" this stuff in by hand?  If so you must go through
  1387. <TAB> keys quite quickly.  
  1388.  
  1389.  
  1390. Before anyone says anything know this, I don't program, I don't hack. 
  1391. If I can't run it straight off the shelf I don't run it.  That's not
  1392. to say I don't use Spreadsheets and Wordprocessors, I mean I don't
  1393. re-write programs from the inside-out nor do I alter add-ins.  PARS,
  1394. FRMS and MAPS are add-ins.  I run 'em don't hack 'em.  I just need to
  1395. know which file[s] do I replace, if any, in order to use the map
  1396. originally sent in this message.
  1397.  
  1398. I don't mean to sound curt but when I get more verbose I digress,
  1399. unfortunately I'm no good at balancing this out, sorry to sound this
  1400. way I honestly don't mean to.
  1401.  
  1402.  
  1403.                          T H A N K   Y O U 
  1404.  
  1405.  
  1406.                          James R. McKenzie
  1407.  
  1408.  
  1409.                          JRMCKENZIE@PDN.NET
  1410. ==
  1411.  
  1412. _________________________________________________________
  1413. DO YOU YAHOO!?
  1414. Get your free @yahoo.com address at http://mail.yahoo.com
  1415.  
  1416.  
  1417. - -
  1418. - ------------------------------------------------------------
  1419. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1420. Post Message:   fractint@xmission.com
  1421. Get Commands:   majordomo@xmission.com "help"
  1422. Administrator:  twegner@phoenix.net
  1423. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1424.  
  1425. ------------------------------
  1426.  
  1427. Date: Sun, 22 Mar 1998 10:15:35 -0600 (CST)
  1428. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  1429. Subject: (fractint) 3-way Halley formula
  1430.  
  1431. comment {
  1432. Here's my "3-way" rendering applied to a 7th-order Halley method
  1433. fractal.  After you run the 3wayhal1 par, press the @ key and
  1434. select halmap1 for the filled-in rounded image.  Press the @ key
  1435. again and select halmap2 for the folded image.  Pressing the @ key
  1436. again and selecting halmap3 returns you to the original image.
  1437.  
  1438. Paul Carlson
  1439. }
  1440.  
  1441. frm:Halley7_3Way {; Copyright (c) Paul W. Carlson, 1998
  1442.     ; Alyways use float=y, outdide=summ
  1443.     ; real(p1) = escape circle radius squared
  1444.     ; imag(p1) = number of iterations to skip
  1445.     ; real(p2) = number of color ranges
  1446.     ; imag(p2) = number of colors in a range
  1447.     ; p3       = relaxation factor
  1448.     z = k = iter = range_num = bailout = 0
  1449.     w = pixel
  1450.     prev_modw2 = 1.0e20
  1451.     rad2 = real(p1)
  1452.     skip_iters = imag(p1)
  1453.     num_ranges = real(p2)
  1454.     colors_in_range = imag(p2)
  1455.     colors_in_range_1 = colors_in_range - 1
  1456.     :
  1457.     w5 = w^5, w6 = w * w5, w7 = w * w6
  1458.     w = w - p3 * (w7-w)/((7*w6-1)-(42*w5)*(w7-w)/(14*w6-2))
  1459.     ;
  1460.     IF ((prev_modw2 < rad2) && (|w| > rad2))
  1461.     bailout = 1
  1462.     IF (iter > skip_iters)
  1463.         k = 1
  1464.     ENDIF
  1465.     index = colors_in_range_1 * (rad2 - prev_modw2) / rad2
  1466.     z = (index + range_num * colors_in_range + 1) * k
  1467.     ENDIF
  1468.     prev_modw2 = |w|
  1469.     range_num = range_num + 1
  1470.     IF (range_num == num_ranges)
  1471.     range_num = 0
  1472.     ENDIF
  1473.     iter = iter + 1
  1474.     z = z - iter
  1475.     bailout == 0 && |w| < 1.0e10
  1476. }
  1477.  
  1478. 3wayhal1           { ; Copyright (c) Paul W. Carlson, 1998
  1479.   reset=1960 type=formula formulafile=hal3way.par
  1480.   formulaname=halley7_3way passes=t
  1481.   center-mag=-4.44089e-016/2.22045e-016/0.8912656
  1482.   params=1/0/8/30/3/0
  1483.   float=y maxiter=252 inside=253 outside=summ
  1484.   colors=0000C4<6>0zR<6>0C4000<13>0000CC<6>0zz<6>0CC000<13>00000O\
  1485.   <6>GGz<5>33U00O000<13>000O6U<6>eNx<6>O6U000<13>000O08<6>z0f<6>O\
  1486.   08000<13>000O00<6>w77<6>O00000<13>000c40<6>zW0<6>c40000<13>000a\
  1487.   G0<6>zz0<6>aG0000<27>000O08
  1488.   cyclerange=1/240
  1489.   }
  1490.  
  1491. halmap1            { ; Copyright (c) Paul W. Carlson, 1998
  1492.   colors=0000C4<15>0zR<12>0C40CC<15>0zz<12>0CC00O<14>FFwGGzFFw<11>0\
  1493.   0OSA`<14>eNxfOzeNw<10>K2OO08<15>z0f<12>R0BO08O00<15>z88<11>R11c40\
  1494.   <14>vS0xU0wT0<12>c40aG0<14>xw0zz0yw0<11>aG0000<13>000
  1495.   cyclerange=1/240
  1496.   }
  1497.  
  1498. halmap2           { ; Copyright (c) Paul W. Carlson, 1998
  1499.   colors=0000zR<3>0nL0kK0gJ0dI0aG<7>0C4<12>0zR0zz<15>0CC<12>0zzGGz<\
  1500.   14>11R00O11R<11>GGzfOz<14>M4RK2OL3R<11>fOzz0f<14>O08<13>z0fz88<15\
  1501.   >R11<12>z88xU0<13>e60c40d50<12>xU0zz0<15>aG0<12>zz0000<13>000
  1502.   cyclerange=1/240
  1503.   }
  1504.  
  1505. halmap3           { ; Copyright (c) Paul W. Carlson, 1998
  1506.   colors=0000C4<6>0zR<6>0C4000<13>0000CC<6>0zz<6>0CC000<13>00000O<6\
  1507.   >GGz<5>33U00O000<13>000O6U<6>eNx<6>O6U000<13>000O08<6>z0f<6>O0800\
  1508.   0<13>000O00<6>w77<6>O00000<13>000c40<6>zW0<6>c40000<13>000aG0<6>z\
  1509.   z0<6>aG0000<27>000O08
  1510.   cyclerange=1/240
  1511.   }
  1512.  
  1513.  
  1514. - -
  1515. - ------------------------------------------------------------
  1516. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1517. Post Message:   fractint@xmission.com
  1518. Get Commands:   majordomo@xmission.com "help"
  1519. Administrator:  twegner@phoenix.net
  1520. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1521.  
  1522. ------------------------------
  1523.  
  1524. Date: Sun, 22 Mar 1998 08:44:33 -0800
  1525. From: kathy roth <kroth@well.com>
  1526. Subject: re: (fractint) Celtic formula and pars
  1527.  
  1528. Here's a celtic variation.  I can't get it to take out that double
  1529. space.
  1530.  
  1531. celtic-monolith    { ; kathy roth
  1532.                      ; frm by Paul Carlson
  1533.                      ; map by wizzle
  1534.   reset=1960 type=formula formulafile=celtic~1.frm
  1535.   formulaname=mandel_3way passes=t
  1536. corners=-0.45691884/-0.73072927/-0.15972509/0.20535548/-0.73072927/0.205\
  1537.  
  1538.   35548 params=4/2/2/125 float=y maxiter=512 inside=253 outside=summ
  1539.   invert=1/0/0
  1540.  colors=C0CdPR<33>ylqzmrzmq<52>K00F00A00<55>zcmzcmybl\
  1541. <67>A00K00<31>`KNaLO\
  1542.   bMPcNPcOQ
  1543.   }
  1544.  
  1545. Celtic_Julia {; Copyright (c) Paul W. Carlson, 1998
  1546.     ;****************************************************
  1547.     ; Always use floating point math and outside=summ.
  1548.     ;
  1549.     ; Parameters:
  1550.     ;   p1       = Julia set coordinates
  1551.     ;   real(p2) = a factor controlling the width of the stalks
  1552.     ;   imag(p2) = maximum iterations for stalks
  1553.     ;   real(p3) = number of color ranges
  1554.     ;   imag(p3) = number of colors in a color range
  1555.     ;****************************************************
  1556.     w = pixel
  1557.     c = p1
  1558.     z = 0
  1559.     bailout = 0
  1560.     iter = 0
  1561.     range_num = 0
  1562.     stalk_width = real(p2)
  1563.     max_iter = imag(p2)
  1564.     num_ranges = real(p3)
  1565.     colors_in_range = imag(p3)
  1566.     ratio = (colors_in_range - 1) / stalk_width:
  1567.     ;
  1568.     w = w * w, wr = real(w)
  1569.     w = w - wr + abs(wr) - c
  1570.     ;
  1571.     IF (abs(real(w)) <= abs(imag(w)))
  1572.         min_dist_to_axis = abs(real(w))
  1573.     ELSE
  1574.         min_dist_to_axis = abs(imag(w))
  1575.     ENDIF
  1576.     IF (min_dist_to_axis < stalk_width && iter > 1 && iter <= max_iter)
  1577.         z = ratio * min_dist_to_axis + range_num * colors_in_range + 1
  1578.         bailout = 1
  1579.     ENDIF
  1580.     range_num = range_num + 1
  1581.     IF (range_num == num_ranges)
  1582.         range_num = 0
  1583.     ENDIF
  1584.     iter = iter + 1
  1585.     z = z - iter
  1586.     bailout == 0  && |w| < 4
  1587. }
  1588.  
  1589.  
  1590.  
  1591.  
  1592.  
  1593.  
  1594.  
  1595.  
  1596.  
  1597.  
  1598.  
  1599. - -
  1600. - ------------------------------------------------------------
  1601. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1602. Post Message:   fractint@xmission.com
  1603. Get Commands:   majordomo@xmission.com "help"
  1604. Administrator:  twegner@phoenix.net
  1605. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1606.  
  1607. ------------------------------
  1608.  
  1609. End of fractint-digest V1 #142
  1610. ******************************
  1611.  
  1612.