home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / fractint / archive / v01.n361 < prev    next >
Internet Message Format  |  1999-02-11  |  42KB

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #361
  4. Reply-To: fractint-digest
  5. Sender: owner-fractint-digest@lists.xmission.com
  6. Errors-To: owner-fractint-digest@lists.xmission.com
  7. Precedence: bulk
  8.  
  9.  
  10. fractint-digest       Friday, February 12 1999       Volume 01 : Number 361
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Tue, 9 Feb 1999 13:53:38 -0500
  18. From: "AA" <aa@panix.com>
  19. Subject: RE: (fractint) Binary code fractals
  20.  
  21. > -----Original Message-----
  22. > From: owner-fractint@lists.xmission.com
  23. > [mailto:owner-fractint@lists.xmission.com]On Behalf Of Morgan L. Owens
  24. > Sent: Friday, February 05, 1999 7:04 PM
  25. > To: fractint@lists.xmission.com
  26. > Subject: (fractint) Binary code fractals
  27. >
  28. >
  29. > At 01:38 05/02/99 EST, PKyleCA wrote:
  30. > >In a message dated 2/4/99 10:31:12 PM Pacific Standard Time,
  31. > pderbysh@usa.net
  32. > >writes:
  33. > >
  34. > >
  35. > > >01000110011101010110001101101011  >>
  36. > >
  37. > >perhaps binary code was our first hint of achieving fractals
  38. > with computers-
  39. > >exhibiting the properties of self-similarity (when various string lengths
  40. > were observed)... <G>
  41. > >
  42. > The Morse-Thue sequence could well be looked at as a fractal bit sequence
  43. > (in the same way that Pascal's triangle mod 2 can be seen as corresponding
  44. > to Sierpinski's Gasket). It is certainly self-similar: for a start, just
  45. > taking every _second_ bit in the sequence yields the original sequence.
  46. >
  47. > There are at least three ways of generating it (these come from the
  48. > ever-enthralling Clifford Pickover's book "Mazes for the Mind")
  49. >
  50. > The first can be implemented as a L-system. Starting with a 0, we take the
  51. > sequence we have up to now (to start with, "0") and replace each 0 with 01
  52. > and each 1 with 10.
  53. >
  54. > For the second method we again start with 0. For each step, take the
  55. > sequence we have up to now, copy it with all its bits flipped (writing "1"
  56. > for "0" and vice versa), and append it to the original.
  57. >
  58. > The third is probably one of the easier methods for generating really long
  59. > portions of the sequence, since it doesn't need to remember what has
  60. > already been generated.
  61. > Write down the binary expansions of the natural numbers 0, 1, 2, 3, ...
  62. > Now for each number write down a 0 if there is an even number of "1"s in
  63. > the binary expansion, and a 1 if there is an odd number.
  64. >
  65. > It's an eerie sequence to listen to (high note for 0, low note for 1,
  66. > perhaps) and strangely difficult to type...
  67. >
  68. 0110100110010110100101100110100110010110011010010110100110010110100101100110
  69. >
  70. 1001011010011001011001101001100101101001011001101001100101100110100101101001
  71. >
  72. 1001011001101001100101101001011001101001011010011001011010010110011010011001
  73. > 0110011010010110100110010110...
  74. >
  75. >
  76. >
  77. > --------------------------------------------------------------
  78. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  79. > Post Message:   fractint@lists.xmission.com
  80. > Get Commands:   majordomo@lists.xmission.com "help"
  81. > Administrator:  twegner@phoenix.net
  82. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  83. >
  84.  
  85. The Morse-Thue sequence is the parity of the sum of the digits of the binary
  86. representation of the numbers 0, 1, 2, ...
  87.  
  88. If we substitute 1 for the 0's and -1 for the 1's in M-T then we get the
  89. sequence 1 -1 -1 1 -1 1 1 -1 -1 1 1 -1 1 -1 -1 1 ...
  90. which are the coefficients of the infinite series generated by
  91. (1-x)*(1-x^2)*(1-x^4)*(1-x^8)...
  92.  
  93. Years ago, I created the notation
  94. 2-Prod f(x) = f(x)*f(x^2)*f(x^4)...
  95. or more generally
  96. n-Prod f(x,y) = f(x,y)*f(x^n,y^n)*f(x^(n^2),y^(n^2))*f(x^(n^3),y^(n^3))...
  97.  
  98. It turns out that this is the generating function for the Integer-Lattice
  99. Scaling Fractal (ILSF)generated by the set of points corresponding to
  100. f(x,y).
  101.  
  102. Thus, 2-Prod (1-x) generates the revised M-T and 2-Prod (1+x+y) generates
  103. a serpinski triangle as does 2-Prod (1+xy+x^2).
  104.  
  105. I have written some code for generating these types of ILSF's and its
  106. principles could be included in fractint, but...
  107. it emphasizes number-theoretic and combinatorial qualities rather than
  108. the analytic qualities of most fractint fractals.
  109.  
  110. One of my entries in the last contest was generated by this code.
  111.  
  112.  
  113. - --------------------------------------------------------------
  114. Thanks for using Fractint, The Fractals and Fractint Discussion List
  115. Post Message:   fractint@lists.xmission.com
  116. Get Commands:   majordomo@lists.xmission.com "help"
  117. Administrator:  twegner@phoenix.net
  118. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  119.  
  120. ------------------------------
  121.  
  122. Date: Wed, 10 Feb 1999 13:21:40 +1100
  123. From: "narada" <narada@hermes.net.au>
  124. Subject: (fractint) Resend of above in plain text
  125.  
  126. This is a multi-part message in MIME format.
  127.  
  128. - ------=_NextPart_000_0052_01BE54F8.4B577D00
  129. Content-Type: text/plain;
  130.     charset="iso-8859-1"
  131. Content-Transfer-Encoding: quoted-printable
  132.  
  133. Hi.
  134. Im new to the list (and have just had it pointed out that my browser was =
  135. sending HTML format, so this is a repeat of the above PARs, thanks).   =
  136. Hope you like these...
  137. =20
  138. =20
  139. Franjipani       { ; Dan Vantari
  140.                      ; Based on a Bill Rossi par of a William Decker frm
  141.                      ; Narada's colour map
  142.   reset=3D1960 type=3Dformula formulafile=3Dweb.par =
  143. formulaname=3Dbillsfv4
  144.   function=3Dcotan/sqrt/exp
  145.   center-mag=3D0.0206845/-0.00708526/0.9902116/1.2096 params=3D5/0 =
  146. float=3Dy
  147.   potential=3D256/200/0
  148.   =
  149. colors=3D000zum<23>zd2zc0zd0<14>zz0<15>z00<14>ZZZccc<7>zzz<6>00z<15>zz0<1=
  150. 5\
  151.   =
  152. >z00<15>00z<15>0z0<15>z0z<14>N0NK0KJ1L<13>2Sk0Um0Vm<13>0km0mm0mm<14>0cz<\=
  153.  
  154.   15>zzz<5>zvo
  155.   }
  156. =20
  157.  
  158. IceCrystals       { ; Dan Vantari
  159.                      ; Based on a Bill Rossi par of a William Decker frm
  160.                    =20
  161.   reset=3D1960 type=3Dformula formulafile=3Dvar.par =
  162. formulaname=3Dbillsfv4
  163.   function=3Dsqrt/cos/exp
  164.   center-mag=3D0.0206845/-0.00708526/1.27913/1.2096 params=3D6/0 =
  165. float=3Dy
  166.   potential=3D256/200/0
  167.   =
  168. colors=3D222ISaIUeIWiMYiMWeQYeQ_iUaiU_eUYaQWaQUYUWYUUUQSUQQQUSQUQMUOIQMIQ=
  169. O\
  170.   =
  171. MMMMMKIIIIIKMIMQMOQMQUIOUEMUEKQAIQAKU6IU2GU2EQ6GQ6EM2CM2AI6CIAEIAGMEIM<2\=
  172.  
  173.   =
  174. >ECAAAAACE6AE28E26A68A666246642A62A86EA6E82IA2MC2ME6IC6IEAIGEMIEMGAQIAQK\=
  175.  
  176.   =
  177. EUMEUKAUI6QG6QE2<2>aK2aM6YK6YMAYOEaQEaOAeQAeSEiUEiSAiQ6eO6eM2iO2mQ2mS6qU\=
  178.  
  179.   =
  180. 6qS2uU2yW2yY6uW6uYAy_AyaEu_EqYEqWAmUA<2>m_MqaMq_IuaIycIyeMucMueQygQyiUug\=
  181.  
  182.   =
  183. UqeUqcQmaQmcUiaUe_UeYQi_QiYMiWIeUIeWMaUMaSIYQIYSMYUQaWQaYUYWUYYYa_YaaaY_\=
  184.  
  185.   =
  186. aYaeYciaeiaceeeeegiiiiigeieaecaeaYicYmeYmgaqiaqgYuiYykYymaukaumeyoeyqiuo\=
  187.  
  188.   =
  189. iqmiqkemie<2>moqqqqqomuqmysmyuqusquuuywuyyyuwyquyqsumqumsyiqyeoyemuiouim\=
  190.  
  191.   =
  192. qikmeimekqaiqagmYemYgqYiuakuamy<2>QgyQeuUguUeqUcmQamQcqMaqM_mIYmI_qIauMc\=
  193.  
  194.   =
  195. uMeyIcyEayE_uAYuA_y6Yy2Wy2Uu6Wu6Uq2Sq2Qm6SmAUmAWqEYq<2>ESeAQeASi6Qi2Oi2M\=
  196.  
  197.   e6Oe6Ma2Ka2IY6KYAMYAOaEQaEOYIQYMSYMUa
  198.   }
  199. =20
  200. frm:billsfv4  {
  201.   temp =3D pixel :
  202.   z =3D fn1(temp^p1)
  203.   IF (5 < z)
  204.     temp =3D fn2(temp)
  205.   ELSE
  206.     temp =3D fn3(z)
  207.   ENDIF
  208.   z < 100
  209.   }
  210.  
  211.  
  212. - ------=_NextPart_000_0052_01BE54F8.4B577D00
  213. Content-Type: text/html;
  214.     charset="iso-8859-1"
  215. Content-Transfer-Encoding: quoted-printable
  216.  
  217. <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
  218. <HTML>
  219. <HEAD>
  220.  
  221. <META content=3Dtext/html;charset=3Diso-8859-1 =
  222. http-equiv=3DContent-Type>
  223. <META content=3D'"MSHTML 4.72.2106.6"' name=3DGENERATOR>
  224. </HEAD>
  225. <BODY bgColor=3D#ffffff>
  226. <DIV>
  227. <DIV><FONT color=3D#000000 size=3D2>Hi.</FONT></DIV>
  228. <DIV><FONT color=3D#000000 size=3D2></FONT><FONT size=3D2>Im new to the =
  229. list (and have=20
  230. just had it pointed out that my browser was sending HTML format, so this =
  231. is a=20
  232. repeat of the above PARs, thanks).   Hope you like=20
  233. these...</FONT></DIV>
  234. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  235. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  236. <DIV><FONT color=3D#000000 =
  237. size=3D2>Franjipani       {=20
  238. ; Dan=20
  239. Vantari<BR>          &n=
  240. bsp;         =20
  241. ; Based on a Bill Rossi par of a William Decker=20
  242. frm<BR>           =
  243.          =20
  244. ; Narada's colour map<BR>  reset=3D1960 type=3Dformula =
  245. formulafile=3Dweb.par=20
  246. formulaname=3Dbillsfv4<BR>  function=3Dcotan/sqrt/exp<BR> =20
  247. center-mag=3D0.0206845/-0.00708526/0.9902116/1.2096 params=3D5/0 =
  248. float=3Dy<BR> =20
  249. potential=3D256/200/0<BR> =20
  250. colors=3D000zum<23>zd2zc0zd0<14>zz0<15>z00<14>ZZZ=
  251. ccc<7>zzz<6>00z<15>zz0<15\<BR> =20
  252. >z00<15>00z<15>0z0<15>z0z<14>N0NK0KJ1L<13&g=
  253. t;2Sk0Um0Vm<13>0km0mm0mm<14>0cz<\<BR> =20
  254. 15>zzz<5>zvo<BR>  }</FONT></DIV>
  255. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  256. <DIV><FONT color=3D#000000=20
  257. size=3D2><BR>IceCrystals       { ; Dan=20
  258. Vantari<BR>          &n=
  259. bsp;         =20
  260. ; Based on a Bill Rossi par of a William Decker=20
  261. frm<BR>           =
  262.         =20
  263. <BR>  reset=3D1960 type=3Dformula formulafile=3Dvar.par=20
  264. formulaname=3Dbillsfv4<BR>  function=3Dsqrt/cos/exp<BR> =20
  265. center-mag=3D0.0206845/-0.00708526/1.27913/1.2096 params=3D6/0 =
  266. float=3Dy<BR> =20
  267. potential=3D256/200/0<BR> =20
  268. colors=3D222ISaIUeIWiMYiMWeQYeQ_iUaiU_eUYaQWaQUYUWYUUUQSUQQQUSQUQMUOIQMIQ=
  269. O\<BR> =20
  270. MMMMMKIIIIIKMIMQMOQMQUIOUEMUEKQAIQAKU6IU2GU2EQ6GQ6EM2CM2AI6CIAEIAGMEIM<=
  271. ;2\<BR> =20
  272. >ECAAAAACE6AE28E26A68A666246642A62A86EA6E82IA2MC2ME6IC6IEAIGEMIEMGAQIA=
  273. QK\<BR> =20
  274. EUMEUKAUI6QG6QE2<2>aK2aM6YK6YMAYOEaQEaOAeQAeSEiUEiSAiQ6eO6eM2iO2mQ2=
  275. mS6qU\<BR> =20
  276. 6qS2uU2yW2yY6uW6uYAy_AyaEu_EqYEqWAmUA<2>m_MqaMq_IuaIycIyeMucMueQygQ=
  277. yiUug\<BR> =20
  278. UqeUqcQmaQmcUiaUe_UeYQi_QiYMiWIeUIeWMaUMaSIYQIYSMYUQaWQaYUYWUYYYa_YaaaY_\=
  279. <BR> =20
  280. aYaeYciaeiaceeeeegiiiiigeieaecaeaYicYmeYmgaqiaqgYuiYykYymaukaumeyoeyqiuo\=
  281. <BR> =20
  282. iqmiqkemie<2>moqqqqqomuqmysmyuqusquuuywuyyyuwyquyqsumqumsyiqyeoyemu=
  283. iouim\<BR> =20
  284. qikmeimekqaiqagmYemYgqYiuakuamy<2>QgyQeuUguUeqUcmQamQcqMaqM_mIYmI_q=
  285. IauMc\<BR> =20
  286. uMeyIcyEayE_uAYuA_y6Yy2Wy2Uu6Wu6Uq2Sq2Qm6SmAUmAWqEYq<2>ESeAQeASi6Qi=
  287. 2Oi2M\<BR> =20
  288. e6Oe6Ma2Ka2IY6KYAMYAOaEQaEOYIQYMSYMUa<BR>  }</FONT></DIV>
  289. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  290. <DIV><FONT color=3D#000000 size=3D2>frm:billsfv4  {<BR>  temp =
  291. =3D pixel=20
  292. :<BR>  z =3D fn1(temp^p1)<BR>  IF (5 < =
  293. z)<BR>    temp=20
  294. =3D fn2(temp)<BR>  ELSE<BR>    temp =3D =
  295. fn3(z)<BR> =20
  296. ENDIF<BR>  z < 100<BR>  =
  297. }<BR></FONT></DIV></DIV></BODY></HTML>
  298.  
  299. - ------=_NextPart_000_0052_01BE54F8.4B577D00--
  300.  
  301.  
  302. - --------------------------------------------------------------
  303. Thanks for using Fractint, The Fractals and Fractint Discussion List
  304. Post Message:   fractint@lists.xmission.com
  305. Get Commands:   majordomo@lists.xmission.com "help"
  306. Administrator:  twegner@phoenix.net
  307. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  308.  
  309. ------------------------------
  310.  
  311. Date: Wed, 10 Feb 1999 17:40:03 +0100
  312. From: Guy Marson <guy.marson@mnhn.lu>
  313. Subject: (fractint) Tim's error
  314.  
  315. Hi,
  316.  
  317. where can I find the *.frm from the "Tim's error" formula (for the Formula
  318. Parser, type=formula)?
  319. thanks for helping me.
  320.  
  321.  
  322. cheers,
  323.  
  324. Guy
  325.  
  326.  
  327.  
  328.  
  329. - --------------------------------------------------------------
  330. Thanks for using Fractint, The Fractals and Fractint Discussion List
  331. Post Message:   fractint@lists.xmission.com
  332. Get Commands:   majordomo@lists.xmission.com "help"
  333. Administrator:  twegner@phoenix.net
  334. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  335.  
  336. ------------------------------
  337.  
  338. Date: Thu, 11 Feb 1999 08:58:11 GMT
  339. From: "Andrew Coppin" <KHCM8AC@dmu.ac.uk>
  340. Subject: (fractint) Systems Theory
  341.  
  342. I read a book the other day called "Systems Theory, Systems Practice" 
  343. (now, was it by Peter Checkland or was it Steve Skidmore... I can't 
  344. rememver...). It talks a lot about "the Science of Systems", which is 
  345. a "Science of the consiquences of Wholeness". The basic premise 
  346. behind this is that "the Whole is greater then the sum of its parts", 
  347. because "the Whole represents a highter (more constrianed) level of 
  348. organisation then the one below, having imergant properties that were 
  349. not present below". By way of example, the book talks about the other 
  350. sciences (Systems Theory itself is a "meta-science"?!?): "All of 
  351. Chemistry can be decomposed into Physics, but there are properties of 
  352. Chemistry that do not appear as a consiquence of Physics, which is 
  353. what makes the subject worthy of study in its own right. Simularly, 
  354. Bioligy could be decomposed into Chemistry, but of all the possible 
  355. arrangements of chemicals possible, only a limited subset appear in 
  356. Bioligy. This represents a higher level of organisation, which does 
  357. not appear and does not make sense at any lower level(s)."
  358.  
  359. Is it just me, or does someone else here echos of Fractal Geometry in 
  360. here? What would Mr. B. B. Mandelbrot have to say about that lot? 
  361.  
  362. Please note that these are not EXACT quotes. I'll have a look in the 
  363. library and post some actual quotes (and an ISBN and author name) 
  364. tomorrow or sometime like that.
  365.  
  366. - ---------------------------------
  367. Nam et ipsa scientia potestus est!
  368. (Sir Francis Facon)
  369. Andrew Orphi Coppin
  370. DMU MK.
  371.  
  372. - --------------------------------------------------------------
  373. Thanks for using Fractint, The Fractals and Fractint Discussion List
  374. Post Message:   fractint@lists.xmission.com
  375. Get Commands:   majordomo@lists.xmission.com "help"
  376. Administrator:  twegner@phoenix.net
  377. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  378.  
  379. ------------------------------
  380.  
  381. Date: Thu, 11 Feb 1999 07:39:23 -0500 (EST)
  382. From: aq936@freenet.carleton.ca (Michael Traynor)
  383. Subject: (fractint) Re: [fractal-art] FOTD 07-02-99 (Epicycle Fantasy) (C)
  384.  
  385. I started the par for this one, and saved it, but when I restore it the
  386. rest of the screen generates a blank.  It generated fine in a view-window
  387. using boundary tracing, though.  Any ideas, help, offers to point out how
  388. I've stupidly missed something obvious?
  389.  
  390. I'm running in DOS, on a 486/33, at 1024x768.
  391.  
  392. - --
  393. Mike Traynor
  394.  
  395. People who like this sort of thing will find this the sort of thing they like.
  396.     Abraham Lincoln
  397.  
  398. - --------------------------------------------------------------
  399. Thanks for using Fractint, The Fractals and Fractint Discussion List
  400. Post Message:   fractint@lists.xmission.com
  401. Get Commands:   majordomo@lists.xmission.com "help"
  402. Administrator:  twegner@phoenix.net
  403. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  404.  
  405. ------------------------------
  406.  
  407. Date: Thu, 11 Feb 1999 10:27:35 -0500
  408. From: Gedeon Peteri <gedeon@InfoAve.Net>
  409. Subject: (fractint) updated web site
  410.  
  411. I have added two new pages of Ultra Fractal images to my Geocities web
  412. site. I hope you enjoy your visit.
  413.  
  414. Gedeon
  415.  
  416. - --
  417. - --------------------------------------------------------------
  418. Fractals: http://www.geocities.com/~gedeonp/index.html
  419. Member Infinite Fractal Loop
  420. Last updated: February 11, 1999 - two new pages
  421. Photography: http://members.xoom.com/gedeonp/index.html
  422. Last updated: November 8, 1998
  423. - --------------------------------------------------------------
  424.  
  425.  
  426.  
  427. - --------------------------------------------------------------
  428. Thanks for using Fractint, The Fractals and Fractint Discussion List
  429. Post Message:   fractint@lists.xmission.com
  430. Get Commands:   majordomo@lists.xmission.com "help"
  431. Administrator:  twegner@phoenix.net
  432. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  433.  
  434. ------------------------------
  435.  
  436. Date: Thu, 11 Feb 1999 10:09:22 -0800
  437. From: "Jon Camp" <jon.camp@valpo.edu>
  438. Subject: (fractint) website remake and update
  439.  
  440. I've updated my entire site in order to get it ready for a move this weekend
  441. to my own domain. I have also added 6 new fractals to my galleries. This
  442. will be the last opportunity to visit it before we go offline for a week or
  443. so to complete the move. Tell me what you think about the new layout.
  444. Thanks.
  445.  
  446. Jon Camp
  447. chaotic n-space network
  448.  
  449. main page: http://www.valpo.edu/home/student/jcamp/index.html
  450. fractals page: http://www.valpo.edu/home/student/jcamp/html/fractals.html
  451. philosophy page:
  452. http://www.valpo.edu/home/student/jcamp/html/philosophy.html
  453.  
  454.  
  455.  
  456. - --------------------------------------------------------------
  457. Thanks for using Fractint, The Fractals and Fractint Discussion List
  458. Post Message:   fractint@lists.xmission.com
  459. Get Commands:   majordomo@lists.xmission.com "help"
  460. Administrator:  twegner@phoenix.net
  461. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  462.  
  463. ------------------------------
  464.  
  465. Date: Thu, 11 Feb 1999 14:58:18 -0500
  466. From: Tom Conally <conally@netpath.net>
  467. Subject: Re: (fractint) website remake and update
  468.  
  469. At 10:09 AM 2/11/1999 -0800, you wrote:
  470. > Tell me what you think about the new layout.
  471. >Thanks.
  472.  
  473. I think it's a super layout, wonderful color coordination, and overall one
  474. of the best sites I've seen in a long time.
  475. Thanks for sharing.
  476. Tom Conally
  477. In every boomerang there is a perfect throw.
  478. Your life, Grasshopper, is to practice
  479. till you find that throw
  480. and become one with that boomerang!
  481. http://www.angelfire.com/nc/conally  " Flying Frog Boomerangs"
  482. http://members.tripod.com/~afractal   " Flying Frogs Fractals"
  483. http://www.netpath.net/~conally     "Paradise"
  484.  
  485. - --------------------------------------------------------------
  486. Thanks for using Fractint, The Fractals and Fractint Discussion List
  487. Post Message:   fractint@lists.xmission.com
  488. Get Commands:   majordomo@lists.xmission.com "help"
  489. Administrator:  twegner@phoenix.net
  490. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  491.  
  492. ------------------------------
  493.  
  494. Date: Fri, 12 Feb 1999 06:12:02 +1000
  495. From: James Polley <james_p@iname.com>
  496. Subject: (fractint) What's up with the list?
  497.  
  498. Hi! I was subscribed to the list several years ago, and I got used to recieving
  499. 20-30 messages each day. I've now re-subscribed, and I'm only getting one or two
  500. messages a day. Whats up?
  501.  
  502. - -- 
  503. James Polley            |  :-j <>< 'For God has not given
  504. 07 5595 4643            |  us a spirit of fear, but of
  505. C/- Student Residences  |  power, and of love, and of a 
  506. Bond University, 4229   |  sound mind' 2 Tim 1:7
  507.  
  508. - --------------------------------------------------------------
  509. Thanks for using Fractint, The Fractals and Fractint Discussion List
  510. Post Message:   fractint@lists.xmission.com
  511. Get Commands:   majordomo@lists.xmission.com "help"
  512. Administrator:  twegner@phoenix.net
  513. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  514.  
  515. ------------------------------
  516.  
  517. Date: Thu, 11 Feb 1999 15:35:42 -0500
  518. From: "Ron Barnett" <rbarnett@telenet.net>
  519. Subject: RE: (fractint) What's up with the list?
  520.  
  521. Some of the traffic has move to the UltraFractal list
  522.  
  523. > -----Original Message-----
  524. > From: owner-fractint@lists.xmission.com
  525. > [mailto:owner-fractint@lists.xmission.com]On Behalf Of James Polley
  526. > Sent: Thursday, February 11, 1999 3:12 PM
  527. > To: Fractint List
  528. > Subject: (fractint) What's up with the list?
  529. > Hi! I was subscribed to the list several years ago, and I got 
  530. > used to recieving
  531. > 20-30 messages each day. I've now re-subscribed, and I'm only 
  532. > getting one or two
  533. > messages a day. Whats up?
  534. > -- 
  535. > James Polley            |  :-j <>< 'For God has not given
  536. > 07 5595 4643            |  us a spirit of fear, but of
  537. > C/- Student Residences  |  power, and of love, and of a 
  538. > Bond University, 4229   |  sound mind' 2 Tim 1:7
  539. > --------------------------------------------------------------
  540. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  541. > Post Message:   fractint@lists.xmission.com
  542. > Get Commands:   majordomo@lists.xmission.com "help"
  543. > Administrator:  twegner@phoenix.net
  544. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  545.  
  546. - --------------------------------------------------------------
  547. Thanks for using Fractint, The Fractals and Fractint Discussion List
  548. Post Message:   fractint@lists.xmission.com
  549. Get Commands:   majordomo@lists.xmission.com "help"
  550. Administrator:  twegner@phoenix.net
  551. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  552.  
  553. ------------------------------
  554.  
  555. Date: Thu, 11 Feb 1999 17:20:21 -0500
  556. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  557. Subject: (fractint) Re: [fractal-art] FOTD 07-02-99 (Epicycle Fantasy) (C)
  558.  
  559. Hi Mike,
  560.  
  561. >> I started the par for this one, and saved it, but when I restore it th=
  562. e
  563. >> rest of the screen generates a blank.  It generated fine in a
  564. >> view-window using boundary tracing, though.  Any ideas, help, offers t=
  565. o
  566. >> point out how I've stupidly missed something obvious?
  567.  
  568.   You probably have two different versions of the formula.  The formula J=
  569. im
  570. posted with his par is:
  571.  
  572. frm:MandelbrotMix4 {; Jim Muth
  573. a=3Dreal(p1), b=3Dimag(p1), d=3Dreal(p2), f=3Dimag(p2), g=3D1/f,
  574. h=3D1/d, j=3D1/(f-b), z=3D(-a*b*g*h)^j, k=3Dreal(p3)+1,
  575. l=3Dimag(p3)+100, c=3Dfn1(pixel):
  576. z=3Dk*((a*(z^b))+(d*(z^f)))+c,
  577. |z| < l
  578. }
  579.  
  580.   so, when you start the par in Fractint, Fractint uses the formula that =
  581. is
  582. in the par file.  If you restore the image, Fractint will find this one i=
  583. n
  584. _m.frm:
  585.  
  586. MandelbrotMix4 {; Jim Muth
  587. c=3Dpixel, a=3Dreal(p1), b=3Dimag(p1), d=3Dreal(p2), f=3Dimag(p2),
  588. g=3D1/f, h=3D1/d, j=3D1/(f-b), z=3D(-a*b*g*h)^j:
  589. z=3D(a*(z^b))+(d*(z^f))+c,
  590. |z| <=3D 100
  591.   ;SOURCE: pink.par
  592. }
  593.  
  594.   Cheers,
  595.  
  596.         - Sylvie
  597.  
  598. - --------------------------------------------------------------
  599. Thanks for using Fractint, The Fractals and Fractint Discussion List
  600. Post Message:   fractint@lists.xmission.com
  601. Get Commands:   majordomo@lists.xmission.com "help"
  602. Administrator:  twegner@phoenix.net
  603. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  604.  
  605. ------------------------------
  606.  
  607. Date: Thu, 11 Feb 1999 16:38:45 -0600
  608. From: "Tim Wegner" <twegner@phoenix.net>
  609. Subject: (fractint) Anyone use Red Hat Linux?
  610.  
  611. Does anyone have experience compiling Xfractint with Red Hat? I 
  612. use Slakware Linux and have no problems (but then again I only 
  613. compile the developer version these days.) 
  614.  
  615.  I received the following message:
  616.  
  617. Hello!
  618.  
  619. I have downloaded Xfractint for Linux, but when I try to compile it I 
  620. get several error messages (see below). I am using Red Hat Linux 
  621. 5.2 (Apollo) runnning on Cyrix 686. I have tried to adjust the source 
  622. according to the guidelines for Linux/Apollo, which are included in 
  623. the "makefile", but without success. I would be much obliged for 
  624. any suggestions and help.
  625.  
  626. Thanks in advance.
  627.  
  628. Best regards,
  629. Andrej Lajovic
  630.  
  631. Error messages:
  632.  
  633. unixscr.c: In function `UnixInit':
  634. unixscr.c:244: `SignalHandler' undeclared (first use this function)
  635. unixscr.c:244: (Each undeclared identifier is reported only once
  636. unixscr.c:244: for each function it appears in.)
  637. unixscr.c:244: parse error before `goodbye'
  638. unixscr.c: In function `shell_to_dos':
  639. unixscr.c:2071: `SignalHandler' undeclared (first use this function)
  640. unixscr.c:2071: parse error before `sigint'
  641. unixscr.c:2076: `sigint' undeclared (first use this function)
  642. unixscr.c:2076: parse error before `signal'
  643. unixscr.c:2124: parse error before `sigint'
  644. unixscr.c: In function `schedulealarm':
  645. unixscr.c:2149: `SignalHandler' undeclared (first use this function)
  646. unixscr.c:2149: parse error before `setredrawscreen'
  647. make: *** [unixscr.o] Error 1
  648.  
  649.  
  650.  
  651. - --------------------------------------------------------------
  652. Thanks for using Fractint, The Fractals and Fractint Discussion List
  653. Post Message:   fractint@lists.xmission.com
  654. Get Commands:   majordomo@lists.xmission.com "help"
  655. Administrator:  twegner@phoenix.net
  656. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  657.  
  658. ------------------------------
  659.  
  660. Date: Thu, 11 Feb 1999 15:41:49 -0800
  661. From: "Mike and Linda Allison" <gumbycat@ix.netcom.com>
  662. Subject: Re: (fractint) What's up with the list?
  663.  
  664. That happens every now and then, James.  I've never figured out why,
  665. either, but rest assured, traffic will pick up eventually, and
  666. spontaneously.
  667.  
  668. It may be because the shareware version of Ultrafractal was just
  669. released, and everyone is enamored of it and otherwise occupied!  When
  670. the newness wears off a little, people will start using all of their
  671. programs again and traffic will increase.  (Ultrafractal and Fractint
  672. are a perfect marriage, in my opinion.  I generate a lot of my images in
  673. Fractint, then convert them to Ultrafractal for layering.  I doubt that
  674. Fractint will ever lose it's audience permanently!)
  675.  
  676. Linda
  677.  
  678. - -----Original Message-----
  679. From: James Polley <james_p@iname.com>
  680. To: Fractint List <fractint@lists.xmission.com>
  681. Date: Thursday, February 11, 1999 12:14 PM
  682. Subject: (fractint) What's up with the list?
  683.  
  684.  
  685. >Hi! I was subscribed to the list several years ago, and I got used to
  686. recieving
  687. >20-30 messages each day. I've now re-subscribed, and I'm only getting
  688. one or two
  689. >messages a day. Whats up?
  690. >
  691. >--
  692. >James Polley            |  :-j <>< 'For God has not given
  693. >07 5595 4643            |  us a spirit of fear, but of
  694. >C/- Student Residences  |  power, and of love, and of a
  695. >Bond University, 4229   |  sound mind' 2 Tim 1:7
  696. >
  697. >--------------------------------------------------------------
  698. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  699. >Post Message:   fractint@lists.xmission.com
  700. >Get Commands:   majordomo@lists.xmission.com "help"
  701. >Administrator:  twegner@phoenix.net
  702. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  703. >
  704.  
  705.  
  706. - --------------------------------------------------------------
  707. Thanks for using Fractint, The Fractals and Fractint Discussion List
  708. Post Message:   fractint@lists.xmission.com
  709. Get Commands:   majordomo@lists.xmission.com "help"
  710. Administrator:  twegner@phoenix.net
  711. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  712.  
  713. ------------------------------
  714.  
  715. Date: Thu, 11 Feb 1999 19:13:33 -0500 (EST)
  716. From: Ian Kaplan <ijk@force.stwing.upenn.edu>
  717. Subject: Re: (fractint) Anyone use Red Hat Linux?
  718.  
  719. > Does anyone have experience compiling Xfractint with Red Hat? I 
  720. > use Slakware Linux and have no problems (but then again I only 
  721. > compile the developer version these days.) 
  722.  
  723. I'll try and test it over the weekend.
  724.  
  725.  
  726. - --------------------------------------------------------------
  727. Thanks for using Fractint, The Fractals and Fractint Discussion List
  728. Post Message:   fractint@lists.xmission.com
  729. Get Commands:   majordomo@lists.xmission.com "help"
  730. Administrator:  twegner@phoenix.net
  731. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  732.  
  733. ------------------------------
  734.  
  735. Date: Thu, 11 Feb 1999 19:25:26 -0500
  736. From: "Zina Costiner" <zinacostiner@worldnet.att.net>
  737. Subject: (fractint) simple source code needed
  738.  
  739. Hi fractal-friends,
  740.  
  741. I have a student to prepare for the Science Fair on fractals.
  742. The guy is in the 7th grade.
  743.  
  744. Could anyone  help me with any ideas or simple source code, please.
  745. I would appreciate very much any suggestions.
  746.  
  747. Warm regards,
  748.  
  749. Zina Costiner
  750. E-mail: zinacostiner@worldnet.att.net
  751.  
  752.  
  753.  
  754.  
  755. - --------------------------------------------------------------
  756. Thanks for using Fractint, The Fractals and Fractint Discussion List
  757. Post Message:   fractint@lists.xmission.com
  758. Get Commands:   majordomo@lists.xmission.com "help"
  759. Administrator:  twegner@phoenix.net
  760. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  761.  
  762. ------------------------------
  763.  
  764. Date: Fri, 12 Feb 1999 12:53:32 +0000 (GMT)
  765. From: "Koppens,Ton" <Ton_Koppens.rxnl@eur.xerox.com>
  766. Subject: (fractint) PAR & FRM
  767.  
  768. Some pars for you to enjoy.
  769. Have a nice weekend all.
  770.  
  771. Ton
  772.  
  773. ===============================================================================
  774.  
  775. 98091810           { ; CalcTime   0:01:11.85 at 800x600 on a P166
  776.                      ; Image Copyright 18 Sep 1998 by Ton Koppens
  777.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  778.   reset=1960 type=formula formulafile=_b.frm
  779.   formulaname=bills_diff_delt1 function=cosh passes=3
  780.   center-mag=-0.250313/0.651085/2.73224 params=1/0.5/1/1.5/2.5/1.5
  781.   float=y logmap=old potential=25/45/25 biomorph=0
  782.   colors=0008jo<29>1lrDin<28>iRSCin<38>4ZkCin<56>e6MDem<6>M7bCim<39>fb5Cin\
  783.   <15>MYgEinNYg<19>ZJZAin<6>8jo
  784.   }
  785.  
  786. 98092103           { ; CalcTime   0:00:15.05 at 800x600 on a P166
  787.                      ; Image Copyright 21 Sep 1998 by Ton Koppens
  788.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  789.   reset=1960 type=formula formulafile=_b.frm
  790.   formulaname=bills_diff_delt1 function=sin
  791.   center-mag=+1.12944802776051500/+0.06976800198533709/58.36455/1.2065
  792.   params=1/1/1/1/2/3 float=y potential=20/45/18
  793.   colors=000MWWITT_ys9xkxzo<3>py4wvs<7>WR0zuw<8>zBPwtv<3>iUdxux<8>c9evwx<1\
  794.   3>2IVxxv<9>_ZBktxsrnXmvIgt2`q<5>X2_<6>RP8QT4RT6<12>e_d<7>GKd<6>kyi<11>7y\
  795.   z<3>tZm<6>ZpmVslQsf<4>0tA<10>9Ry<8>ojo<14>tNS<6>_0I<8>ASH7WG7YG<10>EuI<5\
  796.   >nIX<9>VJpSKrROr<4>Mgq<8>87Jghgwxx<9>PZZ
  797.   }
  798.  
  799. 98092124           { ; CalcTime   0:00:43.17 at 800x600 on a P166
  800.                      ; Image Copyright 21 Sep 1998 by Ton Koppens
  801.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  802.   reset=1960 type=formula formulafile=_b.frm
  803.   formulaname=bills_diff_delt1 function=sqrt passes=3
  804.   center-mag=0.520651/0.0300501/1.893939 params=1.5/1/0.5/1/2/3
  805.   float=y potential=30/45/25
  806.   colors=0007DM<4>EAUFAVIFW<9>hwZ<10>dme_Zmdmf<15>`_ocHr<22>`_o2VZ<5>W_mxx\
  807.   k<7>bao8i0<3>WaeW0D<29>`ZnB3B<10>ZYl4DE<11>ZZm0Qg<18>__oQ2y<7>_XpQY0<12>\
  808.   `_lQNa<26>`_o4Ba<20>_ZohHb0_e<11>P_l
  809.   }
  810.  
  811. 98111003           { ; 98111002 with other colors
  812.                      ; CalcTime   0:01:38.86 at 800x600 on a P166
  813.                      ; Image Copyright 10 Nov 1998 by Ton Koppens
  814.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  815.   reset=1960 type=tim's_error function=sin passes=t
  816.   center-mag=-2.00626995774959000/-1.36844021516822000/4222.748/3.1741/30/\
  817.   55.132 params=1.8/2 float=y bailout=55 decomp=128 biomorph=1
  818.   colors=RNHfff<8>www<31>000<2>543765986BA7DB8<24>zqb<26>A8687565444322200\
  819.   0<31>www<31>000<11>NJEPLFTPI<16>zqb<20>MIEKHDIFCGEAEC9<6>000<21>ddd
  820.   }
  821.  
  822. 98111005           { ; uses 1star2.map by Kathy Roth
  823.                      ; CalcTime   0:04:14.26 at 800x600 on a P166
  824.                      ; Image Copyright 10 Nov 1998 by Ton Koppens
  825.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  826.   reset=1960 type=formula formulafile=_s.frm
  827.   formulaname=starFlexBalls_Mand function=atanh passes=t
  828.   center-mag=-1.11022e-016/8.32667e-017/3.875969
  829.   params=2.5/0.5/0.01/0.05 float=y bailout=55 decomp=256 biomorph=1
  830.   colors=000KSQajQ<27>AG6zqCzqCspIzqC<19>qFApD9pD9<2>pD9wcB<7>qGApD9oC9<2>\
  831.   l68f87`A7QE6wxz<24>nFPmDNouy<26>JfuHetHdr<4>FalF`kE_iEZhEYf<8>BUWBUVBUUB\
  832.   TTASRASR<37>4AA4CCC`V<8>AVQAUP9TP9SO9SN9RN<13>5GE8JD8ICCJ7<21>7D57C57C57\
  833.   B57B56A4EM8
  834.   }
  835.  
  836. 98111006           { ; uses found_object2.map by Kathy Roth
  837.                      ; CalcTime   0:06:24.24 at 800x600 on a P166
  838.                      ; Image Copyright 10 Nov 1998 by Ton Koppens
  839.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  840.   reset=1960 type=formula formulafile=_s.frm
  841.   formulaname=starFlexBalls_Mand function=atanh passes=t
  842.   center-mag=-1.18780475594493100/+0.11247112466241700/46.04221/2.1293
  843.   params=2.5/0.5/0.01/0.05 float=y bailout=55 decomp=256 biomorph=1
  844.   colors=xn_VX_<4>los<13>SNCQL9QL9QL8QK7<24>tjWukXvlYxn_xn_xn_<29>RL7QK6QK\
  845.   7QL9<2>UQHVSKXUO<9>los<9>788<3>222000001<10>21D22E22F23G23I<7>37R37S48U5\
  846.   8W<4>7Cd8De8De<27>SYvSZvT_wT_wSZv<27>BGfAFe9Ed8Dc7Cb<10>24K23J12H01F<8>0\
  847.   19018017016016015014003001001<7>STW cyclerange=0/255
  848.   }
  849.  
  850. 98122009           { ; CalcTime   0:04:31.49 at 800x600 on a P166
  851.                      ; Image Copyright 20 Dec 1998 by Ton Koppens
  852.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  853.   reset=1960 type=tim's_error function=tanh
  854.   center-mag=+1.30632695141084400/+0.94503331193235840/1557.097/1/0/49.559
  855.   params=1.2178727682762/0.4823488684686834 float=y maxiter=647
  856.   bailout=250 decomp=256 biomorph=1; colors=@jacco180.map
  857.   colors=000<7>00H10K30K<5>F0K<5>303000000<2>203304304404<31>W04X04Z03_02a\
  858.   00<6>jR0<12>M20K00J00<13>204005005<9>002002001100100000<15>D00<2>G0B<9>z\
  859.   zz<9>wa0wc0<7>U00<7>000<5>40850A509<6>102000100<21>c00<14>80950A50D<7>00\
  860.   c<5>0Pc0Uc0Wd<5>0hj000kkk
  861.   }
  862.  
  863. 98122011           { ; CalcTime   0:04:00.52 at 800x600 on a P166
  864.                      ; Image Copyright 20 Dec 1998 by Ton Koppens
  865.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  866.   reset=1960 type=tim's_error function=tanh
  867.   center-mag=+1.30634044644263200/+0.94560822705900870/84185.61/1/0/49.559
  868.   params=1.2178727682762/0.4823488684686834 float=y maxiter=647
  869.   bailout=250 decomp=256 biomorph=1
  870.   colors=00030K<5>F0K<5>303000000<2>203304304404<31>W04X04Z03_02a00<6>jR0<\
  871.   12>M20K00J00<13>204005005<9>002002001100100000<15>D00<2>G0B<9>zzz<9>wa0w\
  872.   c0<7>U00<7>000<5>40850A509<6>102000100<21>c00<14>80950A50D<7>00c<5>0Pc0U\
  873.   c0Wd<5>0hj000kkk002<7>10K
  874.   }
  875.  
  876. 98122108           { ; CalcTime   0:01:46.56 at 800x600 on a P166
  877.                      ; Image Copyright 21 Dec 1998 by Ton Koppens
  878.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  879.   reset=1960 type=tim's_error function=tanh
  880.   center-mag=-1.30059274107898900/-0.75024965216700480/147.2379
  881.   params=1.2178727682762/0.4823488684686834 float=y maxiter=647
  882.   bailout=250 decomp=256 biomorph=1
  883.   colors=GC7qompopspnqpqtqosqsvsqtsturoutvtqnvuwsqmxwyspmxwxrplwvwrokvuuqo\
  884.   juttqniusrpmhtsqomhsroolgrqnnlfrpmnkeqokmkdpojljconhljbomgkibnlekhamkdjh\
  885.   `ljbig_kibigZkhahfYjh`hfYig_geXigZgeWhfYfdVhfYecUgeXecTgeWdbTfdVdbSecUca\
  886.   RecTbaQdbTb`PdbSa`OcaRa_NbaQ`ZNb`P_ZMa`O_YLa_NZYK`ZNZXJ_ZMYXI_YLZXJ`YM`X\
  887.   LaYNbXNbYOdYPdXQeYQeXRgYSfXSiYUgXTkZW<7>Z9OX9NU8L<8>L6FG6BJ5EA56H5C441H8\
  888.   A772AC2GF4DG1<5>MU0OX0QY2<15>wxc<2>pqZnoYjkWjjVefSefS`aP`aPWWLXXMRRISTJL\
  889.   MEOOGGGBJJDBB7EFA664AA7000554000<51>b`_b`_dbadb`ecbecbfddgecgeehfdiggjgf\
  890.   jhhkigkijmjilkknljnlmpmkomn
  891.   }
  892.  
  893. 98122110           { ; CalcTime   0:02:45.49 at 800x600 on a P166
  894.                      ; Image Copyright 21 Dec 1998 by Ton Koppens
  895.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  896.   reset=1960 type=tim's_error function=tanh
  897.   center-mag=-1.30551157479612100/-0.74630387208600610/856.0342
  898.   params=1.2178727682762/0.4823488684686834 float=y maxiter=647
  899.   bailout=250 decomp=256 biomorph=1
  900.   colors=GC7qpqtqosqsvsqtsturoutvtqnvuwsqmxwyspmxwxrplwvwrokvuuqojuttqnius\
  901.   rpmhtsqomhsroolgrqnnlfrpmnkeqokmkdpojljconhljbomgkibnlekhamkdjh`ljbig_ki\
  902.   bigZkhahfYjh`hfYig_geXigZgeWhfYfdVhfYecUgeXecTgeWdbTfdVdbSecUcaRecTbaQdb\
  903.   Tb`PdbSa`OcaRa_NbaQ`ZNb`P_ZMa`O_YLa_NZYK`ZNZXJ_ZMYXI_YLZXJ`YM`XLaYNbXNbY\
  904.   OdYPdXQeYQeXRgYSfXSiYUgXTkZW<7>Z9OX9NU8L<8>L6FG6BJ5EA56H5C441H8A772AC2GF\
  905.   4DG1<5>MU0OX0QY2<15>wxc<2>pqZnoYjkWjjVefSefS`aP`aPWWLXXMRRISTJLMEOOGGGBJ\
  906.   JDBB7EFA664AA7000554000<51>b`_b`_dbadb`ecbecbfddgecgeehfdiggjgfjhhkigkij\
  907.   mjilkknljnlmpmkomnqompopspn
  908.   }
  909.  
  910. 99011803           { ; CalcTime   0:00:20.32 at 800x600 on a P166
  911.                      ; Image Copyright 18 Jan 1999 by Ton Koppens
  912.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  913.   reset=1960 type=barnsleym3
  914.   center-mag=-0.00675917/0.437857/21.92356/1.7679/0/-10.259 params=0/0
  915.   float=y
  916.   colors=gWVMRE<3>4A0<12>ovo<11>3AD<12>llz<11>06M<11>uzz<2>uvvtuutsssrq<14\
  917.   >lWUlVSkTQjSP<14>I98G76C33700<10>pyb<12>4A0<11>7JH8KJ8LK9MMANN<21>llz<10\
  918.   >05Q<12>zzz<19>pdbocana_m`ZkZYiYWeUT<12>H9AF78B44700<10>sve<6>QVI
  919.   }
  920.  
  921. 99011804           { ; CalcTime   0:00:09.45 at 800x600 on a P166
  922.                      ; Image Copyright 18 Jan 1999 by Ton Koppens
  923.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  924.   reset=1960 type=barnsleym3
  925.   center-mag=-0.01799258272814384/+0.45237566607450940/202.3957/2.6259/0/1\
  926.   9.9 params=0/0 float=y
  927.   colors=0003U92S91R8<3>0L60J61I51H5<2>5D47B39A3B93D82<4>P41S31U21X20Z10a1\
  928.   0<3>i00j00l00m00n00<3>o10o20n20<2>k50i60h71f81d91<4>TF2QG3OH3LJ3JK4GM4EN\
  929.   4CP59Q58S66T6<3>1Z80`80a90c90dA<3>3jC4kD6lD<2>BpFDqGGrH<5>VwKXwL_xMaxNcy\
  930.   NfyOgyPiyP<3>nySoyToxToxUowV<3>luYktYisZ<4>_naXlbVkcSjcQidNgd<4>B`g9Zh7Y\
  931.   i5Wi4Vj3Tj1Sk<4>0Km0Jm1Hn2Gn3Fo<5>E8qG7qJ6q<3>T2rW2rY1r`1sb0s<2>h0sj0sk0\
  932.   sl0sm0sn0s<2>o1so2sn2sn3s<2>j5ri6rg7re8r<4>UEqSFpPHpMIp<4>APn8Rm7Sm5Um<2\
  933.   >1Zk0_k0aj<2>0ei0fh1hg2ig<2>6me8neAodCpcFrcHsb<5>WwZZxY`xYbxXeyW<4>myTny\
  934.   SnyR<2>oxPowPnvOnvN<2>jsLhsLfrKdqJboJ<3>TkGRiFOhFMfEJeE<4>8ZB6XA5WA
  935.   }
  936.  
  937. 99011806           { ; CalcTime   0:00:07.04 at 800x600 on a P166
  938.                      ; Image Copyright 18 Jan 1999 by Ton Koppens
  939.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  940.   reset=1960 type=barnsleym3
  941.   center-mag=0.8799/-0.0318387/1.673352/1.3299 params=-1/0.5 float=y
  942.   maxiter=647 bailoutest=manr outside=atan
  943.   colors=00001A<7>058167167277286<8>AG4BH4DI4<17>bX0cY0eZ0fZ0g_0i_0<7>rb0s\
  944.   b0sb0<2>vb0va0wa0wa0wa0<6>xZ1xY1wX1wX1<7>rQ2qP3oO3<5>hJ4gI5fH5dG5cF5aE6<\
  945.   9>N69M59K49J4AI3AG3A<5>90C80D70D60D50E<3>20F10F10G10G<5>03I03I04J05J15J1\
  946.   6J<4>4AL5BL6CL7DM8DM9EM<4>FJNGKOHLOJMOKNOLOP<9>_WQaXQbYQdYQeZRgZR<4>maRn\
  947.   aRoaRpaRqbR<3>ubRubRvbRvaRwaR<8>xYQxYQwXQ<5>tSPsROrROqQOpPO<6>hIMfHMeGMc\
  948.   FLbEL<7>R7JP7IO6IN5I<4>F2GE2GD1GC1FB1F<3>60E50D50D<2>20C20C10B10B01B
  949.   }
  950.  
  951. 99013101           { ; uses migold.map
  952.                      ; CalcTime   0:00:55.15 at 800x600 on a P166
  953.                      ; Image Copyright 31 Jan 1999 by Ton Koppens
  954.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  955.   reset=1960 type=formula formulafile=_b.frm formulaname=bills_wonder
  956.   function=tanh
  957.   center-mag=+1.43604505632040000/-0.03831385642737881/124.1399/1.6782/0/-\
  958.   10.795 params=0.188615286/1/0.9897812/2/11/3 float=y maxiter=647
  959.   decomp=256 biomorph=1
  960.   colors=0If0If000<7>eWJ<23>111<46>pdOrePreP<62>511511621<60>qdOrePqdO<22>\
  961.   SD4QB3RC4<14>B53942942942842
  962.   }
  963.  
  964. 99013102           { ; CalcTime   0:02:16.10 at 800x600 on a P166
  965.                      ; Image Copyright 31 Jan 1999 by Ton Koppens
  966.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  967.   reset=1960 type=formula formulafile=_b.frm formulaname=bills_wonder
  968.   function=tanh center-mag=0/0/0.6666667 params=0.5/2/0.2/1/20/40
  969.   float=y maxiter=647 decomp=256 biomorph=1
  970.   colors=XBBYKK<4>WKLnYYWKL<5>ULMjVWULN<3>SMOSMOTNOhUVVOP<5>`RSfSTbST<5>hV\
  971.   VdRRjWW<5>pZZaPPr__<3>vaat``sZ_dQOqXX<5>iQQ_KIgNO<5>`GHcMIYEF<5>R78gPIQ5\
  972.   6<5>XB8kRIZD9<5>eJCoUIgKD<5>nQFsWIpSG<6>xZJz_KyYJ<12>j93i72i73i84i95<14>\
  973.   K9CI9DH8C<3>D38<12>oZl<5>oampbmpcmpdnpdn<18>uruvsuvtvwuvwuw<4>zzzZBB`CBc\
  974.   DBWDFjFC<5>hFDbIJhGD<5>fGEiNNeGF<5>dHGqSRcHG<5>bIHsXWaIH<5>`JIvaa_JJ<5>Y\
  975.   JKr__YKK
  976.   }
  977.  
  978. 99013103           { ; CalcTime   0:00:47.79 at 800x600 on a P166
  979.                      ; Image Copyright 31 Jan 1999 by Ton Koppens
  980.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  981.   reset=1960 type=formula formulafile=_b.frm formulaname=bills_wonder
  982.   function=tanh center-mag=-3.33067e-016/2.22045e-016/2.73224
  983.   params=0.5/2/0.2/1/20/40 float=y maxiter=647 decomp=256 biomorph=1
  984.   colors=JENW8H<31>yxxzzzzyy<34>ZIJYGHYHH<21>nia<14>H78E45E34F23<5>C44B55A\
  985.   55966966<44>mX5<11>ID8FC9CA998AA9C<13>OMTQNVPMU<5>LGOKFOJDM<8>B4DA3CB4D<\
  986.   10>VFOXGP_HRbHSeIUdKTcKTbLS<6>f6Og3Nf3N<6>X4GV5FV5FV6G
  987.   }
  988.  
  989. 99013104           { ; uses migold.map
  990.                      ; CalcTime   0:01:47.37 at 800x600 on a P166
  991.                      ; Image Copyright 31 Jan 1999 by Ton Koppens
  992.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  993.   reset=1960 type=formula formulafile=_b.frm
  994.   formulaname=bills_xy-trade6 function=tanh/sqr/sinh
  995.   center-mag=0/0/0.6666667 params=1/0.5/1/0.5/10/20 float=y
  996.   maxiter=647 decomp=256 biomorph=1
  997.   colors=0If0If000<7>eWJ<23>111<46>pdOrePreP<62>511511621<60>qdOrePqdO<22>\
  998.   SD4QB3RC4<14>B53942942942842
  999.   }
  1000.  
  1001. FRM:bills_diff_delt1  { ; Apr-13-98
  1002.                    ; p1 = offset for y var
  1003.                    ; real p2 = base real exponent
  1004.                    ; imag p2 = base imag exponent
  1005.                    ; real p3 = exponent real delta
  1006.                    ; imag p3 = exponent imag delta
  1007.                    ;
  1008.   c = x = pixel, y = pixel + p1
  1009.   splus = real(p2) + real(p3) + flip(imag(p2) + imag(p3))
  1010.   sminus = real(p2) - real(p3) + flip(imag(p2) - imag(p3)):
  1011.   xtemp = x^splus +c
  1012.   x = fn1(xtemp)
  1013.   ytemp = y^sminus +c
  1014.   y = fn1(ytemp)
  1015.   d = |x-y|
  1016.   z = d^2
  1017.   |z| < 2
  1018.   ;SOURCE: 180998.frm
  1019. }
  1020.  
  1021. FRM:starFlexBalls_Mand {;adapted from Paul Carlson by Kathy Roth
  1022. ; Copyright (c) Paul W. Carlson, 1998
  1023.     ; p1 = radius of center of ring (0.01 to 10)
  1024.     ; p2 = one half thickness of ring (0.01 to p1)
  1025.     ;
  1026.     c=log(sqr(sqr(pixel))*pixel)*0.2
  1027.     w = z = iter = bailout = 0
  1028.     d0 = p1 + p2
  1029.     d1 = 0.382683432365 * p1
  1030.     d2 = 0.923879532511 * p1
  1031.     dsqd = d0 * d0 + p1 * p1 - (d0 + d0) * d2
  1032.     :
  1033.      w2=fn1(w)+c
  1034.     w=c*(1-w2*w2)/(1+w2*w2)
  1035.     ;
  1036.     IF ((abs(cabs(w) - p1) < p2) && iter > 0)
  1037.  bailout = 1
  1038.  wr = real(w), wi = imag(w)
  1039.  awr = abs(wr), awi = abs(wi)
  1040.  IF (awr >= awi)
  1041.      dist = (awr - d2) * (awr - d2) + (awi - d1) * (awi - d1)
  1042.      adjust = 1
  1043.  ELSE
  1044.      dist = (awr - d1) * (awr - d1) + (awi - d2) * (awi - d2)
  1045.      adjust = 0
  1046.  ENDIF
  1047.  IF     (wr >= 0 && wi >= 0)
  1048.      range_num = 1 - adjust
  1049.  ELSEIF (wr < 0 && wi >= 0)
  1050.      range_num = 2 + adjust
  1051.  ELSEIF (wr < 0 && wi < 0)
  1052.      range_num = 5 - adjust
  1053.  ELSE
  1054.      range_num = 6 + adjust
  1055.  ENDIF
  1056.  ratio = sqrt(dist / dsqd)
  1057.  z = 29 * ratio + range_num * 30 + 1
  1058.     ENDIF
  1059.     iter = iter + 1
  1060.     z = z - iter
  1061.     bailout == 0 && |w| < 1000
  1062.   ;SOURCE: 281098.frm
  1063. }
  1064.  
  1065. FRM:bills_wonder  {
  1066.   z = 1/pixel, a = real(p1), b = imag(p1):
  1067.   ztemp = z^a - z^b
  1068.   z = (fn1(ztemp)^p2)/z
  1069.   |z| < real(p3)
  1070.   ;SOURCE: 061098.frm
  1071. }
  1072.  
  1073. FRM:bills_xy-trade6  {
  1074.   a = real(p1), b = imag(p1)
  1075.   c = real(p2), d = imag(p2)
  1076.   e = real(p3), f = imag(p3)
  1077.   z = pixel+c/pixel
  1078.   zold = pixel^e:
  1079.   x = (real(z)-real(zold))^a
  1080.   y = (imag(z)-imag(zold))^b
  1081.   zold = fn3(z)
  1082.   z = (y +flip(x))
  1083.   z = ( (fn1(z)) - (fn2(zold)) )^d
  1084.   |z| < f
  1085.   ;SOURCE: 281098.frm
  1086. }
  1087.  
  1088. - --------------------------------------------------------------
  1089. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1090. Post Message:   fractint@lists.xmission.com
  1091. Get Commands:   majordomo@lists.xmission.com "help"
  1092. Administrator:  twegner@phoenix.net
  1093. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1094.  
  1095. ------------------------------
  1096.  
  1097. End of fractint-digest V1 #361
  1098. ******************************
  1099.  
  1100.