home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / fractint / archive / v01.n040 < prev    next >
Internet Message Format  |  1997-12-22  |  41KB

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #40
  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       Tuesday, December 23 1997       Volume 01 : Number 040
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Sun, 21 Dec 1997 19:20:10 -0600
  18. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  19. Subject: (fractint) "Top Three" Images
  20.  
  21. Greetings,
  22.  
  23. We had twenty-six (26) ballots on this round of voting:
  24.  
  25. And without further ado, here are the "Three":
  26.  
  27.   Place  Image Name
  28.  
  29.      1.  PRESLAR2
  30.      2.  SGALLET2
  31.      3.  LINDAA03
  32.  
  33. Thank you for voting.
  34.  
  35. Merry Christmas, Cheerful Hanukkah, Joyful Kwanzaa, Glad Solstice and a
  36. Happy New Year.
  37.  
  38. P.N.L.
  39.  
  40. - -
  41. - ------------------------------------------------------------
  42. Thanks for using Fractint, The Fractals and Fractint Discussion List
  43. Post Message:   fractint@xmission.com
  44. Get Commands:   majordomo@xmission.com "help"
  45. Administrator:  twegner@phoenix.net
  46. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  47.  
  48. ------------------------------
  49.  
  50. Date: Sun, 21 Dec 1997 20:21:55 EST
  51. From: Clamcake <Clamcake@aol.com>
  52. Subject: (fractint) Lebesgue measure
  53.  
  54. Hi,
  55. Can someone possibly tell me what it means for a set to have a positive or  a
  56. zero Lebesgue measure and perhaps provide some examples of sets that do and
  57. sets that do not. Thank you.
  58.  
  59. - -
  60. - ------------------------------------------------------------
  61. Thanks for using Fractint, The Fractals and Fractint Discussion List
  62. Post Message:   fractint@xmission.com
  63. Get Commands:   majordomo@xmission.com "help"
  64. Administrator:  twegner@phoenix.net
  65. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  66.  
  67. ------------------------------
  68.  
  69. Date: Sun, 21 Dec 1997 21:21:01 -0500
  70. From: Lee Skinner <LeeHSkinner@compuserve.com>
  71. Subject: (fractint) 3DStalks_Julia&MonkFace
  72.  
  73. Paul Carlson asked me to post this message for him, as he is currently
  74. having problems sending mail to this mailing list.
  75. Lee Skinner
  76. Message from Paul Carlson follows:
  77. - -----------------------------------------------------------------------
  78. Here is a heavily commented .frm file that describes how my
  79. 3D Stalks rendering method works, along with a .par file
  80. that uses it do produce one of my favorite fractals.
  81.  
  82. The 3D Stalks method is an extension of Clifford Pickover's
  83. Epsilon Cross method.  In the 3d Stalks method, an index into
  84. one or more ranges of colors is computed based on the ratio
  85. of the distance of the trapped point from the nearest axis to
  86. 1/2 the width of the "trap."
  87.  
  88. 3DStalks_Julia (ORIGIN) {; Copyright (c) Paul W. Carlson, 1997
  89.     ;****************************************************
  90.     ; Always use floating point math and outside=3Dsumm.
  91.     ;
  92.     ; Parameters:
  93.     ;   p1 =3D the value of complex constant c in the equation
  94.     ;   real(p2) =3D a factor controlling the width of the stalks
  95.     ;              (this is actually 1/2 the width of the "trap")
  96.     ;   imag(p2) =3D bailout value for |w|
  97.     ;   real(p3) =3D number of color ranges
  98.     ;   imag(p3) =3D number of colors in each color range
  99.     ;
  100.     ; Note that the equation variable is w, not z.  Always
  101.     ; initialize z to zero.
  102.     ;****************************************************
  103.     w =3D pixel
  104.     c =3D p1
  105.     z =3D 0
  106.     bailout =3D 0
  107.     iter =3D 0
  108.     range_num =3D 0
  109.     ;****************************************************
  110.     ; In the accompanying par file, mnkyface.par,
  111.     ; we have 2 color ranges with 98 colors in each range
  112.     ; for a total of 196 colors. The first range starts at
  113.     ; color 1.  Pixels will use color 0 when |w| < bailout.
  114.     ; Other values can be used here as long as the product
  115.     ; of num_ranges times colors_in_range is less than 255.
  116.     ; Color 0 is reserved for the background color and color
  117.     ; 255 can be used for the inside color.
  118.     ;****************************************************
  119.     num_ranges =3D real(p3)
  120.     colors_in_range =3D imag(p3)
  121.     ;****************************************************
  122.     ; Real(p2) controls the width of the stalks.
  123.     ; These values will usually be in the range 0.001 to 0.5
  124.     ;****************************************************
  125.     stalk_width =3D real(p2)
  126.     index_factor =3D (colors_in_range - 1) / stalk_width:
  127.     ;****************************************************
  128.     ; The equation being iterated.  Almost any equation
  129.     ; that can be expressed in terms of a complex variable
  130.     ; and a complex constant will work with this method.
  131.     ; This line in the formula is the only one that needs
  132.     ; to be changed for other equations.
  133.     ; This example uses the "magnet2j" equation.
  134.     ;****************************************************
  135.     w=3D((w^3+3*w*(c-1)+(c-1)*(c-2))/(3*w*w+3*w*(c-2)+(c-1)*(c-2)+1))^2
  136.     ;****************************************************
  137.     ; Find which axis the orbit point is closest to.
  138.     ;****************************************************
  139.     IF (abs(real(w)) <=3D abs(imag(w)))
  140.         min_dist_to_axis =3D abs(real(w))
  141.     ELSE
  142.         min_dist_to_axis =3D abs(imag(w))
  143.     ENDIF
  144.     ;****************************************************
  145.     ; If the orbit point is within stalk_width of an axis,
  146.     ; set z to the index into the colormap and set the bailout flag.
  147.     ; Also, prevent bailout on the first two iterations.
  148.     ;****************************************************
  149.     IF (min_dist_to_axis < stalk_width && iter > 1)
  150.       z =3D index_factor * min_dist_to_axis + range_num * colors_in_range=
  151.  + 1
  152.       bailout =3D 1
  153.     ENDIF
  154.     ;****************************************************
  155.     ; Cycle through the range numbers (0 thru num_ranges - 1)
  156.     ; With two color ranges, even iterations use color
  157.     ; range 0, odd iterations use color range 1.
  158.     ;****************************************************
  159.     range_num =3D range_num + 1
  160.     IF (range_num =3D=3D num_ranges)
  161.         range_num =3D 0
  162.     ENDIF
  163.     ;****************************************************
  164.     ; Since we are using outside=3Dsumm, we have to subtract
  165.     ; the number of iterations from z.
  166.     ;****************************************************
  167.     iter =3D iter + 1
  168.     z =3D z - iter
  169.     ;****************************************************
  170.     ; Finally, we test for bailout
  171.     ;****************************************************
  172.     bailout =3D=3D 0  && |w| < imag(p2)
  173. }
  174.  
  175. MonkeyFace           { ; Copyright (c) Paul W. Carlson, 1997
  176.   reset=3D1930 type=3Dformula formulafile=3Djlstalks.frm
  177.   formulaname=3D3DStalks_Julia passes=3D1
  178.   corners=3D-3.153125/-1.332708/6.993125/8.358438
  179.   params=3D-0.25/0/0.1/10000/2/98
  180.   float=3Dy maxiter=3D200 inside=3D255 outside=3Dsumm
  181.   colors=3D000Vzz<96>0GGzVz<96>F0G000<57>000
  182.   }
  183.  
  184. I'll be glad to answer any questions about these.
  185. Paul Carlson
  186. - ------------------------------------------------------------------
  187.                 email   pjcarlsn@ix.netcom.com
  188.  
  189. WWW Fractal Galleries   http://sprott.physics.wisc.edu/carlson.htm
  190.                         http://fractal.mta.ca/fractals/carlson/
  191.                         http://www.cnam.fr/fractals/carlson.html
  192. - ------------------------------------------------------------------
  193.  
  194. - -
  195. - ------------------------------------------------------------
  196. Thanks for using Fractint, The Fractals and Fractint Discussion List
  197. Post Message:   fractint@xmission.com
  198. Get Commands:   majordomo@xmission.com "help"
  199. Administrator:  twegner@phoenix.net
  200. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  201.  
  202. ------------------------------
  203.  
  204. Date: Sun, 21 Dec 1997 19:27:46 -0800
  205. From: "Ester" <ehill1@san.rr.com>
  206. Subject: Re: (fractint) "Top Three" Images
  207.  
  208. The contest page has been updated.  
  209.  
  210. http://www.geocities.com/CapeCanaveral/Lab/3825/TopTen97.html
  211.  
  212. The final version of the Contest Construction Kit(TM) will be ready 
  213. in a week or two.  Then we can file this one away and who knows....
  214.  
  215. Great show guys and gals!
  216.  
  217. Jay
  218. PS.  Isn't Janet the one I browbeat into joining the contest....
  219. Hmmmmm???
  220.  
  221. - ----------
  222. > From: Paul N. Lee <Paul.N.Lee@Worldnet.att.net>
  223. > To: The Fractals and Fractint Discussion List
  224. <fractint@lists.xmission.com>
  225. > Subject: (fractint) "Top Three" Images
  226. > Date: Sunday, December 21, 1997 5:20 PM
  227. > Greetings,
  228. > We had twenty-six (26) ballots on this round of voting:
  229. > And without further ado, here are the "Three":
  230. >   Place  Image Name
  231. >      1.  PRESLAR2
  232. >      2.  SGALLET2
  233. >      3.  LINDAA03
  234. > Thank you for voting.
  235. > Merry Christmas, Cheerful Hanukkah, Joyful Kwanzaa, Glad Solstice and a
  236. > Happy New Year.
  237. > P.N.L.
  238. > -
  239.  
  240.  
  241. - -
  242. - ------------------------------------------------------------
  243. Thanks for using Fractint, The Fractals and Fractint Discussion List
  244. Post Message:   fractint@xmission.com
  245. Get Commands:   majordomo@xmission.com "help"
  246. Administrator:  twegner@phoenix.net
  247. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  248.  
  249. ------------------------------
  250.  
  251. Date: Sun, 21 Dec 1997 21:49:13 -0600
  252. From: Janet Preslar <preslar@memphisonline.com>
  253. Subject: Re: (fractint) "Top Three" Images
  254.  
  255. Jay wrote:
  256.  
  257. > The contest page has been updated.
  258. > http://www.geocities.com/CapeCanaveral/Lab/3825/TopTen97.html
  259.  
  260. <snip>
  261.  
  262. > PS.  Isn't Janet the one I browbeat into joining the contest....
  263. > Hmmmmm???
  264.  
  265. Yep! That's me! A week ago I was rendered speechless by making the top te=
  266. n. Now
  267. I'm in shock. I am greatly surprised and humbled =97 with so many wonderf=
  268. ul images
  269. to choose from, I had no idea mine would even be noticed. As several peop=
  270. le said
  271. before the voting began, it is a huge honor just to be in the company of =
  272. such
  273. great fractal artists, from whom I've learned so much in the twelve month=
  274. s since
  275. I saw my very first fractal. Thanks for everything you've taught me.
  276.  
  277. Best wishes to all for a happy holiday!
  278. Janet
  279.  
  280.  
  281.  
  282. - -
  283. - ------------------------------------------------------------
  284. Thanks for using Fractint, The Fractals and Fractint Discussion List
  285. Post Message:   fractint@xmission.com
  286. Get Commands:   majordomo@xmission.com "help"
  287. Administrator:  twegner@phoenix.net
  288. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  289.  
  290. ------------------------------
  291.  
  292. Date: Mon, 22 Dec 1997 00:13:33 -0500
  293. From: "Brian E. Jones" <bejones@netunlimited.net>
  294. Subject: Re: (fractint) "Top Three" Images
  295.  
  296. Hi Janet,
  297.  
  298. Congratulations!!!
  299.  
  300. Have a Merry Christmas!
  301.  
  302. Brian
  303. http://ourworld.compuserve.com/homepages/Brian_E_Jones
  304.  
  305.  
  306. - -
  307. - ------------------------------------------------------------
  308. Thanks for using Fractint, The Fractals and Fractint Discussion List
  309. Post Message:   fractint@xmission.com
  310. Get Commands:   majordomo@xmission.com "help"
  311. Administrator:  twegner@phoenix.net
  312. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  313.  
  314. ------------------------------
  315.  
  316. Date: Sun, 21 Dec 1997 23:56:07 -0600
  317. From: Janet Preslar <preslar@memphisonline.com>
  318. Subject: Re: (fractint) "Top Three" Images
  319.  
  320. Thanks!
  321.  
  322. You, too! (Have a Merry Christmas!)
  323.  
  324. Janet
  325.  
  326.  
  327. - -
  328. - ------------------------------------------------------------
  329. Thanks for using Fractint, The Fractals and Fractint Discussion List
  330. Post Message:   fractint@xmission.com
  331. Get Commands:   majordomo@xmission.com "help"
  332. Administrator:  twegner@phoenix.net
  333. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  334.  
  335. ------------------------------
  336.  
  337. Date: Mon, 22 Dec 1997 01:35:59 -0500
  338. From: Michael Sager <msager@eden.rutgers.edu>
  339. Subject: (fractint) Happy Holidays
  340.  
  341. Hi everyone - I'm really glad I joined this list, the contest images
  342. were great eye-candy and I find the discussions interesting.  I haven't
  343. contributed much to the list, so I figured I'd send something now,
  344. before I go home from Rutgers University for Christmas.  Here are come
  345. parameters for the contest formula that I've come up with since the
  346. contest.  I hope everyone enjoys them - my roommate did!  I'll try to
  347. contribute a little more next semester, but I don't know - I'll be
  348. taking 20 credits.  Justin K.- thanks for correcting my contest pars!
  349. - -Mike Sager
  350.  
  351.   metallic             { ; Whoa...trippy
  352.   reset=1960 type=formula formulafile=contest.frm
  353.   formulaname=contest4
  354.   center-mag=+0.32934353054332530/+0.00354225486261372/4943346
  355.   params=0/0 float=y maxiter=2048 inside=0 outside=atan
  356.   colors=00z00VVVV00UUUU00TSSS00SRRR00QQQQ00PPPP00OOOO00\
  357.   NMMM00LLLL00KKKK00JJJJ00IHHH00HGGG00FFFF00EEEE00DDDD00\
  358.   CBBB00AAAA00999900888800777700555500444400333300222200\
  359.   0<3>00111100222200333300444400555500555500666600777700\
  360.   888800999900AAAA00AAAA00BBBB00CCCC00DDDD00EEEE00FFFF00\
  361.   FFFF00GGGG00HHHH00IIII00JJJJ00KKKK00LLLL00LLLL00MMMM00\
  362.   NNNN00OOOO00PPPP00QQQQ00QQQQ00RRRR00SSSS00TTTT00UUUU00\
  363.   VVVV00VVVV00WWWW00XXXX00YYYY00ZZZZ00____00____00````00\
  364.   aaaa00bbbb00cccc00dddd00eeee00eeee00ffff00gggg00hhhh00\
  365.   iiii00jjjj00jjjj00kkkk00llll00mmmm00nnnn00oooo00oooo00\
  366.   pppp00qqqq00rrrr00ssss00tttt00tttt00uuuu00vvvv00wwww00\
  367.   xxxx00yyyy00zzzzzzz00zyyy00yxxx00xwww00wvvv00vttt00tss\
  368.   s00srrr00rqqq00qppp00onnn00nmmm00mlll00lkkk00jjjj00ihh\
  369.   h00hggg00gfff00eeee00dccc00cbbb00baaa00a```00____00ZYY\
  370.   Y00YXXX00XWWW
  371.   }
  372.  
  373. Spirals            { ; Spiky Spiral Things
  374.   reset=1960 type=formula formulafile=contest.frm
  375.   formulaname=contest4
  376.   center-mag=+0.32934346263812660/+0.00354215599061105/9966424
  377.   params=0/0 float=y maxiter=2048 inside=0 outside=atan
  378.   colors=0000800A00C80KE2202402442482A42A842046246646A48\
  379.   04C84SK4`U60066268468868C6A06A26CG6E66EA6EC6IE86086888\
  380.   48A88AA8C48GC8I0A00A64A80AA8ACAACCACGAMGC40CC2CECCEECE\
  381.   ICOKCWQE60EA0EE4EE8EG0EGEEGGEKIEKMEM8G40G60GA6GC2GIGGM\
  382.   KGQSIA0IC8IE4IOKIb`KA8KC4KE0KG6KKEKQOKSEKU4KUWKWUME2MS\
  383.   OMffOA0OK6OKAOUUO`QQA0QC6QI6QIAQQKQSCSM2SOASYYSY`SdbSf\
  384.   UUI6UMAUWYUYQU`GWOCWSEWbbWbfWjlYK0YMAYS4YSCYbQYbUYdGYd\
  385.   d`OC`WM`YG`bd`dWbUIbhhbj`bprdQ8dS0d`Qd`UdbKdfhdjSfUGfW\
  386.   8fhjfhnfllhO4h`MhllhnnhpjjYMj`Cjb4jfWjhbjlrjvtlS8lU0l`\
  387.   MlbEljSlphlpplrbnpvnrrpWCpdQpfEphSpnWpnlpttpxrpzvpzzrY\
  388.   Er`6rdMrh4rndrprrtzrvvrzltYEtlStrxttltxxvdEvjWvlKvnAvn\
  389.   YvptvrlvtfvtrvtzvvhvvnvxzvzvvzzxbExfGxrvxvhxvtxvxxxWxx\
  390.   pzjGzjOzrWztQztfzvfzvpzvrzvzzxjzxrzxvzxzzzrzzvzzxzzzB6\
  391.   5ywz310zzzusyxbFLB8CEJxruzxz300jlqACHzvrpzvfhmzvy46Bnp\
  392.   u249sqwvps020040064
  393.   }
  394.  
  395. Rug                { ; Looks like some kind of fancy rug
  396.   reset=1960 type=formula formulafile=contest.frm
  397.   formulaname=contest4
  398.  
  399. center-mag=-1.64687943103130100/-0.00000000004144189/4.667908e+007/1.364\
  400.   3/42.063/7.942 params=0/0 float=y maxiter=1024 inside=0 outside=atan
  401.   colors=0000200400640800A00C80KE2202402442482A42A842046\
  402.   246646A4804C84SK4`U60066268468868C6A06A26CG6E66EA6EC6I\
  403.   E8608688848A88AA8C48GC8I0A00A64A80AA8ACAACCACGAMGC40CC\
  404.   2CECCEECEICOKCWQE60EA0EE4EE8EG0EGEEGGEKIEKMEM8G40G60GA\
  405.   6GC2GIGGMKGQSIA0IC8IE4IOKIb`KA8KC4KE0KG6KKEKQOKSEKU4KU\
  406.   WKWUME2MSOMffOA0OK6OKAOUUO`QQA0QC6QI6QIAQQKQSCSM2SOASY\
  407.   YSY`SdbSfUUI6UMAUWYUYQU`GWOCWSEWbbWbfWjlYK0YMAYS4YSCYb\
  408.   QYbUYdGYdd`OC`WM`YG`bd`dWbUIbhhbj`bprdQ8dS0d`Qd`UdbKdf\
  409.   hdjSfUGfW8fhjfhnfllhO4h`MhllhnnhpjjYMj`Cjb4jfWjhbjlrjv\
  410.   tlS8lU0l`MlbEljSlphlpplrbnpvnrrpWCpdQpfEphSpnWpnlpttpx\
  411.   rpzvpzzrYEr`6rdMrh4rndrprrtzrvvrzltYEtlStrxttltxxvdEvj\
  412.   WvlKvnAvnYvptvrlvtfvtrvtzvvhvvnvxzvzvvzzxbExfGxrvxvhxv\
  413.   txvxxxWxxpzjGzjOzrWztQztfzvfzvpzvrzvzzxjzxrzxvzxzzzrzz\
  414.   vzzxzzzB65ywz310zzzusyxbFLB8CEJxruzxz300jlqACHzvrpzvfh\
  415.   mzvy46Bnpu249sqwvps
  416.   }
  417.  
  418. Hairs              { ; No comment
  419.   reset=1960 type=formula formulafile=contest.frm
  420.   formulaname=contest4
  421.   center-mag=+0.46824853276622360/+0.87638302029325500/37.7397/1/-35
  422.   params=0/0 float=y maxiter=2048 inside=epsiloncross outside=atan
  423.   decomp=256
  424.   colors=000000000000<3>B93we3GE5<14>uoJ<29>n`2n_1mZ0lY0\
  425.   <197>000
  426.   cyclerange=1/8
  427.   }
  428.  
  429. - -
  430. - ------------------------------------------------------------
  431. Thanks for using Fractint, The Fractals and Fractint Discussion List
  432. Post Message:   fractint@xmission.com
  433. Get Commands:   majordomo@xmission.com "help"
  434. Administrator:  twegner@phoenix.net
  435. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  436.  
  437. ------------------------------
  438.  
  439. Date: Sun, 21 Dec 1997 22:55:40 -0800
  440. From: "Ester" <ehill1@san.rr.com>
  441. Subject: (fractint) Happy Holidays snowman
  442.  
  443. Here is another snowman.
  444.  
  445. Jay
  446.  
  447. SnowMan350            { ; Snowman 350  Jay Hill 1997
  448.   reset=1960 type=mandel
  449.   center-mag=-3.12933/9.04832e-015/8.195459/0.9657/90 params=0/0
  450.   float=y maxiter=256 inside=250 outside=summ invert=1/-3.5/0
  451.   colors=0cwBOzmuzrfzGuiUmzXuzcbzluzQ\
  452.   kzltz<2>ktydeyjty<93>RfoRfoRfp<13>Ucw\
  453.   UcwUcwUbwTbw<90>11w00w00u<26>004zzz000000000AwKAvK
  454.   savename=snow350
  455.   }
  456.  
  457.  
  458.  
  459. - -
  460. - ------------------------------------------------------------
  461. Thanks for using Fractint, The Fractals and Fractint Discussion List
  462. Post Message:   fractint@xmission.com
  463. Get Commands:   majordomo@xmission.com "help"
  464. Administrator:  twegner@phoenix.net
  465. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  466.  
  467. ------------------------------
  468.  
  469. Date: Mon, 22 Dec 1997 02:08:34 -0500 (EST)
  470. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  471. Subject: (fractint) Tip of the Day
  472.  
  473. If you do a decomp image, esp. a 256 decomp image, and your entire palette
  474. is NOT being used: turn off logmap :-)
  475.  
  476.  
  477. - --
  478.     .*.  Friendship, companionship, love, and having fun are the reasons for
  479.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  480.     `*'  Send any and all mail with attachments to the hotmail address please.
  481. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  482.  
  483. - -
  484. - ------------------------------------------------------------
  485. Thanks for using Fractint, The Fractals and Fractint Discussion List
  486. Post Message:   fractint@xmission.com
  487. Get Commands:   majordomo@xmission.com "help"
  488. Administrator:  twegner@phoenix.net
  489. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  490.  
  491. ------------------------------
  492.  
  493. Date: Mon, 22 Dec 1997 02:10:11 -0500 (EST)
  494. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  495. Subject: (fractint) High precision transcendental functions
  496.  
  497. I'm working on a high-precision math library that includes transcendental
  498. functions: exp, log, arbitrary powers, roots, trig.
  499.  
  500. I have reasonably nice fast convergent calculations for the library's
  501. recalculation of pi and e to biogger precision whenever more precision is
  502. needed. Pi turns out to work out faster using Newton to solve sin(x)=0 for
  503. the initial value x=3, using a Maclaurin series for sin, than using
  504. 1-1/3+1/5-1/7... e is had from 1/n!.
  505. I also have good convergent Taylor series for cos (and obviously sin),
  506. sinh, cosh, and thus tan, sec, csc, cot, tanh, csch, coth, and sech.
  507. Exp works nicely, and sin^-1 and cos^-1 do also.
  508. sinh-1 and cosh-1 are evaluated in terms of logs.
  509.  
  510. The trouble is here: my atan converges quite slowly. (It uses a Maclaurin
  511. series about 0 for |x|<=1 and for |x|>1, evaluates atan(-1/x)-pi/2, in
  512. which |-1/x|<=1.) So does my log (Newton's method to solve e^y-x=0,
  513. with |x|>e handled as -log(1/x)... but a Maclaurin series about 1 with the
  514. same -log(1/x) trick to handle x>1 promised to be even slower).
  515. And I am not aware of a converging series or iteration for csc-1, sec-1,
  516. tanh-1, csch-1, or sech-1, nor cot-1 and coth-1. At least, cot-1 x is just
  517. pi/2-tan-1 x, and I can probably link csc-1 and sec-1, coth-1 and tanh-1,
  518. and csch-1 and sech-1 similarly.
  519.  
  520. So, can anyone provide:
  521.  
  522.   * Iterative methods to converge quickly for all x to
  523.     * tan-1 x
  524.     * tanh-1 x
  525.     * sec-1 x
  526.     * sech-1 x
  527.     * ln x
  528.   * Information about whether my sin-1 and cos-1 Maclaurin series, or
  529.     those for sin, cos, exp can be improved upon (all are expanded about 0
  530.     currently), or the Newton method for pi?
  531.  
  532.  
  533. - --
  534.     .*.  Friendship, companionship, love, and having fun are the reasons for
  535.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  536.     `*'  Send any and all mail with attachments to the hotmail address please.
  537. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  538.  
  539. - -
  540. - ------------------------------------------------------------
  541. Thanks for using Fractint, The Fractals and Fractint Discussion List
  542. Post Message:   fractint@xmission.com
  543. Get Commands:   majordomo@xmission.com "help"
  544. Administrator:  twegner@phoenix.net
  545. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  546.  
  547. ------------------------------
  548.  
  549. Date: Mon, 22 Dec 1997 02:16:48 -0500 (EST)
  550. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  551. Subject: (fractint) ProtoMatter
  552.  
  553. The current state of things:
  554.  
  555. * Design decisions:
  556.   ProtoMatter will be written mostly in Java. Before you all freak out,
  557.   read on: the built in fractal types will, of course, be written as JNI
  558.   (Java Native Interface) methods written in C/asm. High speed performance
  559.   will thus be available for Win95/NT and Unix platforms using DLLs or other
  560.   native dynamic libraries. Formula types will compile into Java, and thus
  561.   run at speeds similar to Fractint formula types, which use an
  562.   interpreter or bytecode compiler themselves.
  563.   Plugin architecture: Plugins will be available as .class/DLL pairs, the
  564.   .class portable, the DLL platform dependent.
  565. * Platforms:
  566.   Any platform supporting Java will be supported. High precision
  567.   (deepzoom) math will be supported on all platforms. High speed native code
  568.   will be supported on any platform which supports a Java runtime capable of
  569.   loading native methods, and for which the appropriate DLL type file for
  570.   the fractal class is located in the library path at run time. (Java
  571.   versions of the same algorithms will run otherwise.)
  572. * Scripting: Some kind of scripting language for parameter files and more
  573.   will exist. It may consist of a java runtime environment capable of
  574.   on-the-fly compilation.
  575.  
  576.  
  577. - --
  578.     .*.  Friendship, companionship, love, and having fun are the reasons for
  579.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  580.     `*'  Send any and all mail with attachments to the hotmail address please.
  581. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  582.  
  583. - -
  584. - ------------------------------------------------------------
  585. Thanks for using Fractint, The Fractals and Fractint Discussion List
  586. Post Message:   fractint@xmission.com
  587. Get Commands:   majordomo@xmission.com "help"
  588. Administrator:  twegner@phoenix.net
  589. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  590.  
  591. ------------------------------
  592.  
  593. Date: Mon, 22 Dec 1997 03:08:27 -0500 (EST)
  594. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  595. Subject: Re: (fractint) Autozooming, was: M-set field lines?
  596.  
  597. Path of shallowest ascent: Will enter whirlpool. Ditto steepest.
  598.  
  599. Heuristic tricks:
  600.  
  601. First, model an exponential random variable. (See a text on probability
  602. theory and statistics for algorithms about how to convert uniform random
  603. numbers such as rand() gives into exponential ones.)
  604. Use your ranexp() to obtain a time. Go for that time up a shallow ascent,
  605. then switch to a steep one or to a random direction of motion. Follow that
  606. for a SHORT time. Then perhaps go back to step 1, or perhaps terminate.
  607.  
  608.  
  609. Other ideas: Start at full M-set. Inspect some points. Pick one on the set
  610. and one not on, pick halfway point, choose it and out if in, or it and in
  611. if out. Repeat subdividing to home in on M boundary in current image.
  612. After a few such divisions stop and center a zoom there. Repeat for a
  613. while. (Exp variable again?) Then find highest dwell point in image such
  614. that there is NO member of M within a significant distance, center a zoom
  615. there, then keep zooming at highest dwell... look for M to reappear, then
  616. a midget has been found, if so repeat from step 1.
  617.  
  618. - --
  619.     .*.  Friendship, companionship, love, and having fun are the reasons for
  620.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  621.     `*'  Send any and all mail with attachments to the hotmail address please.
  622. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  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: Mon, 22 Dec 1997 03:21:25 -0500 (EST)
  635. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  636. Subject: Re: (fractint) Colors of Infinity
  637.  
  638. Lee Skinner writes:
  639. [stuff]
  640.  
  641. Congrats!
  642.  
  643. Just don't bore them to death with a 2^180 deepzoom... not unless they
  644. supply you with an Alpha/Risc 400MHz or something. :-)
  645.  
  646.  
  647. - --
  648.     .*.  Friendship, companionship, love, and having fun are the reasons for
  649.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  650.     `*'  Send any and all mail with attachments to the hotmail address please.
  651. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  652.  
  653. - -
  654. - ------------------------------------------------------------
  655. Thanks for using Fractint, The Fractals and Fractint Discussion List
  656. Post Message:   fractint@xmission.com
  657. Get Commands:   majordomo@xmission.com "help"
  658. Administrator:  twegner@phoenix.net
  659. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  660.  
  661. ------------------------------
  662.  
  663. Date: Mon, 22 Dec 1997 03:23:26 -0500 (EST)
  664. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  665. Subject: Re: (fractint) Clouds Over Shiprock
  666.  
  667. >I really wanted to view the fractal "Clouds Over Shiprock"
  668. >( I like Shiprock!) but got an error message when I tried to
  669. >generate the fractal.  I have solved this problem for most
  670. >of the others.  I put clouds as a .par file and the formula as
  671. >a .frm file but when I tried to run it it said "oops I couldn't
  672. >understand the argument pixinv."
  673.  
  674. Did you try it on the latest Fractint, 19.6?
  675.  
  676.  
  677. - --
  678.     .*.  Friendship, companionship, love, and having fun are the reasons for
  679.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  680.     `*'  Send any and all mail with attachments to the hotmail address please.
  681. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  682.  
  683. - -
  684. - ------------------------------------------------------------
  685. Thanks for using Fractint, The Fractals and Fractint Discussion List
  686. Post Message:   fractint@xmission.com
  687. Get Commands:   majordomo@xmission.com "help"
  688. Administrator:  twegner@phoenix.net
  689. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  690.  
  691. ------------------------------
  692.  
  693. Date: Mon, 22 Dec 1997 06:16:44 EST
  694. From: JulianPA <JulianPA@aol.com>
  695. Subject: (fractint) Christmas Ornament
  696.  
  697. > Wizzle <wizzle@cci-internet.com> writes:
  698. >Subject: (fractint) Christmas Ornament
  699. >
  700. >I think I have a winner here!!!  I was messing around with Jill Lawson's
  701. >gif's this morning and managed to produce this Christmas image using one of
  702. >her files by adding a color map of mine....
  703.  
  704. Angela,
  705. I think you have a winner too.  I love the spherical 3D shape!
  706.  
  707. I've attached a par for the same image with a slightly different shadowing.
  708. You may like it better or worse according to your taste.
  709.  
  710. Julian
  711.  
  712. >Jim Smith <jim@oz.net> writes:
  713. >Subject: Re: (fractint) Christmas Ornament (refering to Wizzle's original
  714. image)
  715. >
  716. >Very, very nice! Anyone have any suggestions on how to keep the background
  717. >from 'flickering" when it is color-cycled? Xfractint 3.02 under X11R6 at 8bpp
  718. >(sorry, old display).
  719.  
  720. Jim,
  721. I changed the inside color from 1 to zero.  The background will remain a
  722. constant color, and shouldn't flicker anymore.
  723.  
  724. Julian
  725.  
  726. - -------------------
  727. Julian Adamaitis
  728.  
  729. Fractelligent Designs
  730. visit "Julian's Fractal Page"
  731. http://members.aol.com/julianpa
  732. julianpa@aol.com
  733.  
  734. ==================================================================
  735.  
  736. ornament-$         { ; Re-Coloring of Wizzle's Image Posted to Fractint List
  737.                      ; by Julian Adamaitis
  738.   reset=1960 type=mandelfn function=ident
  739.   center-mag=-0.00219726999999992/-0.00041961500000021/0.2032378/1/90
  740.   params=0/0 inside=0 invert=4.5/0/0 decomp=128
  741.   colors=111Z56<4>l56o56s55w64<13>zwU<9>885<15>3wU<15>0A4<20>000100300<12>\
  742.   P03R03T03V03X03Z04<11>w08<9>X56<4>6A0<7>1wU<15>0A03C2992<2>UA0<15>xzc<13\
  743.   >KA0000<46>000330<13>110
  744.   }
  745.  
  746.  
  747. ===================================================================
  748.  
  749.  
  750. - -
  751. - ------------------------------------------------------------
  752. Thanks for using Fractint, The Fractals and Fractint Discussion List
  753. Post Message:   fractint@xmission.com
  754. Get Commands:   majordomo@xmission.com "help"
  755. Administrator:  twegner@phoenix.net
  756. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  757.  
  758. ------------------------------
  759.  
  760. Date: Mon, 22 Dec 1997 12:35:50 EST
  761. From: KivrynH <KivrynH@aol.com>
  762. Subject: Re: (fractint) "Top Three" Images
  763.  
  764. Hi Janet,
  765.  
  766. Congratulations and happy holidays.  Do you have a web page?  If so, could you
  767. please post it?  Thanks
  768.  
  769. Kivryn
  770.  
  771. - -
  772. - ------------------------------------------------------------
  773. Thanks for using Fractint, The Fractals and Fractint Discussion List
  774. Post Message:   fractint@xmission.com
  775. Get Commands:   majordomo@xmission.com "help"
  776. Administrator:  twegner@phoenix.net
  777. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  778.  
  779. ------------------------------
  780.  
  781. Date: Mon, 22 Dec 1997 12:37:38 -0600
  782. From: Janet Preslar <preslar@memphisonline.com>
  783. Subject: Re: (fractint) "Top Three" Images
  784.  
  785. KivrynH wrote:
  786.  
  787. > Hi Janet,
  788. >
  789. > Congratulations and happy holidays.  Do you have a web page?  If so, could you
  790. >
  791. > please post it?  Thanks
  792.  
  793. Thanks. My web page is http://www.ParkeNet.org/jp
  794.  
  795. Janet
  796.  
  797.  
  798. - -
  799. - ------------------------------------------------------------
  800. Thanks for using Fractint, The Fractals and Fractint Discussion List
  801. Post Message:   fractint@xmission.com
  802. Get Commands:   majordomo@xmission.com "help"
  803. Administrator:  twegner@phoenix.net
  804. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  805.  
  806. ------------------------------
  807.  
  808. Date: Mon, 22 Dec 1997 15:20:45 -0500
  809. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  810. Subject: Re: (fractint) "Top Three" Images
  811.  
  812. Hi All,
  813.  
  814.   Congratulations, Janet!
  815.  
  816.   Thanks for all these wonderful images and for Jay's and Paul's work.
  817.  
  818.   Merry Christmas to all of you!
  819.  
  820.         - Sylvie
  821.  
  822. - -
  823. - ------------------------------------------------------------
  824. Thanks for using Fractint, The Fractals and Fractint Discussion List
  825. Post Message:   fractint@xmission.com
  826. Get Commands:   majordomo@xmission.com "help"
  827. Administrator:  twegner@phoenix.net
  828. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  829.  
  830. ------------------------------
  831.  
  832. Date: Mon, 22 Dec 1997 11:26:10 -0700
  833. From: Rich Thomson <rthomson@ptc.com>
  834. Subject: Re: (fractint) High precision transcendental functions 
  835.  
  836. Paul, interesting that you should ask about this as I was beginning to
  837. explore along the same lines.  However, I've never delved much into
  838. the details of implementing transcendental functions.  When looking
  839. around at various places (I was looking at assembly code for digital
  840. signal processors, namely TI's TMS320C50 for instance), lots of the
  841. programs given referred to things like the "Handbook of Elemental
  842. Functions" (or something like that; I can dig out the exact title if
  843. you like).
  844.  
  845. Basically I got the impression that everything was done with power
  846. series.  However, these programs didn't discuss the convergence
  847. characteristics of the series for various ranges of argument.  (I have
  848. a feeling that to handle "any argument" as you requested, that you
  849. might need to select one algorithm from a collection of several
  850. depending on the argument.)  I have those files at home (I picked up
  851. a TMS320C50 evaluation kit for $60 this year), so I can get the name
  852. of the referenced book if it would help.
  853.  
  854. Paul Derbyshire wrote:
  855. > So, can anyone provide:
  856. >   * Iterative methods to converge quickly for all x to
  857. >     * tan-1 x
  858. >     * tanh-1 x
  859. >     * sec-1 x
  860. >     * sech-1 x
  861. >     * ln x
  862.  
  863. For the trig functions can you avoid special series by using trig
  864. identities?  I imagine you've already looked into that...
  865.  
  866. >   * Information about whether my sin-1 and cos-1 Maclaurin series, or
  867. >     those for sin, cos, exp can be improved upon (all are expanded about 0
  868. >     currently), or the Newton method for pi?
  869.  
  870. I think for this one needs to consult a book like the one I mentioned
  871. above.  This is an interesting aspect of computation, because to my
  872. knowledge, noone has implemented full trig support for arbitrary
  873. precision floating point.  I think most implementations depend on the
  874. fact that only a few iterations (and polynomial terms) are needed to
  875. achieve 8 or 16 decimal digits of accuracy.
  876.  
  877. I just asked around the office (there's a bunch of math guys around
  878. here) and the general consensus is that trig functions are all
  879. implemented as a taylor series expansion around 0 (a MacLaurin series
  880. as you are using).  It may be possible to improve upon a Taylor
  881. series, but I don't know.  If I find out anything further, I will be
  882. sure to send a message to fractint.  Also, if you find out anything
  883. further, Paul, would you be so kind as to report your results to the
  884. fractint list?  Thanks.
  885. - --
  886.   ``Between stimulus and response is the will to choose.''  -- Steven Covey
  887.  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  888.      3D Paint: The Power to Create in 3D;        Rich Thomson
  889.      email me for more info                rthomson@ptc.com
  890.  
  891. - -
  892. - ------------------------------------------------------------
  893. Thanks for using Fractint, The Fractals and Fractint Discussion List
  894. Post Message:   fractint@xmission.com
  895. Get Commands:   majordomo@xmission.com "help"
  896. Administrator:  twegner@phoenix.net
  897. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  898.  
  899. ------------------------------
  900.  
  901. Date: Mon, 22 Dec 1997 17:17:17 -0500
  902. From: Jack Valero <jval@globalserve.net>
  903. Subject: Re: (fractint) "Top Three" Images
  904.  
  905. I just saw the results of the contest.
  906. Congratulations Linda and Sylvie.
  907. And a special congratulations to you, Janet!
  908. Once again the list members have demonstrated
  909. their excellent taste!
  910.  
  911.  
  912. Regards - Jack
  913.  
  914. visit our fractal gallery: http://www.globalserve.net/~jval/
  915.  
  916. - -
  917. - ------------------------------------------------------------
  918. Thanks for using Fractint, The Fractals and Fractint Discussion List
  919. Post Message:   fractint@xmission.com
  920. Get Commands:   majordomo@xmission.com "help"
  921. Administrator:  twegner@phoenix.net
  922. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  923.  
  924. ------------------------------
  925.  
  926. Date: Mon, 22 Dec 1997 12:05:40 -0700
  927. From: Rich Thomson <rthomson@ptc.com>
  928. Subject: Re: (fractint) Lebesgue measure 
  929.  
  930. In article <8c8dd469.349dc0b5@aol.com> ,
  931.     Clamcake <Clamcake@aol.com>  writes:
  932. > Can someone possibly tell me what it means for a set to have a positive or  a
  933. > zero Lebesgue measure and perhaps provide some examples of sets that do and
  934. > sets that do not. Thank you.
  935.  
  936. The standard "middle thirds" Cantor set construction on the real line
  937. has zero Lebesgue measure.
  938.  
  939. The unit interval [0,1] has a Lebesgue measure of 1.0.
  940.  
  941. The intervals (a,b), [a,b), (a, b], and [a,b] have Lebesgue measure of
  942. b-a.
  943.  
  944. The one-dimensional Lebesgue measure corresponds to length.
  945. The two-dimensional Lebesgue measure corresponds to area.
  946. The three-dimensional Lebesgue measure corresponds to volume.
  947. etc.
  948.  
  949. For more details, I recommend reading "Fractal Geometry", by Kenneth
  950. Falconer.  It covers Lebesgue measures.
  951. - --
  952.   ``Between stimulus and response is the will to choose.''  -- Steven Covey
  953.  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  954.      3D Paint: The Power to Create in 3D;        Rich Thomson
  955.      email me for more info                rthomson@ptc.com
  956.  
  957. - -
  958. - ------------------------------------------------------------
  959. Thanks for using Fractint, The Fractals and Fractint Discussion List
  960. Post Message:   fractint@xmission.com
  961. Get Commands:   majordomo@xmission.com "help"
  962. Administrator:  twegner@phoenix.net
  963. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  964.  
  965. ------------------------------
  966.  
  967. Date: Mon, 22 Dec 1997 12:33:36 -0700
  968. From: Rich Thomson <rthomson@ptc.com>
  969. Subject: Re: (fractint) Christmas Ornament 
  970.  
  971. In article <3.0.32.19971221092132.00699b64@cci-internet.com> ,
  972.     Wizzle <wizzle@cci-internet.com>  writes:
  973. > I think I have a winner here!!!
  974.  
  975. Very nice... the edges look great when anti-aliased....  If you can
  976. stand to download the 809K PNG, check it out...
  977. <URL: http://www.xmission.com/~legalize/fractals/>
  978. - --
  979.   ``Between stimulus and response is the will to choose.''  -- Steven Covey
  980.  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  981.      3D Paint: The Power to Create in 3D;        Rich Thomson
  982.      email me for more info                rthomson@ptc.com
  983.  
  984. - -
  985. - ------------------------------------------------------------
  986. Thanks for using Fractint, The Fractals and Fractint Discussion List
  987. Post Message:   fractint@xmission.com
  988. Get Commands:   majordomo@xmission.com "help"
  989. Administrator:  twegner@phoenix.net
  990. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  991.  
  992. ------------------------------
  993.  
  994. Date: Mon, 22 Dec 1997 16:28:44 -0600
  995. From: Janet Preslar <preslar@memphisonline.com>
  996. Subject: Re: (fractint) "Top Three" Images
  997.  
  998. Sylvie Gallet wrote:
  999.  
  1000. >Congratulations, Janet!
  1001.  
  1002. And to you. You are an inspiration!
  1003.  
  1004. Jack Valero wrote:
  1005.  
  1006. > I just saw the results of the contest.
  1007. > Congratulations Linda and Sylvie.
  1008. > And a special congratulations to you, Janet!
  1009. > Once again the list members have demonstrated
  1010. > their excellent taste!
  1011.  
  1012. Thanks for your kind words.
  1013.  
  1014. Janet
  1015. preslar@memphisonline.com
  1016. http://www.ParkeNet.org/jp
  1017.  
  1018.  
  1019. - -
  1020. - ------------------------------------------------------------
  1021. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1022. Post Message:   fractint@xmission.com
  1023. Get Commands:   majordomo@xmission.com "help"
  1024. Administrator:  twegner@phoenix.net
  1025. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1026.  
  1027. ------------------------------
  1028.  
  1029. Date: Mon, 22 Dec 1997 17:29:19 EST
  1030. From: T R Moe <TRMoe@aol.com>
  1031. Subject: (fractint) top three
  1032.  
  1033. congratulations to Janet, Sylvie, and Linda. Nice work all the way around.
  1034.  
  1035. - -
  1036. - ------------------------------------------------------------
  1037. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1038. Post Message:   fractint@xmission.com
  1039. Get Commands:   majordomo@xmission.com "help"
  1040. Administrator:  twegner@phoenix.net
  1041. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1042.  
  1043. ------------------------------
  1044.  
  1045. Date: Mon, 22 Dec 1997 14:52:51 -0800
  1046. From: kathy roth <kroth@well.com>
  1047. Subject: Re: (fractint) Clouds Over Shiprock
  1048.  
  1049. Paul Derbyshire wrote:
  1050.  
  1051. > >I really wanted to view the fractal "Clouds Over Shiprock"
  1052. >
  1053. >
  1054. > >  I put clouds as a .par file and the formula as
  1055. > >a .frm file but when I tried to run it it said "oops I couldn't
  1056. > >understand the argument pixinv."
  1057. >
  1058. > Did you try it on the latest Fractint, 19.6?
  1059. >
  1060. > --
  1061. >     .*.  Friendship, companionship, love, and having fun are the reasons for
  1062. >  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  1063. >     `*'  Send any and all mail with attachments to the hotmail address please.
  1064. > Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  1065. >
  1066. > -
  1067. > ------------------------------------------------------------
  1068. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  1069. > Post Message:   fractint@xmission.com
  1070. > Get Commands:   majordomo@xmission.com "help"
  1071. > Administrator:  twegner@phoenix.net
  1072. > Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1073.  
  1074.  
  1075.  
  1076.  
  1077. - -
  1078. - ------------------------------------------------------------
  1079. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1080. Post Message:   fractint@xmission.com
  1081. Get Commands:   majordomo@xmission.com "help"
  1082. Administrator:  twegner@phoenix.net
  1083. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1084.  
  1085. ------------------------------
  1086.  
  1087. Date: Mon, 22 Dec 1997 15:06:44 -0800
  1088. From: kathy roth <kroth@well.com>
  1089. Subject: Re: (fractint) Clouds Over Shiprock
  1090.  
  1091. Paul Derbyshire wrote:
  1092.  
  1093. > >>I really wanted to view the fractal "Clouds Over Shiprock"
  1094. >
  1095. >
  1096. > >>I put clouds as a .par file and the formula as
  1097. > >>a .frm file but when I tried to run it it said "oops I couldn't
  1098. > >>understand the argument pixinv."
  1099. >
  1100. > >Did you try it on the latest Fractint, 19.6?
  1101.  
  1102. Yes, and I am wondering if that is part of what the problemis.  Are some of the
  1103. pars being written on earlier versions?
  1104.      Sorry about sending the previous partial message accidentally.
  1105. I hope you all have a wonderful holiday.
  1106.  
  1107. >
  1108. >
  1109.  
  1110.  
  1111.  
  1112.  
  1113. - -
  1114. - ------------------------------------------------------------
  1115. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1116. Post Message:   fractint@xmission.com
  1117. Get Commands:   majordomo@xmission.com "help"
  1118. Administrator:  twegner@phoenix.net
  1119. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1120.  
  1121. ------------------------------
  1122.  
  1123. End of fractint-digest V1 #40
  1124. *****************************
  1125.  
  1126.