home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / fractint / archive / v01.n193 < prev    next >
Internet Message Format  |  1998-05-08  |  42KB

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #193
  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         Saturday, May 9 1998         Volume 01 : Number 193
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Thu, 7 May 1998 00:19:03 -0400
  18. From: George Martin <76440.1143@compuserve.com>
  19. Subject: Re: (fractint) parser question (bailout project)
  20.  
  21. Bud,
  22.  
  23. >
  24. 19.6 documentation says negation is level 2; how can this be, if
  25. subtraction,
  26. which uses the same operator/symbol is level 4?
  27. <
  28.  
  29. Easy, actually. The parser keeps track of whether the next token is to be
  30. an operator or a variable. When a "-" comes up, it is subtraction in the
  31. former case and negation in the latter.
  32.  
  33. George Martin
  34.  
  35. - --------------------------------------------------------------
  36. Thanks for using Fractint, The Fractals and Fractint Discussion List
  37. Post Message:   fractint@lists.xmission.com
  38. Get Commands:   majordomo@lists.xmission.com "help"
  39. Administrator:  twegner@phoenix.net
  40. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  41.  
  42. ------------------------------
  43.  
  44. Date: Thu, 07 May 1998 17:45:36 -0500
  45. From: Janet Preslar <preslar@memphisonline.com>
  46. Subject: Re: (fractint) Partobat problems
  47.  
  48. Linda Allison wrote:
  49.  
  50. > Hi, Janet!
  51. >
  52. > I usually run Fractint under DOS, not in the background of Windows.  If
  53. > I exit Fractint (Hit the "D" key), and try to run it in DOS, I get that
  54. > message.  Also, If I go to the "MS-DOS prompt" in Windows, it won't run
  55. > right.  But If I "Shut down and restart in MD-DOS mode" (through the
  56. > Start button) it runs fine for me.
  57. >
  58. > I have a Pentium (not II), and Win95 if that helps.
  59.  
  60. Linda =97
  61.  
  62. Partobat ran perfectly from MS-DOS mode as you suggested. Thanks. Now if =
  63. I can
  64. get FractInt to recognize the video modes that my d*** video card is capa=
  65. ble of
  66. I'll be in business.
  67.  
  68. Janet
  69.  
  70.  
  71. - --------------------------------------------------------------
  72. Thanks for using Fractint, The Fractals and Fractint Discussion List
  73. Post Message:   fractint@lists.xmission.com
  74. Get Commands:   majordomo@lists.xmission.com "help"
  75. Administrator:  twegner@phoenix.net
  76. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  77.  
  78. ------------------------------
  79.  
  80. Date: Thu, 7 May 1998 19:56:44 -0500 (CDT)
  81. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  82. Subject: (fractint) Stalk Segments Formula
  83.  
  84. comment {
  85. This is a brand new formula.  It uses a modified 3D Stalks
  86. rendering method - modified to plot only a segment of each
  87. stalk.  The reason I developed this method is because the
  88. 3D Stalks method does not work well with the classic
  89. Mandelbrot set equation.  Because the epsilon cross is
  90. centered at the origin and the origin is a critical point,
  91. the midgets were always covered by stalks.  The present
  92. formula starts plotting the stalks away from the origin
  93. and also limits their length so that no stalk crosses a
  94. midget.  The resulting images are quite different, but
  95. kind of nice.
  96.  
  97. I haven't given any suggested values partly because I
  98. haven't used the formula much (just 2 images), and also
  99. because I suspect the values may vary quite widely.
  100. Both of the pars below are for images near the period-8
  101. bulb.
  102.  
  103. Paul Carlson
  104. }
  105.  
  106. frm:Mandel_Segs {; Copyright (c) Paul W. Carlson, 1998
  107.     ;   real(p1) = stalk segment width factor
  108.     ;   imag(p1) = stalk segment length factor
  109.     ;   real(p2) = number of color ranges
  110.     ;   imag(p2) = number of colors in a range
  111.     ;   real(p3) = minimum |w| for stalks
  112.     ;   imag(p3) = minimum iterations
  113.     ;
  114.     c = pixel
  115.     w = z = bailout = iter = range_num = 0
  116.     stalk_width = real(p1)
  117.     num_ranges = real(p2)
  118.     colors_in_range = imag(p2)
  119.     min = real(p3)
  120.     index_factor = (colors_in_range - 1) / stalk_width
  121.     stalk_len = imag(p1) * stalk_width * stalk_width
  122.     :
  123.     w = w * w + c
  124.     ;
  125.     IF (abs(real(w)) <= abs(imag(w)))
  126.     dist = abs(real(w))
  127.     ELSE
  128.     dist = abs(imag(w))
  129.     ENDIF
  130.     IF (dist < stalk_width && iter > imag(p3))
  131.     IF (|w| > min && |w| < stalk_len)
  132.         z = index_factor * dist + range_num * colors_in_range + 1
  133.         bailout = 1
  134.     ENDIF
  135.     ENDIF
  136.     range_num = range_num + 1
  137.     IF (range_num == num_ranges)
  138.         range_num = 0
  139.     ENDIF
  140.     iter = iter + 1
  141.     z = z - iter
  142.     bailout == 0  && |w| < 4
  143. }
  144.  
  145. ssmandm1           { ; Copyright (c) Paul W. Carlson, 1998
  146.   reset=1960 type=formula formulafile=stseg.frm
  147.   formulaname=mandel_segs passes=t
  148.   corners=0.359187462505/0.359145722662/-0.0902845010978/-0.090\
  149.   3822164993/0.359219339554/-0.0903270038299
  150.   params=0.1/35/8/30/0.2/80
  151.   float=y maxiter=3000 inside=253 outside=summ
  152.   colors=0000zz<28>0CCGGz<28>00OfOz<28>I0Kz0f<28>O08z88<28>O00z\
  153.   W0<28>c40zz0<28>aG00zR<28>0C4000<10>000zzz000000
  154.   }
  155.  
  156. ssmandm2           { ; Copyright (c) Paul W. Carlson, 1998
  157.   reset=1960 type=formula formulafile=stseg.frm
  158.   formulaname=mandel_segs passes=t
  159.   center-mag=+0.37227586233300000/+0.09063835370000001/325482/1\
  160.   /-51.799 params=0.1/35/8/30/0.2/140
  161.   float=y maxiter=2000 inside=253 outside=summ
  162.   colors=000z0f<28>O08z88<28>O00zW0<28>c40zz0<28>aG00zR<28>0C40\
  163.   zz<28>0CCGGz<28>00OfOz<28>I0K000<10>000zzz000000
  164.   }
  165.  
  166.  
  167. - --------------------------------------------------------------
  168. Thanks for using Fractint, The Fractals and Fractint Discussion List
  169. Post Message:   fractint@lists.xmission.com
  170. Get Commands:   majordomo@lists.xmission.com "help"
  171. Administrator:  twegner@phoenix.net
  172. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  173.  
  174. ------------------------------
  175.  
  176. Date: Thu, 07 May 1998 21:09:54 -0500
  177. From: Kivryn_H <kivryn_h@bellsouth.net>
  178. Subject: (fractint) Re: Tiera-Zon coloring
  179.  
  180. Hi,
  181.  
  182. Does anyone know how, if possible, to use color maps in Tiera-Zon.  Is
  183. there a way I could convert from map to .clr?  
  184.  
  185. I really like the random cycling that comes with Fractint and Winfract,
  186. which Tiera-Zon doesn't have--It cycles only within a color map (or clr,
  187. as it is called in Tiera-Zon.)  
  188.  
  189. Also, can I use Fractint maps and frms in Winfract, such as the frms and
  190. maps on this list?  
  191.  
  192. Thanks for answering as many of these questions as you can.  Sorry so
  193. many at one time.
  194.  
  195. Best regards,
  196. Kivryn
  197.  
  198. - --------------------------------------------------------------
  199. Thanks for using Fractint, The Fractals and Fractint Discussion List
  200. Post Message:   fractint@lists.xmission.com
  201. Get Commands:   majordomo@lists.xmission.com "help"
  202. Administrator:  twegner@phoenix.net
  203. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  204.  
  205. ------------------------------
  206.  
  207. Date: Thu, 7 May 1998 22:20:56 EDT
  208. From: RBarn0001 <RBarn0001@aol.com>
  209. Subject: Re: (fractint) parser question (bailout project)
  210.  
  211. In a message dated 98-05-07 18:04:58 EDT, you write:
  212.  
  213. << >
  214.  19.6 documentation says negation is level 2; how can this be, if
  215.  subtraction,
  216.  which uses the same operator/symbol is level 4?
  217.  < >>
  218. Excuse me for butting in here, but subtraction has two arguments, while
  219. negation (or positation <g>) is a unary operator. They are different operators
  220. with different priorities. I just finished writing a formula parser for my
  221. Trumand program (not yet released <g>) so I have all these operator priorities
  222. and syntax diagrams running around in my head right now.
  223. Ron
  224.  
  225. - --------------------------------------------------------------
  226. Thanks for using Fractint, The Fractals and Fractint Discussion List
  227. Post Message:   fractint@lists.xmission.com
  228. Get Commands:   majordomo@lists.xmission.com "help"
  229. Administrator:  twegner@phoenix.net
  230. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  231.  
  232. ------------------------------
  233.  
  234. Date: Thu, 07 May 1998 20:02:22 -0700
  235. From: "Angela Wilczynski" <wizzle@beachnet.com>
  236. Subject: Re: (fractint) Re: Tiera-Zon coloring
  237.  
  238. Kir...
  239.  
  240. If you don't get a satisfactory answer from this list about Tiera-Zon's
  241. features, I suggest you contact Stephen Ferguson directly.  He has always been
  242. most generous in answering even my dopier questions. Personally I'm not aware of
  243. a way to convert from a fractint map to a -zon map. And if it's not obvious it
  244. probably can't be done.  I have great respect for the amount of time Stephen has
  245. paid to user interfaces....I found his programs a snap to learn. Good
  246. documentation too.......I sure wish Fractal Orbits....which is great fun....had
  247. just a tad better documentation. 
  248.  
  249. All map files work just fine for winfract.  Just plop them onto your image. The
  250. limitation is that you can't color cycle the maps in winfract unless you reset
  251. your monitor's color resolution to 256 colors. This may or may not be as simple
  252. as the click of a mouse.....Micro-snot does offer a nice little set of
  253. tools....power toys....which instantly change your monitor's resolution
  254. (well....most of the time anyway).  Works for many....but not for all. You can
  255. get the power toys from the microsoft site. Best of luck....you always need that
  256. with a microsnot product.
  257.  
  258. Angela
  259.  
  260.  
  261. Kivryn_H wrote:
  262. > Hi,
  263. > Does anyone know how, if possible, to use color maps in Tiera-Zon.  Is
  264. > there a way I could convert from map to .clr?
  265. > I really like the random cycling that comes with Fractint and Winfract,
  266. > which Tiera-Zon doesn't have--It cycles only within a color map (or clr,
  267. > as it is called in Tiera-Zon.)
  268. > Also, can I use Fractint maps and frms in Winfract, such as the frms and
  269. > maps on this list?
  270. > Thanks for answering as many of these questions as you can.  Sorry so
  271. > many at one time.
  272. > Best regards,
  273. > Kivryn
  274. >
  275.  
  276. - --------------------------------------------------------------
  277. Thanks for using Fractint, The Fractals and Fractint Discussion List
  278. Post Message:   fractint@lists.xmission.com
  279. Get Commands:   majordomo@lists.xmission.com "help"
  280. Administrator:  twegner@phoenix.net
  281. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  282.  
  283. ------------------------------
  284.  
  285. Date: Thu, 7 May 1998 21:58:42 -0700
  286. From: "Jay Hill" <ehill1@san.rr.com>
  287. Subject: (fractint) F.O.T.N. (Fractal of the Night) 7 May 1998 (Reaching) 
  288.  
  289. F.O.T.N. (Fractal of the Night) 7 May 1998 (Reaching) 
  290.  
  291. It seemed forever to Dr. E (and to most of us also). First
  292. down this corridor and then down that corridor. She should
  293. have entered the hospital by another way. And she would
  294. have if she knew her way around here better. For a moment
  295. she thought she saw Dr. J but then realized it was just a poster
  296. begging for donations (Fig. 1) to support the new
  297. fractrauma wing of the hospital. This is where Dr. J probably
  298. was by now, given what had happened to him. 
  299.  
  300. "Oh miss... Oh miss...." Was that someone calling to her?
  301. After all she was wearing her fake candy striped volunteer
  302. outfit and pig tail wig. 
  303.  
  304. She ignored the calls and moved on toward Dr. J's room. The
  305. doctors claimed he is not iterating but she had to know for
  306. herself. 
  307.  
  308. http://home.san.rr.com/jayrhill/FotN/FotN92.html
  309. Figure 1.   Reaching. 
  310.  
  311. Which is more important, a new computer or a new car?
  312. Answer: replace which ever has stopped first. 
  313.  
  314. Jay 
  315.  
  316. The parameter and formula files for Fractint are included
  317. below. Copy them into a quickie.par file for quick loading into
  318. Fractint. For longer term use, copy the frm: block into a
  319. FotN.frm file. But this time leave off the 'frm:' part.  Then copy
  320. the rest (the par parts) into your FotN.par file.
  321.  
  322.  
  323. Reaching { ; (c) Jay Hill, 1998
  324. reset=1960 type=formula
  325. formulafile=onepiece.par formulaname=mixup
  326. center-mag=0.568447/0.109586/10.53932/1/122.499
  327. params=2/0/4/0.5/0.15/0 float=y maxiter=512
  328. inside=bof60
  329. symmetry=xaxis
  330. colors=000KAK<12>hAtjAwiAw<13>MAwKAw\
  331. KAw<109>cZwcKA<109>wcK0cK0cK
  332. savename=reaching
  333.  
  334. frm:MixUp {; (c) Jay Hill, 1998
  335. ; make sure p1 <> p2 and p3 <> 0
  336. u=p1, v=p2, w=p3, 
  337. c=pixel/w, x=v-u, z=(-u/v/w)^(1/x):
  338. z=z^u + w*z^v + c
  339. |z| <= 1000
  340.  
  341. - --------------------------------------------------------------
  342. Thanks for using Fractint, The Fractals and Fractint Discussion List
  343. Post Message:   fractint@lists.xmission.com
  344. Get Commands:   majordomo@lists.xmission.com "help"
  345. Administrator:  twegner@phoenix.net
  346. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  347.  
  348. ------------------------------
  349.  
  350. Date: Fri, 08 May 1998 01:44:47 -0400
  351. From: Sh0cKwAvE <sh0ck@thepentagon.com>
  352. Subject: (fractint) TrueColor Fractint.
  353.  
  354. Hello,
  355.  
  356.   I am new to this list(few days), and was wondering if I could have some
  357. insight on when (if?) fractint will have full high/true color support. I
  358. had hoped to see it fully in the current version, as I have been using
  359. fractint scince the Fractal Creations Book and fractint v15.13. I am a
  360. programmer and if anyone wishes, I will give any help I can to make at the
  361. min 32k color fractals the standard. If this isan overdiscussed/pre-stated
  362. point forgive me. I simply must know. :)
  363.  
  364. Thank you,
  365. Timothy Biggs
  366. Sh0cKeD SoLuTioNS CoNSuLTiNG
  367. sh0ck@thepentagon.com
  368.  
  369. - --------------------------------------------------------------
  370. Thanks for using Fractint, The Fractals and Fractint Discussion List
  371. Post Message:   fractint@lists.xmission.com
  372. Get Commands:   majordomo@lists.xmission.com "help"
  373. Administrator:  twegner@phoenix.net
  374. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  375.  
  376. ------------------------------
  377.  
  378. Date: Fri, 8 May 1998 06:43:54 -0400
  379. From: "Peter Gavin" <pgavin@mindspring.com>
  380. Subject: RE: (fractint) Partobat problems
  381.  
  382. I think that CRT means 'C run time' as in a DLL (dynamic link library).  =
  383. You probably dont have the right one.
  384.  
  385.  
  386.  
  387. Pete
  388. <pgavin@mindspring.com>
  389.  
  390. //  -----Original Message-----
  391. //  From: owner-fractint@lists.xmission.com
  392. //  [mailto:owner-fractint@lists.xmission.com]On Behalf Of Christian =
  393. Strik
  394. //  Sent: Thursday, May 07, 1998 5:18 PM
  395. //  To: fractint
  396. //  Subject: Re: (fractint) Partobat problems
  397. // =20
  398. // =20
  399. //  Hi,
  400. // =20
  401. //  I've seen the seen problems with Pascal code. A simple pascal =
  402. program of
  403. //  mine didn't work on a P2-266. The problem turned out to be=20
  404. //  located in the
  405. //  CRT (cathode ray tube) unit. Even if *no* procedure from crt is=20
  406. //  used in the
  407. //  program, the
  408. //      uses crt;
  409. //  line already causes a Divide by zero error (I believe that's indeed =
  410. RTE
  411. //  200). This was in real dos, no dos window.
  412. // =20
  413. //  I was not able to fix it.
  414. // =20
  415. //  Christian
  416. // =20
  417. //  -----Original Message-----
  418. //  >Hi All!
  419. //  >
  420. //  >I am trying to use partobat.exe for the first time on my new=20
  421. //  Pentium II and
  422. //  get
  423. //  >this error message:
  424. //  >
  425. //  >Runtime error 200 at 0488:0091
  426. //  >
  427. //  >Does anyone have a clue?
  428. //  >
  429. //  >Janet
  430. // =20
  431. // =20
  432. // =20
  433. // =20
  434. // =20
  435. // =20
  436. //  --------------------------------------------------------------
  437. //  Thanks for using Fractint, The Fractals and Fractint Discussion List
  438. //  Post Message:   fractint@lists.xmission.com
  439. //  Get Commands:   majordomo@lists.xmission.com "help"
  440. //  Administrator:  twegner@phoenix.net
  441. //  Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  442. // =20
  443.  
  444.  
  445. - --------------------------------------------------------------
  446. Thanks for using Fractint, The Fractals and Fractint Discussion List
  447. Post Message:   fractint@lists.xmission.com
  448. Get Commands:   majordomo@lists.xmission.com "help"
  449. Administrator:  twegner@phoenix.net
  450. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  451.  
  452. ------------------------------
  453.  
  454. Date: Fri, 08 May 1998 09:27:24 -0500
  455. From: "Justin A. Kolodziej" <4wg7kolodzie@vms.csd.mu.edu>
  456. Subject: Re: (fractint) Partobat problems
  457.  
  458. Peter Gavin wrote:
  459. > I think that CRT means 'C run time' as in a DLL (dynamic link library).  You probably dont have the right one.
  460.  
  461. No, I believe you're wrong.  The crt unit has something to do with manipulating
  462. text on the screen, if I remember correctly.  If only I had my Turbo Pascal 5 I
  463. could tell you for sure... :(
  464.  
  465.  
  466. > //  I've seen the seen problems with Pascal code. A simple pascal program of
  467. > //  mine didn't work on a P2-266. The problem turned out to be
  468. > //  located in the
  469. > //  CRT (cathode ray tube) unit. Even if *no* procedure from crt is
  470. > //  used in the
  471. > //  program, the
  472. > //      uses crt;
  473. > //  line already causes a Divide by zero error (I believe that's indeed RTE
  474. > //  200). This was in real dos, no dos window.
  475.  
  476. - -- 
  477. I sense a great disturbance in the Source.
  478. Justin A. Kolodziej
  479. I am 4wg7kolodzie@vms.csd.mu.edu
  480. Marquette University is http://www.mu.edu
  481.  
  482. - --------------------------------------------------------------
  483. Thanks for using Fractint, The Fractals and Fractint Discussion List
  484. Post Message:   fractint@lists.xmission.com
  485. Get Commands:   majordomo@lists.xmission.com "help"
  486. Administrator:  twegner@phoenix.net
  487. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  488.  
  489. ------------------------------
  490.  
  491. Date: Fri, 08 May 1998 16:06:18 +0100
  492. From: robin bussell <robin.bussell@lucent.com>
  493. Subject: Re: (fractint) Partobat problems
  494.  
  495. I thought this sounded familiar....  if you go and take a look at:
  496.  
  497. http://www.mygale.org/02/renan/
  498.  
  499. which is the homepage for a rather groovy music to pretty patterns program, there in the list of updates is:
  500.  
  501. march 1998, the 1st
  502.   The problem on aestesis dos with the PentiumII is corrected,
  503.   this problem was due to an error in the crt lib of borland pascal.
  504.   I've integrated the patch from borland in the new compilation.
  505.   download the new aestesis dos pack : 
  506.  
  507. A quick look at the borland (now inprise) site reveals:
  508.  
  509. http://www.inprise.com/devsupport/pascal/
  510.  
  511.  Runtime Error 200 - 'Divide by 0' 
  512.  Applications that use the CRT unit may generate this error message
  513.  when running on very fast machines (i.e. Pentium Pro 180 and above).
  514.  The cause of this error is a timing loop that occurs as part of the
  515.  initialization of the CRT unit. This timing loop counts how many clock
  516.  ticks occur within the loop and then that number is divided by 55. The
  517.  result of this division is a value that is too large to fit into an integer
  518.  value. The 'Divide by 0' error message is the catch-all error that is
  519.  displayed when this overflow occurs. 
  520.  
  521.  There are currently no Borland endorsed patches for this problem.
  522.  There are several user provided patches available on the internet that
  523.  patch both the CRT unit as well as existing EXE files. The easiest way
  524.  to obtain these patches is to go to www.altavista.digital.com and
  525.  search on '+ bp7patch.zip + tppatch.zip' without the quotes. 
  526.  
  527.  
  528. So there you go!
  529.  
  530. I'll leave further investigations to those who have Borland Pascal. I hope the
  531. non programming portion of the list doesn't mind this meaningless technobabble, look on it as an insight into the things
  532. that can come and bite you when you least expect it in the ever changing world of Information Technology :-)
  533.  
  534. Cheers,
  535.      Robin.
  536.  
  537. - --------------------------------------------------------------
  538. Thanks for using Fractint, The Fractals and Fractint Discussion List
  539. Post Message:   fractint@lists.xmission.com
  540. Get Commands:   majordomo@lists.xmission.com "help"
  541. Administrator:  twegner@phoenix.net
  542. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  543.  
  544. ------------------------------
  545.  
  546. Date: Fri, 8 May 1998 13:26:06 -0400
  547. From: George Martin <76440.1143@compuserve.com>
  548. Subject: (fractint) gravijul
  549.  
  550. Friends,
  551.  
  552. Some recent postings of the gravijul formula have contained some extra
  553. lines from the "official" version of the formula. These extra lines make
  554. assignments to p1, p2 and p3 in the initialization section of the formula,
  555. which would override different settings in a par entry.
  556.  
  557. People who save formulas as they are posted here should make sure to delete
  558. the rogue version of this very popular formula. Here is the correct
  559. version:
  560.  
  561. gravijul {; r^(-2) Mark Christenson 1/25/98
  562.    ; defaults: p1 = (1,0) p2 = (0,0) p3 = (4,0)
  563.   z = pixel:
  564.   w = fn1(z)
  565.   z = fn3(p1/fn2(w*w)) + p2
  566.   |z| < p3
  567.   ;SOURCE: 98msg.frm
  568. }
  569.  
  570.  
  571. George Martin
  572.  
  573. - --------------------------------------------------------------
  574. Thanks for using Fractint, The Fractals and Fractint Discussion List
  575. Post Message:   fractint@lists.xmission.com
  576. Get Commands:   majordomo@lists.xmission.com "help"
  577. Administrator:  twegner@phoenix.net
  578. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  579.  
  580. ------------------------------
  581.  
  582. Date: Fri, 08 May 1998 17:50:19 GMT
  583. From: luisrmcosta@gyral.com (Luis Ricardo Costa)
  584. Subject: Re: (fractint) Hi / Last version of Fractint
  585.  
  586. Em Thu, 7 May 1998 13:37:56 +0200, escreveu:
  587.  
  588. =46irst, thanks you all... You really helped me!
  589.  
  590. >You can get
  591. >frain195.zip from Simtel.net - ftp://ftp.ip.pt/pub/simtelnet/
  592. Well, Angela Wilczynski said that the last version of Fractint is
  593. frain196.zip... And, I think that I won't have problems to get it. The
  594. server ftp.ip.pt is a very fast FTP - right here in Portugal! I think it
  595. couldn't be better!! :)
  596.  
  597. Thanks,
  598.  
  599. Luis Ricardo Costa
  600. Odivelas =3D> Portugal
  601. luisrmcosta@gyral.com *** ICQ UIN: 4111347
  602. EXPO'98 =3D> http://www.expo98.pt
  603.  
  604. - --------------------------------------------------------------
  605. Thanks for using Fractint, The Fractals and Fractint Discussion List
  606. Post Message:   fractint@lists.xmission.com
  607. Get Commands:   majordomo@lists.xmission.com "help"
  608. Administrator:  twegner@phoenix.net
  609. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  610.  
  611. ------------------------------
  612.  
  613. Date: Fri, 08 May 1998 18:17:32 GMT
  614. From: luisrmcosta@gyral.com (Luis Ricardo Costa)
  615. Subject: Re: (fractint) Hi / Last version of Fractint
  616.  
  617. Em Thu, 07 May 1998 07:23:07 -0700, escreveu:
  618.  
  619. Hi... Just to say that I already have the last version of Fractint in my
  620. computer, and... thanks once more for all the help!
  621.  
  622. Bye,
  623.  
  624. Luis Ricardo Costa
  625. Odivelas =3D> Portugal
  626. luisrmcosta@gyral.com *** ICQ UIN: 4111347
  627. EXPO'98 =3D> http://www.expo98.pt
  628.  
  629. - --------------------------------------------------------------
  630. Thanks for using Fractint, The Fractals and Fractint Discussion List
  631. Post Message:   fractint@lists.xmission.com
  632. Get Commands:   majordomo@lists.xmission.com "help"
  633. Administrator:  twegner@phoenix.net
  634. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  635.  
  636. ------------------------------
  637.  
  638. Date: Sat, 9 May 1998 00:25:51 +0100
  639. From: "Christian Strik" <cstrik.isg@hetnet.nl>
  640. Subject: Re: (fractint) Partobat problems
  641.  
  642. Pete wrote:
  643. >>I think that CRT means 'C run time' as in a DLL (dynamic link library).
  644. You probably dont have the right one.
  645.  
  646. >>Pete
  647. >><pgavin@mindspring.com>
  648.  
  649.  
  650. To my mail
  651.  
  652. //  I've seen the seen problems with Pascal code. A simple pascal program of
  653. //  mine didn't work on a P2-266. The problem turned out to be
  654. //  located in the
  655. //  CRT (cathode ray tube) unit. Even if *no* procedure from crt is
  656. //  used in the
  657. //  program, the
  658. //      uses crt;
  659. //  line already causes a Divide by zero error (I believe that's indeed RTE
  660. //  200). This was in real dos, no dos window.
  661.  
  662. I don't think the CRT means C run time. All the procs and functions of crt
  663. are related to text-mode viewports.
  664.  
  665. Christian
  666.  
  667.  
  668.  
  669.  
  670. - --------------------------------------------------------------
  671. Thanks for using Fractint, The Fractals and Fractint Discussion List
  672. Post Message:   fractint@lists.xmission.com
  673. Get Commands:   majordomo@lists.xmission.com "help"
  674. Administrator:  twegner@phoenix.net
  675. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  676.  
  677. ------------------------------
  678.  
  679. Date: Fri, 8 May 1998 18:48:01 -0500 (CDT)
  680. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  681. Subject: (fractint) Unusual Double Exposure Formula
  682.  
  683. comment {
  684. This formula uses a very unusual coloring method.  The color
  685. range is determined by the iteration count, but the color
  686. within the range is determined by the 3D Stalk method.  The
  687. effect is sort of like a double exposure.
  688.  
  689. I'd appreciate knowing what you think of this method - if you
  690. like it, I'll apply it to some other equations.
  691.  
  692. Paul Carlson
  693. }
  694.  
  695. frm:Dbl_Expos_Newt1 {; Copyright (c) Paul W. Carlson, 1998
  696.     ;
  697.     ;   real(p1) = a factor controlling the size of the stalks
  698.     ;   imag(p1) = minimum iterations
  699.     ;   real(p2) = convergence test distance
  700.     ;   imag(p2) = value of |w| for bailout
  701.     ;   real(p3) = number of color ranges
  702.     ;   imag(p3) = number of colors in a range
  703.     ;
  704.     z = bailout = iter = range_num = dist = 0
  705.     c = pixel
  706.     cm1 = c - 1
  707.     tcm1 = cm1 + cm1
  708.     w = sqrt((1 - c) / 6)
  709.     sc = sqrt(-c)
  710.     stalk_width = real(p1)
  711.     skip_iters = imag(p1)
  712.     cdist = real(p2)
  713.     num_ranges = real(p3)
  714.     colors_in_range = imag(p3)
  715.     index_factor = (colors_in_range - 1) / stalk_width
  716.     :
  717.     w2 = w * w
  718.     w = w - (w2 * w2 + cm1 * w2 - c) / (4 * w2 * w + tcm1 * w)
  719.     ;
  720.     IF (iter > skip_iters)
  721.     IF (abs(real(w)) <= abs(imag(w)))
  722.     min_dist = abs(real(w))
  723.     ELSE
  724.     min_dist = abs(imag(w))
  725.     ENDIF
  726.     IF (dist == 0 && min_dist < stalk_width)
  727.     dist = min_dist
  728.     ENDIF
  729.     IF (|w + (-1,0)| < cdist)
  730.     bailout = 1
  731.     ELSEIF (|w + (1,0)| < cdist)
  732.     bailout = 1
  733.     ELSEIF (|w + sc| < cdist)
  734.     bailout = 1
  735.     ELSEIF (|w - sc| < cdist)
  736.     bailout = 1
  737.     ENDIF
  738.     ENDIF
  739.     IF (bailout == 1)
  740.     z = index_factor * dist + range_num * colors_in_range + 1
  741.     bailout = 1
  742.     ENDIF
  743.     range_num = range_num + 1
  744.     IF (range_num == num_ranges)
  745.         range_num = 0
  746.     ENDIF
  747.     iter = iter + 1
  748.     z = z - iter
  749.     bailout == 0 && |w| < imag(p2)
  750. }
  751.  
  752. dent1m01           { ; Copyright (c) Paul W. Carlson, 1998
  753.   reset=1960 type=formula formulafile=dbexnwt1.frm
  754.   formulaname=dbl_expos_newt1 passes=t
  755.   center-mag=-0.11157800435080620/+0.99375485493326440/11837.12\
  756.   /1/-159.999 params=0.1/0/1e-007/1e+020/8/30
  757.   float=y maxiter=1000 inside=253 outside=summ
  758.   colors=000fOz<28>I0Kz0f<28>O08z88<28>O00zW0<28>c40zz0<28>aG00\
  759.   zR<28>0C40zz<28>0CCGGz<28>00O000<13>000
  760.   }
  761.  
  762. dent1m02           { ; Copyright (c) Paul W. Carlson, 1998
  763.   reset=1960 type=formula formulafile=dbexnwt1.frm
  764.   formulaname=dbl_expos_newt1 passes=t
  765.   center-mag=30.524/1.11022e-016/2.937392/1/90
  766.   params=0.1/10/1e-007/1e+020/8/30
  767.   float=y maxiter=1000 inside=253 outside=summ
  768.   colors=000fOz<28>I0Kz0f<28>O08z88<28>O00zW0<28>c40zz0<28>aG00\
  769.   zR<28>0C40zz<28>0CCGGz<28>00O000<13>000
  770.   }
  771.  
  772. dent1m03           { ; Copyright (c) Paul W. Carlson, 1998
  773.   reset=1960 type=formula formulafile=dbexnwt1.frm
  774.   formulaname=dbl_expos_newt1 passes=t
  775.   center-mag=1046.852803/0/75.29715/1/90
  776.   params=0.1/30/1e-007/1e+020/8/30
  777.   float=y maxiter=3000 inside=253 outside=summ
  778.   colors=000fOz<28>I0Kz0f<28>O08z88<28>O00zW0<28>c40zz0<28>aG00\
  779.   zR<28>0C40zz<28>0CCGGz<28>00O000<12>000zzz
  780.   }
  781.  
  782. dent1m04           { ; Copyright (c) Paul W. Carlson, 1998
  783.   reset=1960 type=formula formulafile=dbexnwt1.frm
  784.   formulaname=dbl_expos_newt1 passes=t
  785.   center-mag=-0.0677116/1.00704/9.861933
  786.   params=0.1/0/1e-007/1e+020/8/30
  787.   float=y maxiter=1000 inside=253 outside=summ
  788.   colors=000fOz<28>I0Kz0f<28>O08z88<28>O00zW0<28>c40zz0<28>aG00\
  789.   zR<28>0C40zz<28>0CCGGz<28>00O000<13>000
  790.   }
  791.  
  792. dent1m05           { ; Copyright (c) Paul W. Carlson, 1998
  793.   reset=1960 type=formula formulafile=dbexnwt1.frm
  794.   formulaname=dbl_expos_newt1 passes=1
  795.   center-mag=+0.99933509405696620/+0.03646054300388649/1916229/\
  796.   1/-1.999 params=0.1/50/1e-007/1e+020/2/125
  797.   float=y maxiter=2000 inside=253 outside=summ
  798.   colors=000zzz<123>VVVzz0<123>aG0000<2>000kkk
  799.   }
  800.  
  801. dent1m06           { ; Copyright (c) Paul W. Carlson, 1998
  802.   reset=1960 type=formula formulafile=dbexnwt1.frm
  803.   formulaname=dbl_expos_newt1 passes=1
  804.   center-mag=+0.99872517189752490/+0.05082299857910686/634.6622\
  805.   /1/-2.999 params=0.1/0/1e-007/1e+020/8/30
  806.   float=y maxiter=1000 inside=253 outside=summ
  807.   colors=000fOz<28>I0Kz0f<28>O08z88<28>O00zW0<28>c40zz0<28>aG00\
  808.   zR<28>0C40zz<28>0CCGGz<28>00O000<13>000
  809.   }
  810.  
  811. dent1m07           { ; Copyright (c) Paul W. Carlson, 1998
  812.   reset=1960 type=formula formulafile=dbexnwt1.frm
  813.   formulaname=dbl_expos_newt1 passes=t
  814.   center-mag=+0.99883132158904500/+0.04833048223560943/11411.46\
  815.   /1/-2.498 params=0.1/45/1e-007/1e+020/8/30
  816.   float=y maxiter=3000 inside=253 outside=summ
  817.   colors=000fOz<28>I0Kz0f<28>O08z88<28>O00zW0<28>c40zz0<28>aG00\
  818.   zR<28>0C40zz<28>0CCGGz<28>00O000<12>000zzz
  819.   }
  820.  
  821. dent1m08           { ; Copyright (c) Paul W. Carlson, 1998
  822.   reset=1960 type=formula formulafile=dbexnwt1.frm
  823.   formulaname=dbl_expos_newt1 passes=t
  824.   center-mag=-0.50135454686508240/+0.84441168145907690/2053494/\
  825.   1/-172.498 params=0.1/0/1e-007/1e+020/2/125
  826.   float=y maxiter=1000 inside=253 outside=summ
  827.   colors=000z88<123>O00zqa<123>WRF000<2>000kkk
  828.   }
  829.  
  830.  
  831. - --------------------------------------------------------------
  832. Thanks for using Fractint, The Fractals and Fractint Discussion List
  833. Post Message:   fractint@lists.xmission.com
  834. Get Commands:   majordomo@lists.xmission.com "help"
  835. Administrator:  twegner@phoenix.net
  836. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  837.  
  838. ------------------------------
  839.  
  840. Date: Fri, 08 May 1998 21:18:53 -0500
  841. From: Bob Margolis <rttyman@wwa.com>
  842. Subject: (fractint) Pars for the course
  843.  
  844. Hi Fractalizens:
  845.  
  846. Adding to your backlog of unviewed par files, this batch uses
  847. Sylvie's formula Gallet-6-03.
  848.  
  849. Bob "Kentucky Fried Fractals" Margolis
  850.  
  851. ==========================
  852.  
  853. Study_#1-5|8|98    { ; (c) by Bob Margolis, 1998
  854.   reset=1960 type=formula formulafile=*.frm
  855.   formulaname=Gallet-6-03 function=tan/asin/asinh passes=1
  856.   center-mag=2.10769e-016/-2.11636e-016/40.50971/1.3333/0/27.474
  857.   params=2.71828182845905/0/3.14159265358979/0/-1/0 float=y
  858.   maxiter=255 decomp=256 viewwindows=1/1/yes/0/0
  859.   colors=0zzxxx<29>000<29>VwwXzzYzz<13>xzzzzzzzzzzz<14>_zzZyyYww<28>344122\
  860.   233<29>xxxzzzzzz<30>000<30>WxxYzzZzz<13>xzzzzzzzz<14>zzz
  861.   }
  862.  
  863. Study_#2-5|8|98    { ; (c) by Bob Margolis, 1998
  864.   reset=1960 type=formula formulafile=*.frm
  865.   formulaname=Gallet-6-03 function=tan/asin/zero passes=1
  866.   center-mag=-1.11022e-016/1.11022e-016/1.449275/1.3333
  867.   params=2.4/0/1.3/0/0.2/0 float=y maxiter=255 decomp=64 
  868.   viewwindows=1/1/yes/0/0
  869.   colors=000yx0zz0<18>T90R60R60<18>xw0zz0yx0<17>T90R60R60<18>xw0zz0yx0<17>\
  870.   T90R60R60<19>zz0<6>R60zz0<18>T90R60R60<18>xw0zz0yx0<17>T90R60R60<18>xw0z\
  871.   z0zz0<18>T90R60R60<17>wu0
  872.   }
  873.  
  874. Study_#3-5|8|98    { ; (c) by Bob Margolis, 1998
  875.   reset=1960 type=formula formulafile=*.frm
  876.   formulaname=Gallet-6-03 function=sin/cosxx/asin passes=1
  877.   center-mag=0.0368/0.0402707/6.170894/1.3333 params=2/0/0.5/0/10/0
  878.   float=y maxiter=255 decomp=64 viewwindows=1/1/yes/0/0
  879.   colors=000LL0<4>ee0ii0ll0pp0rr0uu0<2>yy0zz0zz0<2>ww0uu0rr0pp0<4>YY0UU0PP\
  880.   0LL0GG0KA0<4>aI0eJ0hL0kM0nN0<3>uQ0vR0vR0vR0vR0<3>pO0nN0kM0<2>aI0ZG0VF0RD\
  881.   0OB0KA0000<190>000
  882.   }
  883.  
  884. Study_#4-5|8|98    { ; (c) by Bob Margolis, 1998
  885.   reset=1960 type=formula formulafile=*.frm
  886.   formulaname=Gallet-6-03 function=log/log/log passes=1
  887.   center-mag=+0.21508478763975980/+0.19761468242471290/105.2628/1.3333/45
  888.   params=1/0/1.1/0.65/0/0.42 float=y maxiter=255 invert=0.5/0/0
  889.   decomp=64 viewwindows=1/1/yes/0/0
  890.   colors=000G20L30<2>Y80bA0eD0iG0lK0<2>sX0u`0ve0wj0wj0ve0<2>qS0oO0lK0iG0eD\
  891.   0bA0Y80U60Q40<2>B20205<222>205
  892.   }
  893.  
  894. Gallet-6-03 { ; Sylvie Gallet, 1996
  895.   z = pixel , x = real(z) , y = imag(z) :
  896.   x2 = x*x , y2 = y*y
  897.    x1 = x2 - p1*fn1(y2 + fn2(p2*x) + fn3(p3*y))
  898.    y1 = y2 - p1*fn1(x2 + fn2(p2*y) + fn3(p3*x))
  899.    x = x1 , y = y1
  900.    z = x + flip(y)
  901.     |z| <= 32
  902.   }
  903.  
  904. - --------------------------------------------------------------
  905. Thanks for using Fractint, The Fractals and Fractint Discussion List
  906. Post Message:   fractint@lists.xmission.com
  907. Get Commands:   majordomo@lists.xmission.com "help"
  908. Administrator:  twegner@phoenix.net
  909. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  910.  
  911. ------------------------------
  912.  
  913. Date: Fri, 08 May 1998 22:22:36 -0400
  914. From: Gedeon Peteri <gedeon@InfoAve.Net>
  915. Subject: Re: (fractint) Unusual Double Exposure Formula
  916.  
  917. Paul and/or Joyce Carlson wrote:
  918.  
  919. > I'd appreciate knowing what you think of this method - if you
  920. > like it, I'll apply it to some other equations.
  921.  
  922. Paul,
  923.  
  924. There is not a formula you posted to this list, including this one, I
  925. don't think very highly of, but I am only remiss in saying so often
  926. enough. Watching for your posts and running the pars is one of the
  927. highlights of my experience with this list. So by all means: keep them
  928. coming!
  929.  
  930. Gedeon
  931.  
  932.  
  933. - --------------------------------------------------------------
  934. Thanks for using Fractint, The Fractals and Fractint Discussion List
  935. Post Message:   fractint@lists.xmission.com
  936. Get Commands:   majordomo@lists.xmission.com "help"
  937. Administrator:  twegner@phoenix.net
  938. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  939.  
  940. ------------------------------
  941.  
  942. Date: Fri, 08 May 1998 19:42:27 -0700
  943. From: "Angela Wilczynski" <wizzle@beachnet.com>
  944. Subject: (fractint) SStools.ini help 
  945.  
  946. In a fit of stupidity, I dumped my sstools.ini file. I have a Matrox Millinium
  947. 8meg card which does funny things if I don't set the viewtext thingummy
  948. properly.  Maybe it was some other thingummy.....I forgot!!! 
  949.  
  950. But anyway, if I switch from fiddling around with a fractal image to loading
  951. colors, I get a very goofy image.  To correct the problem I have to re-select
  952. the video mode.
  953.  
  954. I know this group had excellent suggestions which I implemented in my
  955. sstools.ini file and the problem disappeared. 
  956.  
  957. I DID look at the help available in Fractint and at the sstools.ini sample
  958. before I posted my plea. I looked at the Fractint documentation. I KNOW this
  959. issue is covered somewhere on the web.....but where?????? If not at spanky, I
  960. truly believe there ought to be a link off the spanky documenation page to the
  961. explanatory page......with ALL the options described (please). I mean.....Spanky
  962. is the bible, right?? Well...at least the start of the journey to Fractint
  963. enlightenment. <<humble bow to the Fractint wizards>>
  964.  
  965. Thanks for any help.....you can send prophalactic email to wizzle@beachnet.com.
  966.  
  967. Angela
  968.  
  969. - --------------------------------------------------------------
  970. Thanks for using Fractint, The Fractals and Fractint Discussion List
  971. Post Message:   fractint@lists.xmission.com
  972. Get Commands:   majordomo@lists.xmission.com "help"
  973. Administrator:  twegner@phoenix.net
  974. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  975.  
  976. ------------------------------
  977.  
  978. Date: Sat, 9 May 1998 01:01:33 -0500 (CDT)
  979. From: pjcarlsn@ix.netcom.com (Paul and/or Joyce Carlson)
  980. Subject: Re: (fractint) Unusual Double Exposure Formula
  981.  
  982. Gedeon,
  983.  
  984. Thanks for the comments - I really appreciate them.  I consider this
  985. particular rendering method kind of a novelty, and so my asking for
  986. commennts was to try to determine if it was worth my time (and yours)
  987. to do some more formulas using it, rather than use the time to do
  988. formulas using the types of rendering that I have been doing.  Now
  989. that spring has arrived in Colorado, the amount of time I'll be
  990. spending at the computer for the next 5 or 6 months is limited.
  991.  
  992. Paul Carlson
  993.  
  994. >Paul,
  995. >
  996. >There is not a formula you posted to this list, including this one, I
  997. >don't think very highly of, but I am only remiss in saying so often
  998. >enough. Watching for your posts and running the pars is one of the
  999. >highlights of my experience with this list. So by all means: keep them
  1000. >coming!
  1001. >
  1002. >Gedeon
  1003.  
  1004.  
  1005. - --------------------------------------------------------------
  1006. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1007. Post Message:   fractint@lists.xmission.com
  1008. Get Commands:   majordomo@lists.xmission.com "help"
  1009. Administrator:  twegner@phoenix.net
  1010. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1011.  
  1012. ------------------------------
  1013.  
  1014. Date: Sat, 9 May 1998 05:43:50 -0400
  1015. From: "Paul Derbyshire" <pderbysh@usa.net>
  1016. Subject: (fractint) You asked for it.
  1017.  
  1018. Netscape Communicator so-called "Professional Edition" 4.05 crashed again, and
  1019. this time completely locked up my computer, costing precious data. I am
  1020. absolutely stunned that a product this fragile and useless and downright
  1021. *dangerous* ever made it past testing.
  1022.  
  1023. If you carefully inspect the mail headers, you will see that I am no longer
  1024. using Netscape. In fact, you will see that I am using your worst enemy's
  1025. browser and mail tools. Let this be a lesson to you.
  1026.  
  1027. Please note that I am going to be making my experiences with your so-called
  1028. professional products publicly known.
  1029.  
  1030. - --
  1031.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  1032. - -()  <  circles, and bark is not smooth, nor does lightning travel in a
  1033.    `*'  straight line."    -------------------------------------------------
  1034.         -- B. Mandelbrot  |http://www3.sympatico.ca/bob.beland/indexn2f.html
  1035. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  1036. Programmer & Humanist|ICQ: 10423848|
  1037.  
  1038.  
  1039.  
  1040. - --------------------------------------------------------------
  1041. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1042. Post Message:   fractint@lists.xmission.com
  1043. Get Commands:   majordomo@lists.xmission.com "help"
  1044. Administrator:  twegner@phoenix.net
  1045. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1046.  
  1047. ------------------------------
  1048.  
  1049. Date: Sat, 9 May 1998 11:17:19 -0400
  1050. From: "Peter Gavin" <pgavin@mindspring.com>
  1051. Subject: RE: (fractint) You asked for it.
  1052.  
  1053. It's alright, I understand...  But I would suggest Outlook 98 while it's =
  1054. still free :)
  1055.  
  1056. Pete
  1057. <pgavin@mindspring.com>
  1058.  
  1059. //  -----Original Message-----
  1060. //  From: owner-fractint@lists.xmission.com
  1061. //  [mailto:owner-fractint@lists.xmission.com]On Behalf Of Paul =
  1062. Derbyshire
  1063. //  Sent: Saturday, May 09, 1998 5:44 AM
  1064. //  To: postmaster@netscape.com; noc@netscape.com; root@netscape.com
  1065. //  Subject: (fractint) You asked for it.
  1066. // =20
  1067. [snipped]
  1068.  
  1069.  
  1070. - --------------------------------------------------------------
  1071. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1072. Post Message:   fractint@lists.xmission.com
  1073. Get Commands:   majordomo@lists.xmission.com "help"
  1074. Administrator:  twegner@phoenix.net
  1075. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1076.  
  1077. ------------------------------
  1078.  
  1079. Date: Sat, 9 May 1998 11:25:45 -0400
  1080. From: "Peter Gavin" <pgavin@mindspring.com>
  1081. Subject: RE: (fractint) Partobat problems
  1082.  
  1083. Well, what does CRT mean in this case?  I really doubt it's cathode ray =
  1084. tube, because (almost) no program out there directly interfaces with it, =
  1085. and that's only through a video card, which changes resolutions and =
  1086. refresh rates and whatnot.  The most direct manipulation I've ever seen =
  1087. (on a CRT, I mean) is on a demo that changed the refresh rate =
  1088. dynamically to produce cool looking swirls via interference patterns.  =
  1089. (And that would probably be done through the video card.)
  1090.  
  1091. Pete
  1092. <pgavin@mindspring.com>
  1093.  
  1094. //  -----Original Message-----
  1095. //  From: owner-fractint@lists.xmission.com
  1096. //  [mailto:owner-fractint@lists.xmission.com]On Behalf Of robin bussell
  1097. //  Sent: Friday, May 08, 1998 11:06 AM
  1098. //  To: fractint@lists.xmission.com
  1099. //  Subject: Re: (fractint) Partobat problems
  1100. // =20
  1101. // =20
  1102. //  I thought this sounded familiar....  if you go and take a look at:
  1103. // =20
  1104. //  http://www.mygale.org/02/renan/
  1105. // =20
  1106. //  which is the homepage for a rather groovy music to pretty=20
  1107. //  patterns program, there in the list of updates is:
  1108. // =20
  1109. //  march 1998, the 1st
  1110. //    The problem on aestesis dos with the PentiumII is corrected,
  1111. //    this problem was due to an error in the crt lib of borland pascal.
  1112. //    I've integrated the patch from borland in the new compilation.
  1113. //    download the new aestesis dos pack :=20
  1114. // =20
  1115. //  A quick look at the borland (now inprise) site reveals:
  1116. // =20
  1117. //  http://www.inprise.com/devsupport/pascal/
  1118. // =20
  1119. //   Runtime Error 200 - 'Divide by 0'=20
  1120. //   Applications that use the CRT unit may generate this error message
  1121. //   when running on very fast machines (i.e. Pentium Pro 180 and =
  1122. above).
  1123. //   The cause of this error is a timing loop that occurs as part of the
  1124. //   initialization of the CRT unit. This timing loop counts how many =
  1125. clock
  1126. //   ticks occur within the loop and then that number is divided by 55. =
  1127. The
  1128. //   result of this division is a value that is too large to fit=20
  1129. //  into an integer
  1130. //   value. The 'Divide by 0' error message is the catch-all error that =
  1131. is
  1132. //   displayed when this overflow occurs.=20
  1133. // =20
  1134. //   There are currently no Borland endorsed patches for this problem.
  1135. //   There are several user provided patches available on the internet =
  1136. that
  1137. //   patch both the CRT unit as well as existing EXE files. The easiest =
  1138. way
  1139. //   to obtain these patches is to go to www.altavista.digital.com and
  1140. //   search on '+ bp7patch.zip + tppatch.zip' without the quotes.=20
  1141. // =20
  1142. // =20
  1143. //  So there you go!
  1144. // =20
  1145. //  I'll leave further investigations to those who have Borland=20
  1146. //  Pascal. I hope the
  1147. //  non programming portion of the list doesn't mind this=20
  1148. //  meaningless technobabble, look on it as an insight into the things
  1149. //  that can come and bite you when you least expect it in the ever=20
  1150. //  changing world of Information Technology :-)
  1151. // =20
  1152. //  Cheers,
  1153. //       Robin.
  1154. // =20
  1155. //  --------------------------------------------------------------
  1156. //  Thanks for using Fractint, The Fractals and Fractint Discussion List
  1157. //  Post Message:   fractint@lists.xmission.com
  1158. //  Get Commands:   majordomo@lists.xmission.com "help"
  1159. //  Administrator:  twegner@phoenix.net
  1160. //  Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1161. // =20
  1162.  
  1163.  
  1164. - --------------------------------------------------------------
  1165. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1166. Post Message:   fractint@lists.xmission.com
  1167. Get Commands:   majordomo@lists.xmission.com "help"
  1168. Administrator:  twegner@phoenix.net
  1169. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1170.  
  1171. ------------------------------
  1172.  
  1173. End of fractint-digest V1 #193
  1174. ******************************
  1175.  
  1176.