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

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #125
  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 8 1998         Volume 01 : Number 125
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Sat, 7 Mar 1998 17:08:41 -0600 (CST)
  18. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  19. Subject: (fractint) 5th-order Newton Formula
  20.  
  21. Here's a formula for a 5th-order Newton Mset and three pars
  22. for which Sylvie Gallet kindly supplied the colormaps.
  23.  
  24. Paul Carlson
  25.  
  26. frm:Newt5_Atan_Mset {; Copyright (c) Paul W. Carlson, 1998
  27.     ; F(w)   = w^5 - w^4 - w * c^2 + c^2
  28.     ; F'(w)  = 5 * w^4 - 4 * w^3 - c^2
  29.     ; F''(w) = 20 * w^3 - 12 * w^2,  initialize w to 12/20 = 0.6
  30.     ;
  31.     c = pixel
  32.     c2 = c * c
  33.     z = iter = bailout = 0
  34.     colors_in_range = 50
  35.     colors_in_range_1 = 49
  36.     root1 = (1,0)
  37.     root2 = sqrt(c)
  38.     root3 = -root2
  39.     root4 = sqrt(-c)
  40.     root5 = -root4
  41.     prev_w = w = 0.6:
  42.     ;
  43.     w4 = w^4
  44.     w = w - (w * w4 - w4 - c2 * w + c2) / (5 * w4 - 4 * (w^3) - c2)
  45.     ;
  46.     delta_w = w - prev_w
  47.     IF (|delta_w| < p1)
  48.     angle = atan(imag(delta_w) / real(delta_w))
  49.     IF (delta_w >= 0)
  50.         IF (imag(delta_w) < 0)
  51.         angle = pi + angle
  52.         ELSE
  53.         angle = pi - angle
  54.         ENDIF
  55.     ELSEIF (imag(delta_w) > 0)
  56.         angle = -angle
  57.     ENDIF
  58.     IF     (|w - root1| < p1)
  59.         range_num = 0
  60.     ELSEIF (|w - root2| < p1)
  61.         range_num = 1
  62.     ELSEIF (|w - root3| < p1)
  63.         range_num = 2
  64.     ELSEIF (|w - root4| < p1)
  65.         range_num = 3
  66.     ELSEIF (|w - root5| < p1)
  67.         range_num = 4
  68.     ENDIF
  69.     bailout = 1
  70.     z = colors_in_range_1 * angle/pi + range_num * colors_in_range + 
  71. 1
  72.     ENDIF
  73.     prev_w = w
  74.     iter = iter + 1
  75.     z = z - iter
  76.     bailout == 0
  77. }
  78.  
  79. n5atnm01           {; Parameters, coordinates by Paul Carlson 
  80.                     ; Colormap by Sylvie Gallet
  81.   reset=1960 type=formula formulafile=n5atnm.frm
  82.   formulaname=Newt5_Atan_Mset passes=t
  83.   center-mag=+0.00000000000000000/+0.31491361205028330/3913676/1/180
  84.   params=0.01/0 float=y maxiter=2000 inside=253 outside=summ
  85.   colors=000A00<22>SD9TE9UFAUGAVHA<21>reMwww<48>555F00<15>YHB_JC_KC<3\
  86.   0>zt`rrr<48>AAAK00<48>wmU000<3>000 cyclerange=1/250
  87.   }
  88.  
  89. n5atnm05           {; Parameters, coordinates by Paul Carlson 
  90.                     ; Colormap by Sylvie Gallet
  91.   reset=1960 type=formula formulafile=n5atnm.frm
  92.   formulaname=Newt5_Atan_Mset passes=t
  93.   center-mag=-0.00000000000000000/+0.17156717356342680/60130.88/1/180
  94.   params=0.01/0 float=y maxiter=2000 inside=253 outside=summ
  95.   colors=000zzz<48>DDDzrZ<47>L71K50K62<22>VMSVNTWOVXPW<21>xuuzwwzt`<3\
  96.   0>_LEZJDYICYHCXGBWFA<12>K000AA<22>IQTJRULSV<23>rwz000<3>000
  97.   }
  98.  
  99. n5atnm06           {; Parameters, coordinates by Paul Carlson 
  100.                     ; Colormap by Sylvie Gallet
  101.   reset=1960 type=formula formulafile=n5atnm.frm
  102.   formulaname=Newt5_Atan_Mset passes=t
  103.   center-mag=-0.00000000000000004/+0.14499911078052670/1162187/1/180
  104.   params=0.01/0 float=y maxiter=2000 inside=253 outside=summ
  105.   colors=000A00<22>SD9TE9UFAUGAVHA<21>reMwww<48>555F00<15>YHB_JC_KC<3\
  106.   0>zt`rrr<48>AAAK00<48>wmU000<3>000 cyclerange=1/250
  107.   }
  108.  
  109.  
  110. - -
  111. - ------------------------------------------------------------
  112. Thanks for using Fractint, The Fractals and Fractint Discussion List
  113. Post Message:   fractint@xmission.com
  114. Get Commands:   majordomo@xmission.com "help"
  115. Administrator:  twegner@phoenix.net
  116. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  117.  
  118. ------------------------------
  119.  
  120. Date: Sat, 07 Mar 1998 20:05:18 -0800
  121. From: Peter Jakubowicz <pfjakub@earthlink.net>
  122. Subject: (fractint) Bugs
  123.  
  124. Hi
  125. Here are some bugs (but you really have to use yr imagination, and I don't
  126. know what happened to the amber. Thanks to Angela and Bud (I'm sorry I
  127. don't know yr surnames) and Jim Muth for colormaps; and Paul Carlson for
  128. the formula. 
  129.  
  130.  
  131.  
  132.  
  133. Bug_Angela         { ; Formula by Paul Carlson
  134.                      ; Colormap by Angela
  135.                      ; I drank coffee and watched it generate
  136.   reset=1960 type=formula formulafile=pcarlson.frm
  137.   formulaname=Newt5_Atan_Mset passes=t
  138.   center-mag=-0.36142477381055520/+0.63869095675923090/458325.6
  139.   params=0.01/0 float=y maxiter=1024 outside=summ
  140.   colors=000H20<13>rf8ui9wmA<6>KA3KA2F51A00<3>N00Q70<11>cUI<4>A00ujA<13>K4\
  141.   1A00<6>K00900<7>400400500<14>K00<3>`MBOAD<3>mcPtgM<6>U00<3>F00<7>zm0<2>f\
  142.   T0<17>RC0L60<4>G10F00F00F00K00<4>000<77>000F00<7>F00QB0<3>M70
  143.   cyclerange=1/250
  144.   }
  145.  
  146. Bug_Jim            { ; Formula by Paul Carlson
  147.                      ; Colormap by Jim Muth
  148.                      ; I drank coffee and watched it generate
  149.   reset=1960 type=formula formulafile=pcarlson.frm
  150.   formulaname=Newt5_Atan_Mset passes=t
  151.   center-mag=-0.0581296/-0.388103/17.24851/1/-90 params=0.02/0 float=y
  152.   maxiter=2048 outside=summ
  153.   colors=000vsO<7>vqOvb0<28>vb0vzf<14>vzfvzevzevzdvzc<11>vzSvuQ<2>vuKvuIvu\
  154.   FvuCvu9vu6vr3vq0<8>vp0vm0<2>vk0vj0vj0vj0<5>vh0vh0vg0vf0<4>v_0vZ0vZ0<16>v\
  155.   M0vM0vL0vL0tJ0<2>qE0oC0nB0lA0<9>9A0vQ0<2>vV0vX0vX0<31>vd0ve1ve1ve2ve2<46\
  156.   >vqNvqNvrOvsOvtO<7>vrOvrOvsOvsO cyclerange=1/250
  157.   }
  158.  
  159. Bug_Bud            { ; Formula by Paul Carlson
  160.                      ; Colormap by Bud
  161.                      ; I drank coffee and watched it generate
  162.   reset=1960 type=formula formulafile=pcarlson.frm
  163.   formulaname=Newt5_Atan_Mset passes=t
  164.   center-mag=-0.000252734/-0.143562/21.64871 params=0.01/0 float=y
  165.   maxiter=2048 outside=summ
  166.   colors=q000bo0am0_k<11>ATZASXBRWCQVDQU<6>JLMKKKLKK<29>xg1zh0yg0<29>MC0KA\
  167.   0LA0<13>_86a77b66<4>h22i11k00m00<5>x00o00<25>000<31>sss<30>222000012<30>\
  168.   0kz<4>0dqz00<3>s00 cyclerange=1/250
  169.   }
  170.  
  171. Newt5_Atan_Mset {; Copyright (c) Paul W. Carlson, 1998
  172.     ; F(w)   = w^5 - w^4 - w * c^2 + c^2
  173.     ; F'(w)  = 5 * w^4 - 4 * w^3 - c^2
  174.     ; F''(w) = 20 * w^3 - 12 * w^2,  initialize w to 12/20 = 0.6
  175.     ;
  176.     c = pixel
  177.     c2 = c * c
  178.     z = iter = bailout = 0
  179.     colors_in_range = 50
  180.     colors_in_range_1 = 49
  181.     root1 = (1,0)
  182.     root2 = sqrt(c)
  183.     root3 = -root2
  184.     root4 = sqrt(-c)
  185.     root5 = -root4
  186.     prev_w = w = 0.6:
  187.     ;
  188.     w4 = w^4
  189.     w = w - (w * w4 - w4 - c2 * w + c2) / (5 * w4 - 4 * (w^3) - c2)
  190.     ;
  191.     delta_w = w - prev_w
  192.     IF (|delta_w| < p1)
  193.     angle = atan(imag(delta_w) / real(delta_w))
  194.     IF (delta_w >= 0)
  195.         IF (imag(delta_w) < 0)
  196.         angle = pi + angle
  197.         ELSE
  198.         angle = pi - angle
  199.         ENDIF
  200.     ELSEIF (imag(delta_w) > 0)
  201.         angle = -angle
  202.     ENDIF
  203.     IF     (|w - root1| < p1)
  204.         range_num = 0
  205.     ELSEIF (|w - root2| < p1)
  206.         range_num = 1
  207.     ELSEIF (|w - root3| < p1)
  208.         range_num = 2
  209.     ELSEIF (|w - root4| < p1)
  210.         range_num = 3
  211.     ELSEIF (|w - root5| < p1)
  212.         range_num = 4
  213.     ENDIF
  214.     bailout = 1
  215.         z = colors_in_range_1 * angle/pi + range_num * colors_in_range + 1
  216.  
  217.     ENDIF
  218.     prev_w = w
  219.     iter = iter + 1
  220.     z = z - iter
  221.     bailout == 0
  222. }
  223.  
  224.  
  225.  
  226.  
  227. - -
  228. - ------------------------------------------------------------
  229. Thanks for using Fractint, The Fractals and Fractint Discussion List
  230. Post Message:   fractint@xmission.com
  231. Get Commands:   majordomo@xmission.com "help"
  232. Administrator:  twegner@phoenix.net
  233. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  234.  
  235. ------------------------------
  236.  
  237. Date: Sat, 07 Mar 1998 20:18:32 -0600
  238. From: Janet Preslar <preslar@memphisonline.com>
  239. Subject: (fractint) Need help!
  240.  
  241. Hey gurus, I need some help! I, once upon a time, created this PHC image:
  242.  
  243. http://www.ParkeNet.org/jp/fractals/jp97039.jpg
  244.  
  245. with the following formula and par. Now when I go to generate it, I only get the
  246. mandel curve part, not the lambdafn spiral. I need this to get this to work for
  247. a deadline that is almost past. Can anyone duplicate my problem and/or suggest a
  248. solution? (I need to generate at d&c high resolution image.)
  249.  
  250. Thanks for your help.
  251.  
  252. Janet
  253.  
  254.  
  255. frm:JPd {; PHC -- mandel, lambdafn
  256.   IF (whitesq)
  257.     z = c = pixel
  258.   ELSE
  259.     z = pixel + p1, c = p2
  260.   ENDIF
  261.     :
  262.   IF (whitesq)
  263.     z = z*z + c
  264.     PHC_bailout = |z| <= 4
  265.   ELSE
  266.     z = c * sin(z)
  267.     PHC_bailout = |z| <= 64
  268.   ENDIF
  269.     PHC_bailout
  270. }
  271.  
  272.  
  273.  
  274. jp97039.gif        { ; copyright 1997 -- Janet Preslar
  275.   reset=1960 type=formula formulaname=JPd
  276.   passes=1 center-mag=0.34375/-0.15625/6.4/1.3333 params=-0.33/0.17
  277.   float=y maxiter=1500
  278.   colors=000m_kXTh<12>234<4>HJP<8>cKco`o<5>000<8>XTM`WOdYI<4>wwc<8>H0K<4>P\
  279.   0J<10>fez<6>000<7>5PS<7>wfw<7>000<7>0OD<8>wwc<6>000<8>uSS<6>fez<7>000<7>\
  280.   5PS<8>wfz<6>000<7>0OD<5>wwcFTOHTN033<6>5PS<6>wfw<7>000<7>0OD<8>wwc<6>000\
  281.   <7>wQN<3>oYf
  282.   }
  283.  
  284.  
  285.  
  286.  
  287. - -
  288. - ------------------------------------------------------------
  289. Thanks for using Fractint, The Fractals and Fractint Discussion List
  290. Post Message:   fractint@xmission.com
  291. Get Commands:   majordomo@xmission.com "help"
  292. Administrator:  twegner@phoenix.net
  293. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  294.  
  295. ------------------------------
  296.  
  297. Date: Sun, 8 Mar 1998 01:01:13 -0500 (EST)
  298. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  299. Subject: (fractint) Viewwindows
  300.  
  301. Bug in Fractint 19.6: the "reset=" in a parfile doesn't seem to kill a
  302. viewwindow setting. If I go through a PAR and hit an image with odd
  303. viewwindows, they stay that way after that image, instead of being reset
  304. by the next par's"reset=" line.
  305.  
  306.  
  307. - --
  308.     .*.  Friendship, companionship, love, and having fun are the reasons for
  309.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  310.     `*'  Send any and all mail with attachments to the hotmail address please.
  311. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  312.  
  313. - -
  314. - ------------------------------------------------------------
  315. Thanks for using Fractint, The Fractals and Fractint Discussion List
  316. Post Message:   fractint@xmission.com
  317. Get Commands:   majordomo@xmission.com "help"
  318. Administrator:  twegner@phoenix.net
  319. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  320.  
  321. ------------------------------
  322.  
  323. Date: Sun, 8 Mar 1998 02:38:10 -0500 (EST)
  324. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  325. Subject: Re: (fractint) anybody try simplgif?
  326.  
  327. I have and I haven't managed to break it...yet <g>
  328.  
  329.  
  330. - --
  331.     .*.  Friendship, companionship, love, and having fun are the reasons for
  332.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  333.     `*'  Send any and all mail with attachments to the hotmail address please.
  334. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  335.  
  336. - -
  337. - ------------------------------------------------------------
  338. Thanks for using Fractint, The Fractals and Fractint Discussion List
  339. Post Message:   fractint@xmission.com
  340. Get Commands:   majordomo@xmission.com "help"
  341. Administrator:  twegner@phoenix.net
  342. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  343.  
  344. ------------------------------
  345.  
  346. Date: Sun, 8 Mar 1998 02:56:15 -0500 (EST)
  347. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  348. Subject: Re: (fractint) Exploring new fractals
  349.  
  350. >
  351. >I wrote:
  352. >>... before you give up on (a)
  353. >>Fractint sub-type, try a low bailout value.  
  354. >
  355. >Note: this is particularly important for functions that 
  356. >always return values with magnitudes below 1, such as 
  357. >sine and cosine.
  358.  
  359. Hrm?
  360. Really huge numbers pop up taking the cosine of a complex number with a big
  361. imaginary part. That magnitude under 1 appliesonly on the real line...
  362.  
  363. - --
  364.     .*.  Friendship, companionship, love, and having fun are the reasons for
  365.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  366.     `*'  Send any and all mail with attachments to the hotmail address please.
  367. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  368.  
  369. - -
  370. - ------------------------------------------------------------
  371. Thanks for using Fractint, The Fractals and Fractint Discussion List
  372. Post Message:   fractint@xmission.com
  373. Get Commands:   majordomo@xmission.com "help"
  374. Administrator:  twegner@phoenix.net
  375. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  376.  
  377. ------------------------------
  378.  
  379. Date: Sun, 08 Mar 1998 01:03:17 -0800
  380. From: Mark Christenson <mchris@hooked.net>
  381. Subject: Re: (fractint) Exploring new fractals
  382.  
  383. At 02:56 AM 3/8/98 -0500, Paul Derbyshire wrote:
  384. >Hrm?
  385. >Really huge numbers pop up taking the cosine of a complex number with a big
  386. >imaginary part. That magnitude under 1 appliesonly on the real line...
  387.  
  388. Hmm... this was something I wasn't aware of.  Guess I'll have to educate 
  389. myself about this.  In spite of having taken math through advanced calculus
  390. (and four years of physics), I don't think I ever applied trig functions to 
  391. complex numbers.  Or maybe I just forgot. 
  392.  
  393.  
  394. Bud
  395.  
  396.  
  397. - -
  398. - ------------------------------------------------------------
  399. Thanks for using Fractint, The Fractals and Fractint Discussion List
  400. Post Message:   fractint@xmission.com
  401. Get Commands:   majordomo@xmission.com "help"
  402. Administrator:  twegner@phoenix.net
  403. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  404.  
  405. ------------------------------
  406.  
  407. Date: Sun, 8 Mar 1998 01:32:55 -0800 (PST)
  408. From: "James R. McKenzie" <whookam88@yahoo.com>
  409. Subject: Re: (fractint) Viewwindows
  410.  
  411. - ---Paul Derbyshire <ao950@freenet.carleton.ca> wrote:
  412. >
  413. > Bug in Fractint 19.6: the "reset=" in a parfile doesn't seem to kill a
  414. > viewwindow setting. If I go through a PAR and hit an image with odd
  415. > viewwindows, they stay that way after that image, instead of being
  416. reset
  417. > by the next par's"reset=" line.
  418.  
  419.  
  420. I've had the same problem.  On those "square" fractals that don't take
  421. up the entire screen.  After running one if I want to run a saved
  422. image or another paramater I have to restart FRACTINT.  I have a, more
  423. or less, generic video card (made by Phoenix, it's a TRIO 32/64) with
  424. 2 meg O' ram and I run FRACTINT at 1024x768x256.  I've tried other
  425. resolutions and it made ono difference.  It's not a "MAJOR" problem
  426. but it can be annoying.  Is there a setting I can add to the
  427. "sstools.ini" file to fix this?
  428.  
  429. Please lemme know if you folx have any solution.
  430.  
  431.  
  432.                                L8R
  433.  
  434.  
  435.  
  436. BTW I've started usinmg my name now.  Don't all yawn at once.
  437.  
  438.  
  439.                        James R. McKenzie
  440. _________________________________________________________
  441. DO YOU YAHOO!?
  442. Get your free @yahoo.com address at http://mail.yahoo.com
  443.  
  444.  
  445. - -
  446. - ------------------------------------------------------------
  447. Thanks for using Fractint, The Fractals and Fractint Discussion List
  448. Post Message:   fractint@xmission.com
  449. Get Commands:   majordomo@xmission.com "help"
  450. Administrator:  twegner@phoenix.net
  451. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  452.  
  453. ------------------------------
  454.  
  455. Date: Sun, 8 Mar 1998 05:28:07 -0500 (EST)
  456. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  457. Subject: Re: (fractint) Exploring new fractals
  458.  
  459. >Hmm... this was something I wasn't aware of.  Guess I'll have to educate 
  460. >myself about this.  In spite of having taken math through advanced calculus
  461. >(and four years of physics), I don't think I ever applied trig functions to 
  462. >complex numbers.  Or maybe I just forgot. 
  463.  
  464. There are formulas for the sine and cosine of a complex number in terms of the
  465. sine and cosine and hyperbolic sine and cosine of the real and imaginary
  466. parts. The hyperbolic components can become unbounded for big imaginary
  467. parts of z.
  468.  
  469. You could also use the Maclaurin series for sine and cosine.
  470.  
  471. - --
  472.     .*.  Friendship, companionship, love, and having fun are the reasons for
  473.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  474.     `*'  Send any and all mail with attachments to the hotmail address please.
  475. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  476.  
  477. - -
  478. - ------------------------------------------------------------
  479. Thanks for using Fractint, The Fractals and Fractint Discussion List
  480. Post Message:   fractint@xmission.com
  481. Get Commands:   majordomo@xmission.com "help"
  482. Administrator:  twegner@phoenix.net
  483. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  484.  
  485. ------------------------------
  486.  
  487. Date: Sun, 8 Mar 1998 05:30:11 -0500 (EST)
  488. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  489. Subject: Re: (fractint) Viewwindows
  490.  
  491. >I've had the same problem.  On those "square" fractals that don't take
  492. >up the entire screen.  After running one if I want to run a saved
  493. >image or another paramater I have to restart FRACTINT.
  494.  
  495. Restart Fractint? I've never had to do that; manually turning view windows
  496. off has always sufficed. Are you using version 19.6 or an earlier version?
  497.  
  498.  
  499. - --
  500.     .*.  Friendship, companionship, love, and having fun are the reasons for
  501.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  502.     `*'  Send any and all mail with attachments to the hotmail address please.
  503. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  504.  
  505. - -
  506. - ------------------------------------------------------------
  507. Thanks for using Fractint, The Fractals and Fractint Discussion List
  508. Post Message:   fractint@xmission.com
  509. Get Commands:   majordomo@xmission.com "help"
  510. Administrator:  twegner@phoenix.net
  511. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  512.  
  513. ------------------------------
  514.  
  515. Date: Sun, 8 Mar 1998 07:38:48 -0500
  516. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  517. Subject: (fractint) Need help!
  518.  
  519. Hi Janet,
  520.  
  521. >> Can anyone duplicate my problem and/or suggest a solution? (I need to
  522. >> generate at d&c high resolution image.)
  523.  
  524.   Here is the solution:
  525.  
  526. jp97039            {
  527.   reset=3D1960 type=3Dformula formulafile=3Dpreslar.par formulaname=3Djpd=
  528.  
  529.   passes=3D1 center-mag=3D0.34375/-0.15625/6.4/1.3333
  530.   params=3D-0.33/0.17/1/0.4 float=3Dy maxiter=3D1500
  531.   colors=3D000m_kXTh<12>234<4>HJP<8>cKco`o<5>000<8>XTM`WOdYI<4>wwc<8>H0K<=
  532. 4>P\
  533.   0J<10>fez<6>000<7>5PS<7>wfw<7>000<7>0OD<8>wwc<6>000<8>uSS<6>fez<7>000<7=
  534. >\
  535.   5PS<8>wfz<6>000<7>0OD<5>wwcFTOHTN033<6>5PS<6>wfw<7>000<7>0OD<8>wwc<6>00=
  536. 0\
  537.   <7>wQN<3>oYf
  538.   }
  539.  
  540.   Cheers,
  541.  
  542.         - Sylvie
  543.  
  544. - -
  545. - ------------------------------------------------------------
  546. Thanks for using Fractint, The Fractals and Fractint Discussion List
  547. Post Message:   fractint@xmission.com
  548. Get Commands:   majordomo@xmission.com "help"
  549. Administrator:  twegner@phoenix.net
  550. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  551.  
  552. ------------------------------
  553.  
  554. Date: Sun, 8 Mar 1998 07:45:31 EST
  555. From: T R Moe <TRMoe@aol.com>
  556. Subject: Re: (fractint) Viewwindows
  557.  
  558. Hi Paul -in a message dated 3/8/98 you wrote
  559.  
  560. >Bug in Fractint 19.6: the "reset=" in a parfile doesn't seem to kill a
  561. >viewwindow setting. If I go through a PAR and hit an image with odd
  562. >viewwindows, they stay that way after that image, instead of being reset
  563. >by the next par's"reset=" line.
  564.  
  565. I believe this feature was deliberately designed to permit viewing of a series
  566. of fractals as thumbnails without having to redo the view setting for each
  567. one.  I find this very useful when looking for an image whose name I can't
  568. recall.  To reset the view to normal press <v> to enter the view menu then
  569. press <F4> to reset the defaults.  Hope this helps.  Tom
  570.  
  571. - -
  572. - ------------------------------------------------------------
  573. Thanks for using Fractint, The Fractals and Fractint Discussion List
  574. Post Message:   fractint@xmission.com
  575. Get Commands:   majordomo@xmission.com "help"
  576. Administrator:  twegner@phoenix.net
  577. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  578.  
  579. ------------------------------
  580.  
  581. Date: Sun, 8 Mar 1998 07:53:11 -0500 (EST)
  582. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  583. Subject: Re: (fractint) Viewwindows
  584.  
  585. Seems like there should be two different viewwindows then. A regular one
  586. that is reset and one that works for thumbnails, which might instead be
  587. invoked from the video modes, act like a video mode, and display say a
  588. 64x64 image at 1024x768...you choose the "real" video mode and the
  589. resolution like view window.
  590.  
  591.  
  592. - --
  593.     .*.  Friendship, companionship, love, and having fun are the reasons for
  594.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  595.     `*'  Send any and all mail with attachments to the hotmail address please.
  596. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  597.  
  598. - -
  599. - ------------------------------------------------------------
  600. Thanks for using Fractint, The Fractals and Fractint Discussion List
  601. Post Message:   fractint@xmission.com
  602. Get Commands:   majordomo@xmission.com "help"
  603. Administrator:  twegner@phoenix.net
  604. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  605.  
  606. ------------------------------
  607.  
  608. Date: Sun, 08 Mar 1998 07:10:42 -0600
  609. From: Janet Preslar <preslar@memphisonline.com>
  610. Subject: Re: (fractint) Need help!
  611.  
  612. Sylvie Gallet wrote:
  613.  
  614. > Hi Janet,
  615. >
  616. >   Here is the solution:
  617. >
  618.  
  619. Thanks Sylvie! I'm not sure how I lost those two parameters.
  620.  
  621. Janet
  622.  
  623.  
  624. - -
  625. - ------------------------------------------------------------
  626. Thanks for using Fractint, The Fractals and Fractint Discussion List
  627. Post Message:   fractint@xmission.com
  628. Get Commands:   majordomo@xmission.com "help"
  629. Administrator:  twegner@phoenix.net
  630. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  631.  
  632. ------------------------------
  633.  
  634. Date: Sun, 8 Mar 1998 08:56:07 -0800 (PST)
  635. From: "James R. McKenzie" <whookam88@yahoo.com>
  636. Subject: Re: (fractint) Viewwindows
  637.  
  638. - ---Paul Derbyshire <ao950@freenet.carleton.ca> wrote:
  639. >
  640. > >I've had the same problem.  On those "square" fractals that don't
  641. take
  642. > >up the entire screen.  After running one if I want to run a saved
  643. > >image or another paramater I have to restart FRACTINT.
  644. > Restart Fractint? I've never had to do that; manually turning view
  645. windows
  646. > off has always sufficed. Are you using version 19.6 or an earlier
  647. version?
  648.  
  649. Paul, 
  650.  
  651. I'm using FRACTINT 19.60.  By restart I meant hitting the <delete> not
  652. literally shutting down and re-launching.  If I don't the images all
  653. come up as squares versus full screen.  I've got over 50 meg of
  654. fractals on my D:\ drive (That's where FRACTINT is), only a small part
  655. are squares but they do look dang neat (IMHO they'd look better as
  656. full screen), still when I run 'em it would be nice to be able to go
  657. with anothe image without the re-start.
  658.  
  659.  
  660. Oh well, hope this was useful info.
  661.  
  662. James R. McKenzie
  663.  
  664. a.k.a.
  665.  
  666. FIRSTNAME LASTNAME
  667. _________________________________________________________
  668. DO YOU YAHOO!?
  669. Get your free @yahoo.com address at http://mail.yahoo.com
  670.  
  671.  
  672. - -
  673. - ------------------------------------------------------------
  674. Thanks for using Fractint, The Fractals and Fractint Discussion List
  675. Post Message:   fractint@xmission.com
  676. Get Commands:   majordomo@xmission.com "help"
  677. Administrator:  twegner@phoenix.net
  678. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  679.  
  680. ------------------------------
  681.  
  682. Date: Sun, 8 Mar 1998 11:59:50 -0500 (EST)
  683. From: aq936@freenet.carleton.ca (Michael Traynor)
  684. Subject: Re: (fractint) Viewwindows
  685.  
  686. >>Bug in Fractint 19.6: the "reset=" in a parfile doesn't seem to kill a
  687. >>viewwindow setting. If I go through a PAR and hit an image with odd
  688. >>viewwindows, they stay that way after that image, instead of being reset
  689. >>by the next par's"reset=" line.
  690.  
  691. While it does not directly address this (though it might if it was placed
  692. in the pars), you can use fractint's fastrestore option, as described in
  693. the list of new stuff for 19.6:
  694.  
  695. "Added command line option fastrestore=yes|no. Default is NO. When YES,
  696.     causes viewwindows to be set to NO before each restore, so that
  697.     otherwise normal gifs will not be drawn at the reduced aspect when
  698.     viewwindows was previously set to YES; and bypasses the warning which
  699.     is displayed when a restore is to be viewed in a video mode other than
  700.     the one at which the gif was saved. Combined with askvideo=no, all
  701.     restores will automatically be made at the user's default video mode.
  702.     This feature will be helpful when cycling through a group of gifs in
  703.     autokey mode."
  704.  
  705. You could put this in sstools.ini.
  706.  
  707. - --
  708. Mike Traynor
  709.  
  710. People who like this sort of thing will find this the sort of thing they like.
  711.     Abraham Lincoln
  712.  
  713. - -
  714. - ------------------------------------------------------------
  715. Thanks for using Fractint, The Fractals and Fractint Discussion List
  716. Post Message:   fractint@xmission.com
  717. Get Commands:   majordomo@xmission.com "help"
  718. Administrator:  twegner@phoenix.net
  719. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  720.  
  721. ------------------------------
  722.  
  723. Date: Sun, 08 Mar 1998 09:19:51 -0800
  724. From: Wizzle <wizzle@cci-internet.com>
  725. Subject: Re: (fractint) Viewwindows
  726.  
  727. Jim
  728.  
  729. The F4 trick works for me to......my steps are
  730.  
  731. 1.  hit v to bring up the view screen
  732. 2. hit F4 to reset to the defaults
  733. 3.  hit enter and the screen starts to re-draw the image to whatever I have
  734. in my sstools.ini file
  735.  
  736. Angela
  737.  
  738. >
  739. >
  740. >
  741. >---Paul Derbyshire <ao950@freenet.carleton.ca> wrote:
  742. >>
  743. >> >I've had the same problem.  On those "square" fractals that don't
  744. >take
  745. >> >up the entire screen.  After running one if I want to run a saved
  746. >> >image or another paramater I have to restart FRACTINT.
  747. >> 
  748. >> Restart Fractint? I've never had to do that; manually turning view
  749. >windows
  750. >> off has always sufficed. Are you using version 19.6 or an earlier
  751. >version?
  752. >> 
  753. >
  754. >Paul, 
  755. >
  756. >I'm using FRACTINT 19.60.  By restart I meant hitting the <delete> not
  757. >literally shutting down and re-launching.  If I don't the images all
  758. >come up as squares versus full screen.  I've got over 50 meg of
  759. >fractals on my D:\ drive (That's where FRACTINT is), only a small part
  760. >are squares but they do look dang neat (IMHO they'd look better as
  761. >full screen), still when I run 'em it would be nice to be able to go
  762. >with anothe image without the re-start.
  763. >
  764. >
  765. >Oh well, hope this was useful info.
  766. >
  767. >James R. McKenzie
  768. >
  769. >a.k.a.
  770. >
  771. >FIRSTNAME LASTNAME
  772.  
  773.  
  774. - -
  775. - ------------------------------------------------------------
  776. Thanks for using Fractint, The Fractals and Fractint Discussion List
  777. Post Message:   fractint@xmission.com
  778. Get Commands:   majordomo@xmission.com "help"
  779. Administrator:  twegner@phoenix.net
  780. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  781.  
  782. ------------------------------
  783.  
  784. Date: Sun, 08 Mar 1998 09:39:39 -0800
  785. From: Wizzle <wizzle@cci-internet.com>
  786. Subject: Re: (fractint) anybody try simplgif?
  787.  
  788. I downloaded simplegif.zip and would like to try it but am....as
  789. usual....clueless.  Is there documentation about what simplegif is and how
  790. to use it somewhere? Basic questions:
  791.  
  792. 1. what is simplegif's purpose?
  793. 2. what are the steps for use?
  794. 3. any warnings?
  795.  
  796. Angela
  797.  
  798. At 09:37 PM 3/4/98 -0600, you wrote:
  799. >A while ago I mentioned that a new version of simplgif is available 
  800. >at:
  801. >
  802. >ftp://ftp.phoenix.net/pub/USERS/twegner/simplgif.zip
  803. >
  804. >This utility combines the images in multiple-image GIFs created with 
  805. >Fractint's "divide-and-conquer" mode.
  806. >
  807. >Just curious, is it bug free or have folks just not gotten around to 
  808. >trying it? I'll tell you a secret if you promise not to tell. If 
  809. >you add the -i option to the simplgif command line before the 
  810. >filename arguments, it will produce an interlaced file. But no, 
  811. >Fractint doesn't read interlaced files correctly yet <g!>
  812. >
  813. >Tim
  814.  
  815.  
  816. - -
  817. - ------------------------------------------------------------
  818. Thanks for using Fractint, The Fractals and Fractint Discussion List
  819. Post Message:   fractint@xmission.com
  820. Get Commands:   majordomo@xmission.com "help"
  821. Administrator:  twegner@phoenix.net
  822. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  823.  
  824. ------------------------------
  825.  
  826. Date: Sun, 08 Mar 1998 12:37:42 -0800
  827. From: Peter Jakubowicz <pfjakub@earthlink.net>
  828. Subject: (fractint) Par
  829.  
  830. Opus #1            { ; Carmen Miranda Series
  831.   reset=1960 type=formula formulafile=*.frm
  832.   formulaname=3D_Balls_Mset passes=t
  833.   center-mag=+0.36199809314334530/-0.07692876126871936/1.263339e+010
  834.   params=0.01/1/16/8 float=y maxiter=8192 outside=summ periodicity=0
  835.   colors=zzziHe<26>t3Ou2Nu3N<45>yr4ys3xs3<44>Xz0Wz0Wz0Wz0<60>IJ0II0II0II0<\
  836.   30>PIRWXz<9>_Su_St_Rs_Rr`Qq<18>hHe
  837.   }
  838.  
  839. frm:3D_Balls_Mset (ORIGIN) {; Copyright (c) Paul W. Carlson, 1997
  840.     ;****************************************************
  841.     ; Always use floating point math and outside=summ.
  842.     ;
  843.     ; Parameters:
  844.     ;   real(p1) = a factor controlling the size of the balls
  845.     ;   imag(p1) = number of iterations to skip
  846.     ;   real(p2) = number of color ranges
  847.     ;   imag(p2) = number of colors in each color range
  848.     ;
  849.     ; Note that the equation variable is w, not z.  Always
  850.     ; initialize z to zero.
  851.     ;****************************************************
  852.     w = 0
  853.     c = pixel
  854.     z = 0
  855.     bailout = 0
  856.     iter = 0
  857.     range_num = 0
  858.     skip = imag(p1)
  859.     ;****************************************************
  860.     ; In the accompanying par file, mndballs.par,
  861.     ; we have 8 color ranges with 30 colors in each range
  862.     ; for a total of 240 colors. The first range starts at
  863.     ; color 1.  Pixels will use color 0 when |w| >= 1000.
  864.     ; Other values can be used here as long as the product
  865.     ; of num_ranges times colors_in_range is less than 255.
  866.     ; Color 0 is reserved for the background color and color
  867.     ; 255 can be used for the inside color.
  868.     ;****************************************************
  869.     num_ranges = real(p2)
  870.     colors_in_range = imag(p2)
  871.     ;****************************************************
  872.     ; Real(p1) controls the size of the balls.
  873.     ; These values will usually be in the range 0.001 to 0.1
  874.     ;****************************************************
  875.     ball_size = real(p1)
  876.     index_factor = (colors_in_range - 1) / ball_size:
  877.     ;****************************************************
  878.     ; The equation being iterated.  Almost any equation
  879.     ; that can be express in terms of a complex variable
  880.     ; and a complex constant will work with this method.
  881.     ; This example uses the standard Mandelbrot set equation.
  882.     ;****************************************************
  883.     w = w * w + c
  884.     ;****************************************************
  885.     ; If the orbit point is within the specified distance of a circle,
  886.     ; set z to the index into the colormap and set the bailout flag.
  887.     ;****************************************************
  888.     IF (iter > skip)
  889.     wr = real(w), wi = imag(w)
  890.     d = wr * wr + (wi - .5) * (wi - .5)
  891.     IF (d < ball_size)
  892.         bailout = 1
  893.         delta = ball_size - d
  894.     ELSEIF ((d = wr * wr + (wi + .5) * (wi + .5)) < ball_size)
  895.         bailout = 1
  896.         delta = ball_size - d
  897.     ELSEIF ((d = (wr - .5) * (wr - .5) + wi * wi) < ball_size)
  898.         bailout = 1
  899.         delta = ball_size - d
  900.     ELSEIF ((d = (wr + .5) * (wr + .5) + wi * wi) < ball_size)
  901.         bailout = 1
  902.         delta = ball_size - d
  903.     ENDIF
  904.     ENDIF
  905.     IF (bailout)
  906.     z = index_factor * delta + range_num * colors_in_range + 1
  907.     ENDIF
  908.     ;****************************************************
  909.     ; Cycle through the range numbers (0 thru num_ranges - 1)
  910.     ; With two color ranges, even iterations use color
  911.     ; range 0, odd iterations use color range 1.
  912.     ;****************************************************
  913.     range_num = range_num + 1
  914.     IF (range_num == num_ranges)
  915.         range_num = 0
  916.     ENDIF
  917.     ;****************************************************
  918.     ; Since we are using outside=summ, we have to subtract
  919.     ; the number of iterations from z.
  920.     ;****************************************************
  921.     iter = iter + 1
  922.     z = z - iter
  923.     ;****************************************************
  924.     ; Finally, we test for bailout
  925.     ;****************************************************
  926.     bailout == 0  && |w| < 1000
  927. }
  928.  
  929.  
  930.  
  931.  
  932. - -
  933. - ------------------------------------------------------------
  934. Thanks for using Fractint, The Fractals and Fractint Discussion List
  935. Post Message:   fractint@xmission.com
  936. Get Commands:   majordomo@xmission.com "help"
  937. Administrator:  twegner@phoenix.net
  938. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  939.  
  940. ------------------------------
  941.  
  942. Date: Sun, 8 Mar 1998 12:35:58 -0500
  943. From: "Peter Gavin" <pgavin@mindspring.com>
  944. Subject: Re: (fractint) anybody try simplgif?
  945.  
  946. I've been trying to solve my disk-video-doesn't-work-in-batch-mode problem,
  947. and I was just wondering if there was any way to override the default vid
  948. mode for a restored image using view windows, or something.  The problem is,
  949. I have a bunch of images I started in 1024x768 mode, and I want to resume
  950. them in diskvideo mode so I can run them in the backround in win95.  I have
  951. a batch file to do this, and which uses a dos for command to run through all
  952. the images in the directory and finish them.  But fractint always uses the
  953. graphics mode, not disk-video.  (I know I already asked this once, but I
  954. thought maybe someone might have thought of something since.)
  955.  
  956. Pete
  957.  
  958.  
  959. - -----Original Message-----
  960. From: Wizzle <wizzle@cci-internet.com>
  961. To: fractint@lists.xmission.com <fractint@lists.xmission.com>
  962. Date: Sunday, March 08, 1998 12:27 PM
  963. Subject: Re: (fractint) anybody try simplgif?
  964.  
  965.  
  966. >I downloaded simplegif.zip and would like to try it but am....as
  967. >usual....clueless.  Is there documentation about what simplegif is and how
  968. >to use it somewhere? Basic questions:
  969. >
  970. >1. what is simplegif's purpose?
  971. >2. what are the steps for use?
  972. >3. any warnings?
  973. >
  974. >Angela
  975. >
  976. >At 09:37 PM 3/4/98 -0600, you wrote:
  977. >>A while ago I mentioned that a new version of simplgif is available
  978. >>at:
  979. >>
  980. >>ftp://ftp.phoenix.net/pub/USERS/twegner/simplgif.zip
  981. >>
  982. >>This utility combines the images in multiple-image GIFs created with
  983. >>Fractint's "divide-and-conquer" mode.
  984. >>
  985. >>Just curious, is it bug free or have folks just not gotten around to
  986. >>trying it? I'll tell you a secret if you promise not to tell. If
  987. >>you add the -i option to the simplgif command line before the
  988. >>filename arguments, it will produce an interlaced file. But no,
  989. >>Fractint doesn't read interlaced files correctly yet <g!>
  990. >>
  991. >>Tim
  992. >
  993. >
  994. >-
  995. >------------------------------------------------------------
  996. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  997. >Post Message:   fractint@xmission.com
  998. >Get Commands:   majordomo@xmission.com "help"
  999. >Administrator:  twegner@phoenix.net
  1000. >Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1001.  
  1002.  
  1003. - -
  1004. - ------------------------------------------------------------
  1005. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1006. Post Message:   fractint@xmission.com
  1007. Get Commands:   majordomo@xmission.com "help"
  1008. Administrator:  twegner@phoenix.net
  1009. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1010.  
  1011. ------------------------------
  1012.  
  1013. Date: Sun, 8 Mar 1998 12:43:30 -0500
  1014. From: "Peter Gavin" <pgavin@mindspring.com>
  1015. Subject: (fractint) disk-video prob's
  1016.  
  1017. Excuse the first message's subject... :)  This is the real one...
  1018.  
  1019. Pete
  1020.  
  1021.  
  1022. - -
  1023. - ------------------------------------------------------------
  1024. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1025. Post Message:   fractint@xmission.com
  1026. Get Commands:   majordomo@xmission.com "help"
  1027. Administrator:  twegner@phoenix.net
  1028. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1029.  
  1030. ------------------------------
  1031.  
  1032. Date: Sun, 08 Mar 1998 09:45:14 -0800
  1033. From: Mark Christenson <mchris@hooked.net>
  1034. Subject: Re: (fractint) Viewwindows
  1035.  
  1036. At 11:59 AM 3/8/98 -0500, Michael Traynor wrote:
  1037. >While it does not directly address this (though it might if it was placed
  1038. >in the pars), you can use fractint's fastrestore option, as described in
  1039. >the list of new stuff for 19.6:
  1040. >
  1041. >"Added command line option 
  1042. >  fastrestore=yes...
  1043. >  askvideo=no...
  1044.  
  1045. Thanks, Michael, it worked for me.  Oddly, though, askvideo behaves
  1046. differently in 19.3 and 19.6.  In 19.3, it does what one would like,
  1047. resets the viewwindow without complications, but in 19.6 an image 
  1048. restored from gif is displayed in the current video mode (as opposed
  1049. to the mode it was saved in).  How Fractint performs this feat of magic
  1050. without regenerating the image I haven't a clue, but I'd rather it didn't.
  1051.  
  1052. For those having trouble with losing slices of images when returning
  1053. from option screens or editing the palette, textsafe=no should do the
  1054. trick.
  1055.  
  1056.  
  1057. Bud
  1058.  
  1059.  
  1060. - -
  1061. - ------------------------------------------------------------
  1062. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1063. Post Message:   fractint@xmission.com
  1064. Get Commands:   majordomo@xmission.com "help"
  1065. Administrator:  twegner@phoenix.net
  1066. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1067.  
  1068. ------------------------------
  1069.  
  1070. Date: Sun, 08 Mar 1998 12:20:09 -0600
  1071. From: Bob Margolis <rttyman@wwa.com>
  1072. Subject: Re: (fractint) anybody try simplgif?
  1073.  
  1074. Hi Angela & Team Fractals:
  1075.  
  1076. Wizzle wrote:
  1077. > I downloaded simplegif.zip and would like to try it but am....as
  1078. > usual....clueless.  Is there documentation about what simplegif is and how
  1079. > to use it somewhere? Basic questions:
  1080. > 1. what is simplegif's purpose?
  1081. > 2. what are the steps for use?
  1082. > 3. any warnings?
  1083.  
  1084. According to Fractal Creations (2nd Ed.) by the honorable Tim Wegner and
  1085. his trust companion, Bert Tyler, "SIMPLGIF...reads your multi-image GIF
  1086. file and uses it to generate a simple, single-image GIF called
  1087. SIMPLGIF.GIF...Be aware that this process can be used to generate *huge*
  1088. images, and huge images come with corresponding appetites for disk
  1089. space...Note that this program needs to create a temporary uncompressed
  1090. version of your final image as an intermediate step. In this case, you
  1091. really do need 4GB of free disk space for a 64K x 64K image--in addition
  1092. to the space taken up by FRACTMIG.GIF and SIMPLGIF.GIF. As a practical
  1093. matter, most users of the "divide and conquer" feature should limit
  1094. images to a "modest" 4K x 4K or 8K x 8K resolution (which are actually
  1095. pretty high resolutions!).
  1096.  
  1097. Bob Margolis
  1098.  
  1099. - -
  1100. - ------------------------------------------------------------
  1101. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1102. Post Message:   fractint@xmission.com
  1103. Get Commands:   majordomo@xmission.com "help"
  1104. Administrator:  twegner@phoenix.net
  1105. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1106.  
  1107. ------------------------------
  1108.  
  1109. Date: 08 Mar 1998 19:24:03 +0100
  1110. From: Brederlow <goswin.brederlow@student.uni-tuebingen.de>
  1111. Subject: Re: (fractint) Aproximating the M-Set with geometrical shapes
  1112.  
  1113. Jay Hill <jrhill@nosc.mil> writes:
  1114.  
  1115. > Rich Thomson wrote:
  1116. > >In article <882565B1.00784637.00@NOTESGW.NOSC.MIL> ,
  1117. >     "Jay Hill"<jrhill@nosc.mil>  writes:
  1118. > >> and approximate formula for the rest.  Is this what you are trying to
  1119. > make?
  1120. > >>
  1121. > >> http://www.geocities.com/CapeCanaveral/Lab/3825/Hulahoop.gif
  1122. > >Interesting image Jay; what's its origin?
  1123. > >                                               Rich Thomson
  1124. > >                                               rthomson@ptc.com
  1125. > It is a by-product of the 1993 evaluate the area of the Mandelbrot craze.
  1126. > I can display points on boundaries of all (but one*) midgets up to
  1127. > period 16 and buds on each to much higher period. The accuracy is
  1128. > better than 12 digits, usually more like 16. We are talking about 430809
  1129. > components and some days of computing.  >:-(   Limits are basically
  1130. > the 80 bit floats on the Intel chips.  The particular image ( Hulahoop.gif)
  1131. > does not display all of these.
  1132.  
  1133. Could you post a list of the controllpoints for the boundaries?
  1134. Best make it a private mail or http/ftp-able, cause its probably
  1135. large.
  1136.  
  1137. May the Source be with you.
  1138.             Mrvn
  1139.  
  1140.  
  1141. - -
  1142. - ------------------------------------------------------------
  1143. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1144. Post Message:   fractint@xmission.com
  1145. Get Commands:   majordomo@xmission.com "help"
  1146. Administrator:  twegner@phoenix.net
  1147. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1148.  
  1149. ------------------------------
  1150.  
  1151. Date: Sun, 08 Mar 1998 12:25:19 -0600
  1152. From: Bob Margolis <rttyman@wwa.com>
  1153. Subject: Re: (fractint) Par
  1154.  
  1155. Peter Jakubowicz wrote:
  1156. > Opus #1            { ; Carmen Miranda Series
  1157.  
  1158. Not to be confused with the Opus Series of fractal images that I've been
  1159. designing for the past three years, currently part of the Fractal
  1160. Excursions show. 8-)
  1161.  
  1162. Bob Margolis
  1163.  
  1164. - -
  1165. - ------------------------------------------------------------
  1166. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1167. Post Message:   fractint@xmission.com
  1168. Get Commands:   majordomo@xmission.com "help"
  1169. Administrator:  twegner@phoenix.net
  1170. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1171.  
  1172. ------------------------------
  1173.  
  1174. End of fractint-digest V1 #125
  1175. ******************************
  1176.  
  1177.