home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / fractdev / archive / fractdev.200011 < prev    next >
Internet Message Format  |  2000-11-28  |  41KB

  1. From: "=?ISO-8859-1?B?UHVza+FzIElzdHbhbiBqci4=?=" <pataki.v@matavnet.hu>
  2. Subject: I have code for improved cellular automata
  3. Date: 04 Nov 2000 22:24:00 +0100
  4.  
  5. I have Borland Pascal code for 2 types of an improved cellular automata.
  6.  
  7. The first is another version of the linear cellular automata - a bit like
  8. type=cellular already built in - but with improvements: the cell being
  9. recalculated can be excluded from calculating the 'neighborhood', it works
  10. without specifying a subtype: the radius can be specified, and the number of
  11. possible cell numbers is 0 to 35.
  12.  
  13. The second is a 2D extension: it works in a plane, not a line and it draws
  14. the last state of the plane. The improvements on the linear type are also
  15. there.
  16.  
  17. I'm looking for someone who could integrate it into Fractint, because I'm
  18. not familiar with the Fractint source. It would need new input routines: the
  19. improved linear type works with true string values - can also contain
  20. characters A..Z, and the range can maybe extended - not values decoded from
  21. a float number, and the 2D version needs a 2D array editor for the 2D 'seed'
  22. array.
  23.  
  24. If anyone is interested, I can post the source, together with the compiled
  25. files - some of you may not have BP, - it's about 25 kB. I release it for
  26. integrating into Fractint, _NOT_ for making commercial programs!
  27.  
  28. If you wish to post it to the whole list, please let me know.
  29.  
  30.  
  31.  
  32.  
  33. Thanks for using Fractdev, The Fractint Developer's Discussion List
  34. Post Message:   fractdev@lists.xmission.com
  35. Get Commands:   majordomo@lists.xmission.com "help"
  36. Administrator:  twegner@fractint.org
  37. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  38.  
  39.  
  40. -------------------------------------------------------------------------------
  41.  
  42. From: "Jonathan Osuch" <osuchj@qwest.net>
  43. Subject: Fractint bugs of the month
  44. Date: 05 Nov 2000 07:54:55 -0600
  45.  
  46. Folks,
  47.  
  48. Here is a list of Fractint bugs that I know about and haven't been able to
  49. fix:
  50.  
  51. 1.  The fractal type Circle locks up the machine when used with
  52. inside=startrail.
  53.  
  54. 2.  Two parser optimization problems:
  55.      (a)  Flipped image when a constant a=1 is used versus a=(1,0).
  56.  
  57. bad_image {; Jim Muth  Don't try this at home.
  58.  a=1, z=(-1/0.95)^(-1/9.9):
  59.  z=a*(10*(z^(-1.1))+0.95*(z^(-11)))+1/pixel,
  60.  |z| < 500
  61. }
  62.  
  63.      (b)  Large bailout values cause some areas to be incorrectly identified
  64. as 'inside'.
  65.  
  66. frm:bailoutproblem {
  67. ;p1 is the bailout
  68. bail=real(p1),
  69. z=c=pixel:
  70. z=z*fn1(z)+c
  71. |z|<bail
  72. }
  73.  
  74. bad_bailout { ; the effect is very strong
  75.   reset=2000 type=formula
  76.   formulaname=bailoutproblem center-mag=0/0/0.6666667
  77.   params=10000000000/0 float=y maxiter=255 inside=0 sound=off
  78.   }
  79.  
  80. 3.  When restoring an incomplete image made with the formula type, if the
  81. formula can't be found, the calculation continues anyway.  Which, obviously,
  82. doesn't create the desired image.  The report I received stated that the
  83. image was disposed of, and this problem occurs with ifs and lsystem also.  I
  84. have not verified the problem with ifs and lsystem.
  85.  
  86. Please let me know if I've forgotten any obvious bugs.
  87.  
  88. Jonathan
  89.  
  90.  
  91.  
  92. Thanks for using Fractdev, The Fractint Developer's Discussion List
  93. Post Message:   fractdev@lists.xmission.com
  94. Get Commands:   majordomo@lists.xmission.com "help"
  95. Administrator:  twegner@fractint.org
  96. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  97.  
  98.  
  99. -------------------------------------------------------------------------------
  100.  
  101. From: Thore Berntsen <berntsen@vbdas.no>
  102. Subject: RE: I have code for improved cellular automata
  103. Date: 06 Nov 2000 08:16:02 +0100 
  104.  
  105. I'm interessted in Your BP source.
  106.  
  107. Thore Berntsen
  108. Norway
  109.  
  110. -----Original Message-----
  111. Sent: 4. november 2000 22:24
  112.  
  113.  
  114. I have Borland Pascal code for 2 types of an improved cellular =
  115. automata.
  116.  
  117. The first is another version of the linear cellular automata - a bit =
  118. like
  119. type=3Dcellular already built in - but with improvements: the cell =
  120. being
  121. recalculated can be excluded from calculating the 'neighborhood', it =
  122. works
  123. without specifying a subtype: the radius can be specified, and the =
  124. number of
  125. possible cell numbers is 0 to 35.
  126.  
  127. The second is a 2D extension: it works in a plane, not a line and it =
  128. draws
  129. the last state of the plane. The improvements on the linear type are =
  130. also
  131. there.
  132.  
  133. I'm looking for someone who could integrate it into Fractint, because =
  134. I'm
  135. not familiar with the Fractint source. It would need new input =
  136. routines: the
  137. improved linear type works with true string values - can also contain
  138. characters A..Z, and the range can maybe extended - not values decoded =
  139. from
  140. a float number, and the 2D version needs a 2D array editor for the 2D =
  141. 'seed'
  142. array.
  143.  
  144. If anyone is interested, I can post the source, together with the =
  145. compiled
  146. files - some of you may not have BP, - it's about 25 kB. I release it =
  147. for
  148. integrating into Fractint, _NOT_ for making commercial programs!
  149.  
  150. If you wish to post it to the whole list, please let me know.
  151.  
  152.  
  153.  
  154.  
  155. Thanks for using Fractdev, The Fractint Developer's Discussion List
  156. Post Message:   fractdev@lists.xmission.com
  157. Get Commands:   majordomo@lists.xmission.com "help"
  158. Administrator:  twegner@fractint.org
  159. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  160.  
  161. Thanks for using Fractdev, The Fractint Developer's Discussion List
  162. Post Message:   fractdev@lists.xmission.com
  163. Get Commands:   majordomo@lists.xmission.com "help"
  164. Administrator:  twegner@fractint.org
  165. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  166.  
  167.  
  168. -------------------------------------------------------------------------------
  169.  
  170. From: "=?iso-8859-1?B?UHVza+FzIElzdHbhbiBqci4=?=" <pataki.v@matavnet.hu>
  171. Subject: Re: Fractint bugs of the month
  172. Date: 08 Nov 2000 18:16:20 +0100
  173.  
  174. I remember I saw this one long ago in v19.2 and it's there in v20.1.1 too.
  175.  
  176. If arbitrary precision is used with the Mandelbrot-set and the bailout is
  177. higher than the default - like 20 or more - there are some garbage
  178. filaments.
  179.  
  180.  
  181. The false inside bug can appear also at lower bailout if a function argument
  182. reaches about 1e6, so it's very likely to be a function failure (like I
  183. suspected.)
  184.  
  185.  
  186. This formula produces the effect with p1=2 p2=1000, p1=3 p2=100, p1=6 p2=10.
  187. In all these cases, fn(z^p1) can reach 1e6.
  188.  
  189. bailoutproblem2 {
  190. ;p1 is the exponent, try 1..8
  191. ;p2 is the bailout
  192. z=c=pixel:
  193. z=z*fn1(z^p1)+c
  194. |z|<p2
  195. }
  196.  
  197.  
  198.  
  199.  
  200. Thanks for using Fractdev, The Fractint Developer's Discussion List
  201. Post Message:   fractdev@lists.xmission.com
  202. Get Commands:   majordomo@lists.xmission.com "help"
  203. Administrator:  twegner@fractint.org
  204. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  205.  
  206.  
  207. -------------------------------------------------------------------------------
  208.  
  209. From: "Jonathan Osuch" <osuchj@qwest.net>
  210. Subject: Re: Fractint bugs of the month
  211. Date: 09 Nov 2000 20:04:36 -0600
  212.  
  213. > If arbitrary precision is used with the Mandelbrot-set and the bailout is
  214. > higher than the default - like 20 or more - there are some garbage
  215. > filaments.
  216.  
  217. Yes, I see some problems there.
  218.  
  219. > The false inside bug can appear also at lower bailout if a function
  220. argument
  221. > reaches about 1e6, so it's very likely to be a function failure (like I
  222. > suspected.)
  223.  
  224. Except that the bug goes away if you turn off the parser optimizations with
  225. debug=322.
  226.  
  227. I've tracked it down to the optimization of the 'less than' comparison.  I
  228. just have no clue as to how to fix it.  It would also be a good bet that the
  229. other comparisons have the same problem.
  230.  
  231. Jonathan
  232.  
  233.  
  234.  
  235. Thanks for using Fractdev, The Fractint Developer's Discussion List
  236. Post Message:   fractdev@lists.xmission.com
  237. Get Commands:   majordomo@lists.xmission.com "help"
  238. Administrator:  twegner@fractint.org
  239. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  240.  
  241.  
  242. -------------------------------------------------------------------------------
  243.  
  244. From: "=?iso-8859-1?B?UHVza+FzIElzdHbhbiBqci4=?=" <pataki.v@matavnet.hu>
  245. Subject: New (old) Fractint bug
  246. Date: 10 Nov 2000 21:17:35 +0100
  247.  
  248. I found a bug that is still there in version 20.1.1. The perturbation for
  249. type=mandel is handled incorrectly if inside is set to bof60 or bof61. 1. If
  250. the real part is negative, it is still treated as positive. 2. If it
  251. contains only an imaginary part: (0,n) it is treated as (-|n|,0). This bug
  252. is in present in versions 19.2, 20.0, 20.1.1 and occurs only in inside=bof60
  253. of bof61, not the other inside options.
  254.  
  255.  
  256.  
  257. Thanks for using Fractdev, The Fractint Developer's Discussion List
  258. Post Message:   fractdev@lists.xmission.com
  259. Get Commands:   majordomo@lists.xmission.com "help"
  260. Administrator:  twegner@fractint.org
  261. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  262.  
  263.  
  264. -------------------------------------------------------------------------------
  265.  
  266. From: "Jonathan Osuch" <osuchj@qwest.net>
  267. Subject: Re: New (old) Fractint bug
  268. Date: 10 Nov 2000 18:45:34 -0600
  269.  
  270. > I found a bug that is still there in version 20.1.1. The perturbation for
  271. > type=mandel is handled incorrectly if inside is set to bof60 or bof61. 1.
  272. If
  273. > the real part is negative, it is still treated as positive. 2. If it
  274. > contains only an imaginary part: (0,n) it is treated as (-|n|,0). This bug
  275. > is in present in versions 19.2, 20.0, 20.1.1 and occurs only in
  276. inside=bof60
  277. > of bof61, not the other inside options.
  278.  
  279. Yes, that's a strange feature.  It works like that so that images in "The
  280. Beauty of Fractals" can be reproduced using Fractint.
  281.  
  282. I have in mind a work around that would require a command line option.  This
  283. would avoid having to add code for backwards compatibility.  And, it would
  284. still allow reproducing the BOF images.
  285.  
  286. Jonathan
  287.  
  288.  
  289.  
  290. Thanks for using Fractdev, The Fractint Developer's Discussion List
  291. Post Message:   fractdev@lists.xmission.com
  292. Get Commands:   majordomo@lists.xmission.com "help"
  293. Administrator:  twegner@fractint.org
  294. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  295.  
  296.  
  297. -------------------------------------------------------------------------------
  298.  
  299. From: "=?windows-1250?B?UHVza+FzIElzdHbhbiBqci4=?=" <pataki.v@matavnet.hu>
  300. Subject: Another video hotkey bug
  301. Date: 15 Nov 2000 18:04:45 +0100
  302.  
  303. I found another bug in the video mode hotkey assignments. I have some
  304. 'windowed' entries in the FRACTINT.CFG file, which didn't fit into the old
  305. (removed) width = height = 160.. 2048 limitation. They work without problems
  306. but they can't be assigned to a hotkey and if they are already assigned
  307. (with a text editor) they can't be unassigned. I tried it with several
  308. entries and it seems that it has to do with the old size limits.
  309.  
  310.  
  311.  
  312.  
  313. Thanks for using Fractdev, The Fractint Developer's Discussion List
  314. Post Message:   fractdev@lists.xmission.com
  315. Get Commands:   majordomo@lists.xmission.com "help"
  316. Administrator:  twegner@fractint.org
  317. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  318.  
  319.  
  320. -------------------------------------------------------------------------------
  321.  
  322. From: "=?iso-8859-1?B?UHVza+FzIElzdHbhbiBqci4=?=" <pataki.v@matavnet.hu>
  323. Subject: Bug in the incremental redraw mode
  324. Date: 17 Nov 2000 22:42:55 +0100
  325.  
  326. If the incremental redraw in 'passes=g' is activated and a GIF is saved -
  327. either while it is in progress or after it is completed - the drawing mode
  328. flag in the GIF will be 'passes=1' instead of 'passes=g'. If the image is
  329. saved to a PAR, the drawing mode flag will be bad only if it is saved while
  330. the incremental redraw is in progress.
  331.  
  332.  
  333.  
  334.  
  335.  
  336. Thanks for using Fractdev, The Fractint Developer's Discussion List
  337. Post Message:   fractdev@lists.xmission.com
  338. Get Commands:   majordomo@lists.xmission.com "help"
  339. Administrator:  twegner@fractint.org
  340. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  341.  
  342.  
  343. -------------------------------------------------------------------------------
  344.  
  345. From: "Jonathan Osuch" <osuchj@qwest.net>
  346. Subject: Re: Bug in the incremental redraw mode
  347. Date: 17 Nov 2000 18:54:43 -0600
  348.  
  349. > If the incremental redraw in 'passes=g' is activated and a GIF is saved -
  350. > either while it is in progress or after it is completed - the drawing mode
  351. > flag in the GIF will be 'passes=1' instead of 'passes=g'. If the image is
  352. > saved to a PAR, the drawing mode flag will be bad only if it is saved
  353. while
  354. > the incremental redraw is in progress.
  355.  
  356. When I implemented the incremental redraw I spent a considerable amount of
  357. time trying to fix this.  As you can see, I was unsuccessful.
  358.  
  359. Jonathan
  360.  
  361.  
  362.  
  363. Thanks for using Fractdev, The Fractint Developer's Discussion List
  364. Post Message:   fractdev@lists.xmission.com
  365. Get Commands:   majordomo@lists.xmission.com "help"
  366. Administrator:  twegner@fractint.org
  367. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  368.  
  369.  
  370. -------------------------------------------------------------------------------
  371.  
  372. From: "Jonathan Osuch" <osuchj@qwest.net>
  373. Subject: Re: Another video hotkey bug
  374. Date: 17 Nov 2000 19:41:01 -0600
  375.  
  376. > I found another bug in the video mode hotkey assignments. I have some
  377. > 'windowed' entries in the FRACTINT.CFG file, which didn't fit into the old
  378. > (removed) width = height = 160.. 2048 limitation. They work without
  379. problems
  380. > but they can't be assigned to a hotkey and if they are already assigned
  381. > (with a text editor) they can't be unassigned. I tried it with several
  382. > entries and it seems that it has to do with the old size limits.
  383.  
  384. Tell me more.  I tried this with a 10x10 mode, which is the limit on the
  385. small size, and it worked.  I was able to unassign and then reassign a
  386. hotkey.
  387.  
  388. Jonathan
  389.  
  390.  
  391.  
  392. Thanks for using Fractdev, The Fractint Developer's Discussion List
  393. Post Message:   fractdev@lists.xmission.com
  394. Get Commands:   majordomo@lists.xmission.com "help"
  395. Administrator:  twegner@fractint.org
  396. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  397.  
  398.  
  399. -------------------------------------------------------------------------------
  400.  
  401. From: "Jonathan Osuch" <osuchj@qwest.net>
  402. Subject: Re: Bug in the incremental redraw mode
  403. Date: 18 Nov 2000 07:42:26 -0600
  404.  
  405. >> If the incremental redraw in 'passes=g' is activated and a GIF is saved -
  406. >> either while it is in progress or after it is completed - the drawing
  407. mode
  408. >> flag in the GIF will be 'passes=1' instead of 'passes=g'. If the image is
  409. >>saved to a PAR, the drawing mode flag will be bad only if it is saved
  410. while
  411. >> the incremental redraw is in progress.
  412.  
  413. > When I implemented the incremental redraw I spent a considerable amount of
  414. > time trying to fix this.  As you can see, I was unsuccessful.
  415.  
  416. And, having just said that, I think I've fixed it.
  417.  
  418. Jonathan
  419.  
  420.  
  421.  
  422. Thanks for using Fractdev, The Fractint Developer's Discussion List
  423. Post Message:   fractdev@lists.xmission.com
  424. Get Commands:   majordomo@lists.xmission.com "help"
  425. Administrator:  twegner@fractint.org
  426. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  427.  
  428.  
  429. -------------------------------------------------------------------------------
  430.  
  431. From: "Jonathan Osuch" <osuchj@qwest.net>
  432. Subject: Off my rocker
  433. Date: 18 Nov 2000 18:16:47 -0600
  434.  
  435. I can't work all the time.
  436.  
  437. isosceles          { ; A triangle, even if artificially formed
  438.                      ;  Jonathan Osuch josuch@fractint.org
  439.                      ;  Nov 18, 2000 at 17:03:53
  440.                      ;  Version 2001 Patchlevel 2
  441.   reset=2001 type=julia(fn||fn) function=exp/cos
  442.   center-mag=+0.33030303030303000/+0.81725554106910180/641.0256/1/-82.5
  443.   params=1.3/0/2.5 float=y maxiter=1000 bailout=100 inside=bof60
  444.   outside=atan logmap=yes sound=off
  445.   colors=000PNH<3>_C7b94cA4<14>r_HsaItcJ<2>whMxjNxiN<17>jNAiM9iK9hJ8gI7fG6\
  446.   <15>lNJlOKlOL<3>nRPnSQnTR<18>mrkmslmtm<2>mxplzrlzp<12>`zI_zGZzD<3>Vy2<27\
  447.   >QY5QX5PW5<2>PT5OS6MVE<3>Afi7iq4lz<4>HpaKpXNqS<2>VtDYu7Ys8<6>c_IdXJeUL<3\
  448.   >iIR<13>sAAt99u97<2>w74x62w62<27>VRGUSHTSHSTIRUIPVJ<13>_VQ
  449.   }
  450.  
  451.  
  452.  
  453. Thanks for using Fractdev, The Fractint Developer's Discussion List
  454. Post Message:   fractdev@lists.xmission.com
  455. Get Commands:   majordomo@lists.xmission.com "help"
  456. Administrator:  twegner@fractint.org
  457. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  458.  
  459.  
  460. -------------------------------------------------------------------------------
  461.  
  462. From: "Jonathan Osuch" <osuchj@qwest.net>
  463. Subject: Fractint and Windows ME
  464. Date: 18 Nov 2000 18:13:41 -0600
  465.  
  466. Does anybody have any experience using Fractint with the latest version of
  467. Windows?  One of the latest comments on the Fractint bug list is about
  468. problems with it.
  469.  
  470. Jonathan
  471.  
  472.  
  473.  
  474. Thanks for using Fractdev, The Fractint Developer's Discussion List
  475. Post Message:   fractdev@lists.xmission.com
  476. Get Commands:   majordomo@lists.xmission.com "help"
  477. Administrator:  twegner@fractint.org
  478. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  479.  
  480.  
  481. -------------------------------------------------------------------------------
  482.  
  483. From: "Jonathan Osuch" <osuchj@qwest.net>
  484. Subject: Fractint version 20.1.03
  485. Date: 19 Nov 2000 12:16:37 -0600
  486.  
  487. The latest patch and executable of Fractint version 20.1 are now available.
  488.  
  489. It fixes the incremental redraw problem with setting passes=1 after being
  490. interrupted.  The range of bailout values that work with ap-math is now
  491. larger.  Still nothing to write home about.  A new command line option has
  492. been added, nobof=yes, which causes the inside=bof60 and bof61 options to
  493. NOT recreate the images from the book of the same name.  This makes the
  494. behavior of these two inside options the same as the other inside options.
  495.  
  496. Jonathan
  497.  
  498.  
  499.  
  500. Thanks for using Fractdev, The Fractint Developer's Discussion List
  501. Post Message:   fractdev@lists.xmission.com
  502. Get Commands:   majordomo@lists.xmission.com "help"
  503. Administrator:  twegner@fractint.org
  504. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  505.  
  506.  
  507. -------------------------------------------------------------------------------
  508.  
  509. From: Thore Berntsen <berntsen@vbdas.no>
  510. Subject: RE: Fractint and Windows ME
  511. Date: 20 Nov 2000 08:01:23 +0100
  512.  
  513. I use Fractint with Windows ME and have had no problems. Mostly it is my
  514. Fractint Screen Saver that runs Fractint for me these days, in other words
  515. in Disk-Video mode.
  516.  
  517. -----Original Message-----
  518. Sent: 19. november 2000 01:14
  519.  
  520.  
  521. Does anybody have any experience using Fractint with the latest version of
  522. Windows?  One of the latest comments on the Fractint bug list is about
  523. problems with it.
  524.  
  525. Jonathan
  526.  
  527.  
  528.  
  529. Thanks for using Fractdev, The Fractint Developer's Discussion List
  530. Post Message:   fractdev@lists.xmission.com
  531. Get Commands:   majordomo@lists.xmission.com "help"
  532. Administrator:  twegner@fractint.org
  533. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  534.  
  535. Thanks for using Fractdev, The Fractint Developer's Discussion List
  536. Post Message:   fractdev@lists.xmission.com
  537. Get Commands:   majordomo@lists.xmission.com "help"
  538. Administrator:  twegner@fractint.org
  539. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  540.  
  541.  
  542. -------------------------------------------------------------------------------
  543.  
  544. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  545. Subject: Re: Fractint and Windows ME
  546. Date: 20 Nov 2000 20:22:19 +1300
  547.  
  548. At 18:13 18/11/2000 -0600, Jonathan Osuch wrote:
  549. >Does anybody have any experience using Fractint with the latest version of
  550. >Windows?  One of the latest comments on the Fractint bug list is about
  551. >problems with it.
  552. It's not ME, but I've had no problems running v20 on Win2000SR1 (yes, a
  553. service release already - how many more, I wonder?). I'm actually using
  554. the same sstools.ini file as my 95 machine (in particular,
  555. textsafe=save), modulo the video mode; makefcfg doesn't know what to do
  556. with my NVidia RIVA TNT, but that's okay, the default .cfg works fine
  557. up to the card's maximum 1600x1200 res.
  558.  
  559. I haven't tried it with looser textsafe settings - I'm supposed to be
  560. working, and it's not my machine anyway - but the delay is unnoticeable (it
  561. takes longer for the monitor's relays to switch).
  562.  
  563. Like I say, 2000 is not ME (which is why there is a ME); perhaps the
  564. latter's fun and flashy orientation makes it a scarier platform for
  565. Fractint.
  566.  
  567. Morgan L. Owens
  568. "I'm not even supposed to be installing software on it."
  569.  
  570.  
  571.  
  572. Thanks for using Fractdev, The Fractint Developer's Discussion List
  573. Post Message:   fractdev@lists.xmission.com
  574. Get Commands:   majordomo@lists.xmission.com "help"
  575. Administrator:  twegner@fractint.org
  576. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  577.  
  578.  
  579. -------------------------------------------------------------------------------
  580.  
  581. From: "Jonathan Osuch" <osuchj@qwest.net>
  582. Subject: Formula parser
  583. Date: 24 Nov 2000 12:07:33 -0600
  584.  
  585. Tim,
  586.  
  587. I tried to compile/assemble the compiler version of the formula parser and
  588. it will no longer assemble.  The ALTER_RET_ADDR macro in parsera.asm tries
  589. to push the address of past_loop, which isn't defined anywhere.
  590.  
  591. Jonathan
  592.  
  593.  
  594.  
  595. Thanks for using Fractdev, The Fractint Developer's Discussion List
  596. Post Message:   fractdev@lists.xmission.com
  597. Get Commands:   majordomo@lists.xmission.com "help"
  598. Administrator:  twegner@fractint.org
  599. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  600.  
  601.  
  602. -------------------------------------------------------------------------------
  603.  
  604. From: "Jonathan Osuch" <osuchj@qwest.net>
  605. Subject: Updated float only and xfractint
  606. Date: 24 Nov 2000 12:42:03 -0600
  607.  
  608. Tim,
  609.  
  610. I've brought both the float only and the Xfractint sources up to patch 3.
  611.  
  612. We need to think about how we want to archive these sources.  Either put
  613. them in subdirectories of /ftp (public) or put them under /fractint
  614. (private).  My preference would be for putting them under /fractint to keep
  615. them private, but I don't have any good reason to do it that way.
  616.  
  617. Jonathan
  618.  
  619.  
  620.  
  621. Thanks for using Fractdev, The Fractint Developer's Discussion List
  622. Post Message:   fractdev@lists.xmission.com
  623. Get Commands:   majordomo@lists.xmission.com "help"
  624. Administrator:  twegner@fractint.org
  625. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  626.  
  627.  
  628. -------------------------------------------------------------------------------
  629.  
  630. From: Phil McRevis <legalize@xmission.com>
  631. Subject: Re: Updated float only and xfractint 
  632. Date: 24 Nov 2000 15:20:19 -0700
  633.  
  634.  
  635. In article <000b01c05646$3ee0e740$0100a8c0@bananasenior>,
  636.     "Jonathan Osuch" <osuchj@qwest.net>  writes:
  637.  
  638. > I've brought both the float only and the Xfractint sources up to patch 3.
  639.  
  640. Is this the code with my device driver stuff in it?  I poked at some
  641. of the zip files on <http://www.fractint.org/ftp/> and didn't see
  642. anything that looked like it had my changes.  What file do I look at?
  643. --
  644. Ask me about my upcoming book on Direct3D from Addison-Wesley!
  645. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  646.     ``Ain't it funny that they all fire the pistol,     
  647.       at the wrong end of the race?''--PDBT     
  648. legalize@xmission.com    <http://www.xmission.com/~legalize/who/>
  649.  
  650. Thanks for using Fractdev, The Fractint Developer's Discussion List
  651. Post Message:   fractdev@lists.xmission.com
  652. Get Commands:   majordomo@lists.xmission.com "help"
  653. Administrator:  twegner@fractint.org
  654. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  655.  
  656.  
  657. -------------------------------------------------------------------------------
  658.  
  659. From: "Jonathan Osuch" <osuchj@qwest.net>
  660. Subject: Re: Updated float only and xfractint 
  661. Date: 25 Nov 2000 11:43:10 -0600
  662.  
  663. > Is this the code with my device driver stuff in it?  I poked at some
  664. > of the zip files on <http://www.fractint.org/ftp/> and didn't see
  665. > anything that looked like it had my changes.  What file do I look at?
  666.  
  667. No, currently we are keeping that code between Tim and myself.  It hasn't
  668. changed much since September.  About that time an update to the Allegro WIP
  669. source came out.  I was unable to get the new Allegro source to compile
  670. using djgcc and then couldn't get the previous version to work either.
  671. Under Linux I have a version of Xfractint working that doesn't yet save the
  672. video modes to fractint.cfg so it has to cycle through the video modes each
  673. time it starts up.  That's pretty ugly.
  674.  
  675. If you like, I can email my latest source to you.  Or, if you would prefer I
  676. can put it at
  677. <http://www.fractint.org/ftp/> with a cryptic file name and password
  678. protected.
  679.  
  680. Jonathan
  681.  
  682.  
  683.  
  684. Thanks for using Fractdev, The Fractint Developer's Discussion List
  685. Post Message:   fractdev@lists.xmission.com
  686. Get Commands:   majordomo@lists.xmission.com "help"
  687. Administrator:  twegner@fractint.org
  688. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  689.  
  690.  
  691. -------------------------------------------------------------------------------
  692.  
  693. From: "Scott D. Boyd" <sdboyd56@swbell.net>
  694. Subject: Proposal for restructuring of Xfractint's Makefile
  695. Date: 26 Nov 2000 01:09:19 -0600
  696.  
  697. Jonathan and anyone else concerned,
  698.  
  699. I am finally getting back to Xfractint after a rather long absence (for 
  700. various reasons.) During that time, I read a very informative article in the 
  701. November issue of "Linux Journal". This article dealt with where 
  702. user-installed programs should be installed in the Linux directory structure. 
  703. The author stated that there are four standards, along with the UNIX 
  704. community in general, that have established the /opt directory for add-on 
  705. software. 
  706.  
  707. I run Linux-Mandrake on my machine, and all the KDE & Gnome binaries are in 
  708. /usr/bin and/or /usr/X11R6/bin. But then again, technically they aren't 
  709. user-installed programs. X programs are in /usr/X11R6/bin. The only 
  710. user-installed program I have in my /opt directory is Adobe's Acrobat Reader, 
  711. which wasn't included in the installation CD. I believe RedHat's install 
  712. program puts KDE in /opt, but I'm not sure. (I think they use to in Redhat 
  713. Linux 6.2.)
  714.  
  715. My proposal is this:
  716. While I am updating Xfractint on my computer, I would like to modify the 
  717. Makefile to reflect the changes mentioned above, so we can try to adhere to 
  718. the Linux Standard Base, and other UNIX standards. I propose making the 
  719. following changes:
  720. The binary be placed in /opt/xfractint-20.x.xx/bin/
  721. The .par, .map, .frm, etc files be placed in /opt/xfractint-20.x.xx/
  722. Any configuration files be placed in /etc/opt/xfractint-20.x.xx/
  723. Any files created by the user will be placed in /home/user/xfractint-20.x.xx/
  724. The man file should remain where it is currently installed.
  725.  
  726. The Makefile could also be modified to check for and change the xfractint 
  727. version number in the dir. names during an upgrade.
  728. I would also like to update the read.me file with new compiling/install 
  729. instructions.
  730.  
  731. Of course, I will thoroughly test all changes that I make before submitting 
  732. it as a patch.
  733.  
  734. Comments and questions are welcome.
  735. Scott Boyd
  736. -- 
  737. sdboyd56@swbell.net
  738. http://home.swbell.net/sdboyd56/
  739. -----------------------
  740. (Wanted: a new, clever tagline...)
  741.  
  742. Thanks for using Fractdev, The Fractint Developer's Discussion List
  743. Post Message:   fractdev@lists.xmission.com
  744. Get Commands:   majordomo@lists.xmission.com "help"
  745. Administrator:  twegner@fractint.org
  746. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  747.  
  748.  
  749. -------------------------------------------------------------------------------
  750.  
  751. From: "Jonathan Osuch" <osuchj@qwest.net>
  752. Subject: Re: Proposal for restructuring of Xfractint's Makefile
  753. Date: 26 Nov 2000 08:04:51 -0600
  754.  
  755. Scott,
  756.  
  757. > I propose making the following changes:
  758. > The binary be placed in /opt/xfractint-20.x.xx/bin/
  759.  
  760. That seems reasonable.  Would there be a problem with using /home/user/bin?
  761. What about the source file location?  I know you are thinking about
  762. distributing a pre-compiled executable, but while we are changing things...
  763.  
  764. > The .par, .map, .frm, etc files be placed in /opt/xfractint-20.x.xx/
  765.  
  766. That could get very messy.  How about putting them in
  767. /opt/xfractint-20.x.xx/par,
  768. /opt/xfractint-20.x.xx/map, /opt/xfractint-20.x.xx/frm, etc.
  769.  
  770. > Any configuration files be placed in /etc/opt/xfractint-20.x.xx/
  771.  
  772. Yes.  We could put an sstools.ini file here with the above directories
  773. already set.  I assume that Xfractint will be able to find it here???
  774.  
  775. > Any files created by the user will be placed in
  776. /home/user/xfractint-20.x.xx/
  777.  
  778. Perhaps we would want to place the par, map, frm, etc files under here also?
  779.  
  780. > The man file should remain where it is currently installed.
  781.  
  782. Yes.  It is in desperate need of an update, also.
  783.  
  784. > The Makefile could also be modified to check for and change the xfractint
  785. > version number in the dir. names during an upgrade.
  786.  
  787. Maybe we don't want to do this.  There may be reason to have more than one
  788. version loaded.  For example, if a feature (or bug) is removed in a newer
  789. version and the user still wants to be able to generate fractals using it.
  790. The question is, how do we get the desired version to execute?
  791.  
  792. > I would also like to update the read.me file with new compiling/install
  793. > instructions.
  794.  
  795. Very much needed.
  796.  
  797. Jonathan
  798.  
  799.  
  800.  
  801. Thanks for using Fractdev, The Fractint Developer's Discussion List
  802. Post Message:   fractdev@lists.xmission.com
  803. Get Commands:   majordomo@lists.xmission.com "help"
  804. Administrator:  twegner@fractint.org
  805. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  806.  
  807.  
  808. -------------------------------------------------------------------------------
  809.  
  810. From: comdotatdotcom@csi.com
  811. Subject: RE: Re: Proposal for restructuring of Xfractint's Makefile
  812. Date: 27 Nov 2000 0:18 0000
  813.  
  814.  
  815. Hi Folks,
  816.  
  817. Sounds good so far, I've just got Debian 2.2 installed and got
  818. the latest xfractint to compile OK with no problems, barely had
  819. to tweak the makefile :-)
  820.  
  821. One very minor niggle...
  822.  
  823. >> Any configuration files be placed in /etc/opt/xfractint-20.x.xx/
  824.  
  825. >Yes.  We could put an sstools.ini file here with the above
  826. >directories
  827.  
  828. Sstools.ini doesn't belong exclusively to FractInt ( though I'll
  829. admiit that I can't think of any other stone soup tools ported to
  830. linux ) and so perhaps should be in the users home directory.
  831.  
  832. As I said, a very minor niggle :-)
  833.  
  834. Cheers,
  835.          Robin.
  836.  
  837.  
  838. Thanks for using Fractdev, The Fractint Developer's Discussion List
  839. Post Message:   fractdev@lists.xmission.com
  840. Get Commands:   majordomo@lists.xmission.com "help"
  841. Administrator:  twegner@fractint.org
  842. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  843.  
  844.  
  845. -------------------------------------------------------------------------------
  846.  
  847. From: "Scott D. Boyd" <sdboyd56@swbell.net>
  848. Subject: Re: Proposal for restructuring of Xfractint's Makefile
  849. Date: 26 Nov 2000 21:14:15 -0600
  850.  
  851. On Sunday 26 November 2000 08:04, you wrote:
  852. > Scott,
  853. >
  854. > > I propose making the following changes:
  855. > > The binary be placed in /opt/xfractint-20.x.xx/bin/
  856. >
  857. > That seems reasonable.  Would there be a problem with using /home/user/bin?
  858. >
  859. Yes and/or no. In a one-user system, such as a home-computer, that would 
  860. work. But in a multi-user environment, such as at a school, then only that 
  861. user could use the binary. That's why presently it is put in /usr/X11R6/bin, 
  862. which is a dir that is readable/executable by everyone.
  863.  
  864. > What about the source file location?  I know you are thinking about
  865. > distributing a pre-compiled executable, but while we are changing things...
  866. >
  867. When you unzip a source package, it normally goes in /usr/src/package-name/. 
  868. Then the makefile would copy all the files to their prescribed dirs. I was 
  869. also thinking along the lines of having the Makefile that goes in the 
  870. original source package reflect the changes I propose. In other words, I 
  871. would be submitting the modified makefile to you for inclusion into the 
  872. Xfractint source.
  873.  
  874. > > The .par, .map, .frm, etc files be placed in /opt/xfractint-20.x.xx/
  875. >
  876. > That could get very messy.  How about putting them in
  877. > /opt/xfractint-20.x.xx/par,
  878. > /opt/xfractint-20.x.xx/map, /opt/xfractint-20.x.xx/frm, etc.
  879. >
  880. As it is right now, all the .par, .map, .frm files are all dumped in one 
  881. directory anyway! But your suggestion sounds better to me. Would make them 
  882. easier to browse thru. But then we would have to make sure that Xfractint 
  883. could find them in the correct directories.
  884.  
  885. > > Any configuration files be placed in /etc/opt/xfractint-20.x.xx/
  886. >
  887. > Yes.  We could put an sstools.ini file here with the above directories
  888. > already set.  I assume that Xfractint will be able to find it here???
  889. >
  890. That also would need to be set in the program and/or the Makefile. I'll have 
  891. to check and see where the setting is for Xfractint to look for it's config 
  892. files.
  893.  
  894. > > Any files created by the user will be placed in
  895. >
  896. > /home/user/xfractint-20.x.xx/
  897. >
  898. > Perhaps we would want to place the par, map, frm, etc files under here
  899. > also?
  900. >
  901. My reply above about placing the binary under /home/user/ vs 
  902. /opt/package-name also applies here. Of course, any of those files that a 
  903. user creates could be placed under their home dir.
  904.  
  905. > > The man file should remain where it is currently installed.
  906. >
  907. > Yes.  It is in desperate need of an update, also.
  908. I'll keep that in mind also.
  909. >
  910. > > The Makefile could also be modified to check for and change the xfractint
  911. > > version number in the dir. names during an upgrade.
  912. >
  913. > Maybe we don't want to do this.  There may be reason to have more than one
  914. > version loaded.  For example, if a feature (or bug) is removed in a newer
  915. > version and the user still wants to be able to generate fractals using it.
  916. >
  917. Good point! Then it would be best to put the newer version in a seperate dir, 
  918. with the dir name containing the version number.
  919.  
  920. > The question is, how do we get the desired version to execute?
  921. >
  922. Simple - create a link ("shortcuts" in MS-speak) to each seperate binary. The 
  923. executable filename can be renamed with the version no. tacked on the end.
  924.  
  925. I haven't started any of the proposed changes yet, so there's stil lots of 
  926. room for ideas, changes, suggestions, discussions, etc. And remember, my 
  927. proposal is only to nudge Xfractint more in line with several standards and 
  928. the Linux/Unix community in general, and so new users wouldn't have to tweak  
  929. the Makefile or move files around after it's compiled/instaled.
  930.  
  931. Scott Boyd
  932. -- 
  933. sdboyd56@swbell.net
  934. http://home.swbell.net/sdboyd56/
  935.  
  936.  
  937. Thanks for using Fractdev, The Fractint Developer's Discussion List
  938. Post Message:   fractdev@lists.xmission.com
  939. Get Commands:   majordomo@lists.xmission.com "help"
  940. Administrator:  twegner@fractint.org
  941. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  942.  
  943.  
  944. -------------------------------------------------------------------------------
  945.  
  946. From: comdotatdotcom@csi.com
  947. Subject: RE: Re: Re: Proposal for restructuring of Xfractint's Makefile
  948. Date: 27 Nov 2000 18:19 0000
  949.  
  950. Hi Scott,
  951.  
  952. >What? There's some other Stone Soup Group tools out there?
  953.  
  954. There's piclab IIRC but I don't know if it's available in linux,
  955. probably not.(might be an easy port though
  956.  
  957. Though there is still the point that different users
  958. will want different sstools.ini settings, so it should still go under
  959. the users home somewhere.
  960.  
  961. Cheers,
  962.          Robin
  963. P.S. if you go to:
  964. http://sources.redhat.com/autobook/
  965. you'll find a link to an online guide to autoconf, automake and
  966. libtool... good stuff!
  967.  
  968.  
  969.  
  970.  
  971. Thanks for using Fractdev, The Fractint Developer's Discussion List
  972. Post Message:   fractdev@lists.xmission.com
  973. Get Commands:   majordomo@lists.xmission.com "help"
  974. Administrator:  twegner@fractint.org
  975. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  976.  
  977.  
  978. -------------------------------------------------------------------------------
  979.  
  980. From: "Scott D. Boyd" <sdboyd56@swbell.net>
  981. Subject: Re: Re: Re: Proposal for restructuring of Xfractint's Makefile
  982. Date: 27 Nov 2000 21:00:07 -0600
  983.  
  984. On Monday 27 November 2000 12:19, you wrote:
  985. > Hi Scott,
  986. >
  987. > >What? There's some other Stone Soup Group tools out there?
  988. >
  989. > There's piclab IIRC but I don't know if it's available in linux,
  990. > probably not.(might be an easy port though
  991. >
  992. Yeah - that's the name of it! I was thinking of that program using 
  993. sstools.ini, but I couldn't remember the name. I didn't know it was a Stone 
  994. Soup program though. I haven't even heard anything about it in a long time, 
  995. so you are more than likely right about it not being ported to Linux.
  996.  
  997. > Though there is still the point that different users
  998. > will want different sstools.ini settings, so it should still go under
  999. > the users home somewhere.
  1000. >
  1001. Good point. I also just thought of how a Linux installation will have a 
  1002. global .bashrc and .bash_profile in the /etc, dir., but each user can also 
  1003. have their custom .bashrc and .bash_profile in their home dir. The same could 
  1004. be done with Xfractint config files....
  1005.  
  1006. > P.S. if you go to:
  1007. > http://sources.redhat.com/autobook/
  1008. > you'll find a link to an online guide to autoconf, automake and
  1009. > libtool... good stuff!
  1010.  
  1011. I'll look into it soon.
  1012.  
  1013. Regards, 
  1014. Scott
  1015.  
  1016. -- 
  1017. sdboyd56@swbell.net
  1018. http://home.swbell.net/sdboyd56/
  1019. A computer without a Microsoft operating system
  1020. is like a dog without bricks tied to it's head.
  1021.  
  1022. Thanks for using Fractdev, The Fractint Developer's Discussion List
  1023. Post Message:   fractdev@lists.xmission.com
  1024. Get Commands:   majordomo@lists.xmission.com "help"
  1025. Administrator:  twegner@fractint.org
  1026. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  1027.  
  1028.  
  1029. -------------------------------------------------------------------------------
  1030.  
  1031. From: Tim Wegner <twegner@swbell.net>
  1032. Subject: Re: Proposal for restructuring of Xfractint's Makefile
  1033. Date: 27 Nov 2000 21:26:48 -0600
  1034.  
  1035. Scott wrote:
  1036.  
  1037. > Yeah - that's the name of it! I was thinking of that program using 
  1038. > sstools.ini, but I couldn't remember the name. I didn't know it was a Stone 
  1039. > Soup program though. I haven't even heard anything about it in a long time, 
  1040. > so you are more than likely right about it not being ported to Linux.
  1041.  
  1042. Piclab definitely is a Stone Soup program, and definitely hasn't 
  1043. been (and won't be) ported to Linux. Strictly a DOS program, uses 
  1044. assembler. Lee Crocker's web page doesn't even mention his 
  1045. Piclab program (see www.piclab.com).
  1046.  
  1047. Tim
  1048.  
  1049.  
  1050.  
  1051.  
  1052. Thanks for using Fractdev, The Fractint Developer's Discussion List
  1053. Post Message:   fractdev@lists.xmission.com
  1054. Get Commands:   majordomo@lists.xmission.com "help"
  1055. Administrator:  twegner@fractint.org
  1056. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  1057.  
  1058.  
  1059. -------------------------------------------------------------------------------
  1060.  
  1061. From: Tim Wegner <twegner@swbell.net>
  1062. Subject: piclab at piclab.com
  1063. Date: 27 Nov 2000 21:32:14 -0600
  1064.  
  1065. You have to search, but Lee's piclab site *does* have piclab!!
  1066.  
  1067. http://www.piclab.com/pub/index.html
  1068.  
  1069. There's also some code that we used in implementing Newton in 
  1070. Fractint.
  1071.  
  1072. Tim
  1073.  
  1074.  
  1075. Thanks for using Fractdev, The Fractint Developer's Discussion List
  1076. Post Message:   fractdev@lists.xmission.com
  1077. Get Commands:   majordomo@lists.xmission.com "help"
  1078. Administrator:  twegner@fractint.org
  1079. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  1080.  
  1081.  
  1082. -------------------------------------------------------------------------------
  1083.  
  1084. From: Tim Wegner <twegner@swbell.net>
  1085. Subject: Re: Piclab
  1086. Date: 27 Nov 2000 23:27:18 -0600
  1087.  
  1088. Scott asked (private email):
  1089.  
  1090. > I can't remember what Piclab did. Can you tell me in a nutshell? All I can 
  1091. > remember hearing about it, was that it came out about the same time as 
  1092. > Fractint did, ie: eons ago in computer-world terms.  8-)
  1093.  
  1094. Piclab is a wonderful command-line image processing program. 
  1095. Let's you make command files that consistently and repeatably do 
  1096. various image processing tasks. For example, I used it to increase 
  1097. the contrast of all the images for my book.
  1098.  
  1099. It's obsolete because it is a DOS program with no GUI. Lee 
  1100. stopped supporting it a long time ago. Bert Tyler and I actually did 
  1101. a bit of maintenance a while ago - I don't think the version at Lee's 
  1102. site is actually the latest one.
  1103.  
  1104. I wrote a lot about piclab in my Image Lab book.
  1105.  
  1106. Tim
  1107.   
  1108.  
  1109. Thanks for using Fractdev, The Fractint Developer's Discussion List
  1110. Post Message:   fractdev@lists.xmission.com
  1111. Get Commands:   majordomo@lists.xmission.com "help"
  1112. Administrator:  twegner@fractint.org
  1113. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  1114.  
  1115.  
  1116. -------------------------------------------------------------------------------
  1117.  
  1118. From: "Thierry B." <oulala@chez.com>
  1119. Subject: Re: Piclab
  1120. Date: 28 Nov 2000 08:14:31 +0000
  1121.  
  1122. Tim Wegner wrote:
  1123. > It's obsolete because it is a DOS program with no GUI. Lee
  1124. > stopped supporting it a long time ago. Bert Tyler and I actually did
  1125. > a bit of maintenance a while ago - I don't think the version at Lee's
  1126. > site is actually the latest one.
  1127.  
  1128.     A long time ago, I've tried to port Piclab on Unix. 
  1129.     I give up because I have not enough time and understanding
  1130.     the code (specially IO) was, hem, hard :)
  1131.  
  1132.     But I can make a new trial... Where are the sources ?
  1133.  
  1134.  
  1135.     not related: is this list archived somewhere ?
  1136.  
  1137. -- 
  1138. Thierry Boudet                                   http://la.buvette.org/
  1139.  
  1140. Thanks for using Fractdev, The Fractint Developer's Discussion List
  1141. Post Message:   fractdev@lists.xmission.com
  1142. Get Commands:   majordomo@lists.xmission.com "help"
  1143. Administrator:  twegner@fractint.org
  1144. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  1145.  
  1146.  
  1147. -------------------------------------------------------------------------------
  1148.  
  1149. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  1150. Subject: Re: Piclab
  1151. Date: 28 Nov 2000 19:48:45 -0600
  1152.  
  1153. Thierry B. wrote:
  1154. >
  1155. > not related: is this list archived somewhere ?
  1156. >
  1157.  
  1158. You might try the following:
  1159.  
  1160.      ftp://ftp.xmission.com/pub/lists/fractdev/archive/
  1161.  
  1162. Sincerely,
  1163. P.N.L.
  1164. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  1165.  
  1166. Thanks for using Fractdev, The Fractint Developer's Discussion List
  1167. Post Message:   fractdev@lists.xmission.com
  1168. Get Commands:   majordomo@lists.xmission.com "help"
  1169. Administrator:  twegner@fractint.org
  1170. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  1171.  
  1172.