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

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #53
  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      Wednesday, December 31 1997      Volume 01 : Number 053
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Wed, 31 Dec 1997 08:12:11 -0800
  18. From: "Jay Hill" <ehill1@san.rr.com>
  19. Subject: Re: (fractint) The weirdest bird off the planet
  20.  
  21. 3D_Balls_Mset (ORIGIN) {; Copyright (c) Paul W. Carlson, 1997
  22.     ;****************************************************
  23.     ; Always use floating point math and outside=summ.
  24.     ;
  25.     ; Parameters:
  26.     ;   real(p1) = a factor controlling the size of the balls
  27.     ;   imag(p1) = number of iterations to skip
  28.     ;   real(p2) = number of color ranges
  29.     ;   imag(p2) = number of colors in each color range
  30.     ;
  31.     ; Note that the equation variable is w, not z.  Always
  32.     ; initialize z to zero.
  33.     ;****************************************************
  34.     w = 0
  35.     c = pixel
  36.     z = 0
  37.     bailout = 0
  38.     iter = 0
  39.     range_num = 0
  40.     skip = imag(p1)
  41.     ;****************************************************
  42.     ; In the accompanying par file, mndballs.par,
  43.     ; we have 8 color ranges with 30 colors in each range
  44.     ; for a total of 240 colors. The first range starts at
  45.     ; color 1.  Pixels will use color 0 when |w| >= 1000.
  46.     ; Other values can be used here as long as the product
  47.     ; of num_ranges times colors_in_range is less than 255.
  48.     ; Color 0 is reserved for the background color and color
  49.     ; 255 can be used for the inside color.
  50.     ;****************************************************
  51.     num_ranges = real(p2)
  52.     colors_in_range = imag(p2)
  53.     ;****************************************************
  54.     ; Real(p1) controls the size of the balls.
  55.     ; These values will usually be in the range 0.001 to 0.1
  56.     ;****************************************************
  57.     ball_size = real(p1)
  58.     index_factor = (colors_in_range - 1) / ball_size:
  59.     ;****************************************************
  60.     ; The equation being iterated.  Almost any equation
  61.     ; that can be express in terms of a complex variable
  62.     ; and a complex constant will work with this method.
  63.     ; This example uses the standard Mandelbrot set equation.
  64.     ;****************************************************
  65.     w = w * w + c
  66.     ;****************************************************
  67.     ; If the orbit point is within the specified distance of a circle,
  68.     ; set z to the index into the colormap and set the bailout flag.
  69.     ;****************************************************
  70.     IF (iter > skip)
  71.     wr = real(w), wi = imag(w)
  72.     d = wr * wr + (wi - .5) * (wi - .5)
  73.     IF (d < ball_size)
  74.         bailout = 1
  75.         delta = ball_size - d
  76.     ELSEIF ((d = wr * wr + (wi + .5) * (wi + .5)) < ball_size)
  77.         bailout = 1
  78.         delta = ball_size - d
  79.     ELSEIF ((d = (wr - .5) * (wr - .5) + wi * wi) < ball_size)
  80.         bailout = 1
  81.         delta = ball_size - d
  82.     ELSEIF ((d = (wr + .5) * (wr + .5) + wi * wi) < ball_size)
  83.         bailout = 1
  84.         delta = ball_size - d
  85.     ENDIF
  86.     ENDIF
  87.     IF (bailout)
  88.     z = index_factor * delta + range_num * colors_in_range + 1
  89.     ENDIF
  90.     ;****************************************************
  91.     ; Cycle through the range numbers (0 thru num_ranges - 1)
  92.     ; With two color ranges, even iterations use color
  93.     ; range 0, odd iterations use color range 1.
  94.     ;****************************************************
  95.     range_num = range_num + 1
  96.     IF (range_num == num_ranges)
  97.         range_num = 0
  98.     ENDIF
  99.     ;****************************************************
  100.     ; Since we are using outside=summ, we have to subtract
  101.     ; the number of iterations from z.
  102.     ;****************************************************
  103.     iter = iter + 1
  104.     z = z - iter
  105.     ;****************************************************
  106.     ; Finally, we test for bailout
  107.     ;****************************************************
  108.     bailout == 0  && |w| < 1000
  109. }
  110.  
  111. - ----------
  112. > From: Jay Hill <ehill1@san.rr.com>
  113. > To: fractint@lists.xmission.com
  114. > Subject: (fractint) The weirdest bird off the planet
  115. > Date: Tuesday, December 30, 1997 11:24 AM
  116. > Hi Fractintiers,
  117. > Here is a sample using Paul Carlson's 3D Balls formula.
  118. > I thought I'd just take a simple pan down to elephant row
  119. > and see what the balls would look like in one of the spirals.
  120. > Well...
  121. > One should be cautious when using this formula, as this 
  122. > example shows. You can get some images that should 
  123. > not be viewed by humans.  I'm holding the copyright tightly 
  124. > on this one, since it should not be shown to non-fractal 
  125. > types***. They just won't understand and might call the 
  126. > guys in white coats.  ;-)
  127. > *** For a discussion of fractals and personality types, 
  128. > see recent Fractal art list postings.
  129. > Jay
  130. > Weird-Bird         { ; (c) Jay Hill, 1997
  131. >                      ;  *** No Use Of Any Kind Without Doctor's Permission
  132. ***
  133. >                      ; Uses Paul Carlson's formula
  134. >   reset=1960 type=formula formulafile=3dballsm.frm
  135. >   formulaname=3d_balls_mset
  136. >   center-mag=+0.27938299541093040/-0.00842228714524207/1500
  137. >   params=0.0065/150/8/30 float=y maxiter=30000 inside=253 outside=summ
  138. >   colors=000c40<28>zW0aG0<28>zz00C4<28>\
  139. >   0zR0CC<28>0zz00O<25>EEuEEwFFxGGzI0K\
  140. >   <28>fOzO08<28>z0fO00<28>z88000<13>000
  141. >   savename=Weirdbrd
  142. >   }
  143. > -
  144. > ------------------------------------------------------------
  145. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  146. > Post Message:   fractint@xmission.com
  147. > Get Commands:   majordomo@xmission.com "help"
  148. > Administrator:  twegner@phoenix.net
  149. > Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  150.  
  151. - -
  152. - ------------------------------------------------------------
  153. Thanks for using Fractint, The Fractals and Fractint Discussion List
  154. Post Message:   fractint@xmission.com
  155. Get Commands:   majordomo@xmission.com "help"
  156. Administrator:  twegner@phoenix.net
  157. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  158.  
  159. ------------------------------
  160.  
  161. Date: Wed, 31 Dec 1997 10:32:49 -0700
  162. From: Rich Thomson <rthomson@ptc.com>
  163. Subject: Re: (fractint) High precision transcendental functions 
  164.  
  165. In article <199712310448.XAA14517@freenet6.carleton.ca.carleton.ca> ,
  166.     ao950@freenet.carleton.ca (Paul Derbyshire)  writes:
  167. > How big is it?
  168.  
  169. The postscript file, uncompressed, is 288K.  If I put it in a ZIP
  170. file, its 100K or so.
  171.  
  172. > Also, not everyone has Linux and can handle tarred and gzipped files.
  173. > Where can these be obtained as plain zip files?
  174.  
  175. <URL: ftp://ftp.cs.washington.edu/pub/ntemacs/latest/i386/utilities/win95/>
  176. contains EXEs for Win95 and WinNT for: gunzip 1.2.4, gzip 1.2.4, and
  177. tar 1.11.2.  Navigate two directories up from that URL and you'll be
  178. pointed at gzipped tar files for emacs on 95.  If you like using emacs
  179. as an editor, but you've got a win95/NT machine, then you'd probably
  180. like that distribution.
  181.  
  182. If you are already familiar with how these tools work, then that should
  183. be enough.  If not, then they are similar to zip (not winzip) in that
  184. they are command-line oriented tools.  Since they are GNU tools, you
  185. can give them '--help' as a command line argument to see what arguments
  186. they take and their command-line syntax.
  187.  
  188. You can also get gzip directly from prep:
  189. <URL: ftp://prep.ai.mit.edu/pub/gnu/gzip-1.2.4.msdos.exe> (gzip can
  190. compress as well as uncompress; gunzip is just a convenience).
  191.  
  192. prep is the master source location for all GNU and Free Software
  193. Foundation source distributions.  In fact, I have wondered why
  194. fractint didn't use the gmp library for its arbitrary precision
  195. support, but I can't complain about the feature :).
  196. - --
  197.   ``Between stimulus and response is the will to choose.''  -- Steven Covey
  198.  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  199.      3D Paint: The Power to Create in 3D;        Rich Thomson
  200.      email me for more info                rthomson@ptc.com
  201.  
  202. - -
  203. - ------------------------------------------------------------
  204. Thanks for using Fractint, The Fractals and Fractint Discussion List
  205. Post Message:   fractint@xmission.com
  206. Get Commands:   majordomo@xmission.com "help"
  207. Administrator:  twegner@phoenix.net
  208. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  209.  
  210. ------------------------------
  211.  
  212. Date: Wed, 31 Dec 1997 10:44:39 -0700
  213. From: Rich Thomson <rthomson@ptc.com>
  214. Subject: Re: (fractint) Happy New Year! 
  215.  
  216. In article <199712310805.DAA16713@freenet3.carleton.ca.carleton.ca> ,
  217.     ao950@freenet.carleton.ca (Paul Derbyshire)  writes:
  218. > I don't think Fractint has a built-in or formula type called "3Dformula".
  219.  
  220. Repeat after me....
  221.  
  222. "quoted-printable, quoted-printable, quoted-printable...."
  223.  
  224.     "type=3Dformula" => "type=formula"
  225. - --
  226.   ``Between stimulus and response is the will to choose.''  -- Steven Covey
  227.  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  228.      3D Paint: The Power to Create in 3D;        Rich Thomson
  229.      email me for more info                rthomson@ptc.com
  230.  
  231. - -
  232. - ------------------------------------------------------------
  233. Thanks for using Fractint, The Fractals and Fractint Discussion List
  234. Post Message:   fractint@xmission.com
  235. Get Commands:   majordomo@xmission.com "help"
  236. Administrator:  twegner@phoenix.net
  237. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  238.  
  239. ------------------------------
  240.  
  241. Date: Wed, 31 Dec 1997 11:03:25 -0700
  242. From: Rich Thomson <rthomson@ptc.com>
  243. Subject: Re: (fractint) Multiple part files 
  244.  
  245. In article <199712310820.DAA17963@freenet3.carleton.ca.carleton.ca> ,
  246.     ao950@freenet.carleton.ca (Paul Derbyshire)  writes:
  247. > Ah. Once again, someone has whet our collective appetite and tantalized us
  248. > with tyhe promise of a great tool, and then left us hanging with no URL,
  249. > no pointers even for more information.....
  250.  
  251. One need but ask...
  252. an archie <URL: http://www.amdahl.com/internet/archieplex/form.html>
  253. search for "netpbm" zip files turned up:
  254. <URL: ftp://ftp.uni-mannheim.de/systems/windows/win32/winnt-local/>
  255. Which contains "netpbm-e.zip" for the executables and "netpbm-s.zip"
  256. for the source.
  257.  
  258. The definitive netpbm distribution is at
  259. <URL: http://wuarchive.wustl.edu/graphics/graphics/packages/NetPBM/>,
  260. but netpbm as a collective distribution hasn't been updated since 94.
  261. There are various places around that have archived additional patches
  262. and updates.  For instance, the png home page <URL:h
  263. ttp://www.cdrom.com/pub/png/> has pngtopnm and pnmtopng utilities for
  264. converting to and from pnm files to png files.
  265. - --
  266.   ``Between stimulus and response is the will to choose.''  -- Steven Covey
  267.  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  268.      3D Paint: The Power to Create in 3D;        Rich Thomson
  269.      email me for more info                rthomson@ptc.com
  270.  
  271. - -
  272. - ------------------------------------------------------------
  273. Thanks for using Fractint, The Fractals and Fractint Discussion List
  274. Post Message:   fractint@xmission.com
  275. Get Commands:   majordomo@xmission.com "help"
  276. Administrator:  twegner@phoenix.net
  277. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  278.  
  279. ------------------------------
  280.  
  281. Date: Wed, 31 Dec 1997 11:25:30 -0700
  282. From: Rich Thomson <rthomson@ptc.com>
  283. Subject: Re: (fractint) another 24-bit coloring idea 
  284.  
  285. In article <199712310327.TAA01165@prefetch.san.rr.com> ,
  286.     "Jay Hill" <ehill1@san.rr.com>  writes:
  287. > I have looked at Paul's lately, since he has comments. Still not much help.
  288. > He uses z as a color index which is still unclear how that works.
  289.  
  290. I think the trick is to get the index you want into z, since that's
  291. something you can assign to (and you can't assign to iter), and then
  292. use the appropriate coloring method to get the z value used as the
  293. index.  For instance, you can assign something to z and then use
  294. outside=real to use the real component of z as the index.  Similarly,
  295. you can use outside=imag outside=mult outside=summ outside=atan, etc.
  296. For the inside you can use inside=zmag.
  297. - --
  298.   ``Between stimulus and response is the will to choose.''  -- Steven Covey
  299.  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  300.      3D Paint: The Power to Create in 3D;        Rich Thomson
  301.      email me for more info                rthomson@ptc.com
  302.  
  303. - -
  304. - ------------------------------------------------------------
  305. Thanks for using Fractint, The Fractals and Fractint Discussion List
  306. Post Message:   fractint@xmission.com
  307. Get Commands:   majordomo@xmission.com "help"
  308. Administrator:  twegner@phoenix.net
  309. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  310.  
  311. ------------------------------
  312.  
  313. Date: Wed, 31 Dec 1997 18:36:45 -0000
  314. From: "Bagpuss" <bagpuss@iol.ie>
  315. Subject: (fractint) My new homepage!
  316.  
  317. This is a multi-part message in MIME format.
  318.  
  319. - ------=_NextPart_000_0012_01BD161B.0BEF4480
  320. Content-Type: text/plain;
  321.     charset="iso-8859-1"
  322. Content-Transfer-Encoding: quoted-printable
  323.  
  324. Hi all,
  325.     Please come an d lok at my new webpages dedicated to my fractals, =
  326. its still under construction so please forgive the speed (fairly slow).  =
  327. I will speed it up by and by.
  328.     Please let me know what you all think.
  329.  
  330.                 Stephen
  331.  
  332.  
  333.  
  334. - ------=_NextPart_000_0012_01BD161B.0BEF4480
  335. Content-Type: text/html;
  336.     charset="iso-8859-1"
  337. Content-Transfer-Encoding: quoted-printable
  338.  
  339. <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
  340. <HTML>
  341. <HEAD>
  342.  
  343. <META content=3Dtext/html;charset=3Diso-8859-1 =
  344. http-equiv=3DContent-Type>
  345. <META content=3D'"MSHTML 4.71.1712.3"' name=3DGENERATOR>
  346. </HEAD>
  347. <BODY bgColor=3D#ffffff>
  348. <DIV><FONT color=3D#000000 size=3D2>Hi all,</FONT></DIV>
  349. <DIV><FONT color=3D#000000 size=3D2>    Please come an d =
  350. lok at my=20
  351. new webpages dedicated to my fractals, its still under construction so =
  352. please=20
  353. forgive the speed (fairly slow).  I will speed it up by and=20
  354. by.</FONT></DIV>
  355. <DIV><FONT color=3D#000000 size=3D2>    Please let me =
  356. know what you=20
  357. all think.</FONT></DIV>
  358. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  359. <DIV><FONT color=3D#000000=20
  360. size=3D2>          &nbs=
  361. p;    =20
  362. Stephen</FONT></DIV>
  363. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  364. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV></BODY></HTML>
  365.  
  366. - ------=_NextPart_000_0012_01BD161B.0BEF4480--
  367.  
  368.  
  369. - -
  370. - ------------------------------------------------------------
  371. Thanks for using Fractint, The Fractals and Fractint Discussion List
  372. Post Message:   fractint@xmission.com
  373. Get Commands:   majordomo@xmission.com "help"
  374. Administrator:  twegner@phoenix.net
  375. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  376.  
  377. ------------------------------
  378.  
  379. Date: Wed, 31 Dec 1997 18:45:40 -0000
  380. From: "Bagpuss" <bagpuss@iol.ie>
  381. Subject: (fractint) My new homepage!
  382.  
  383. This is a multi-part message in MIME format.
  384.  
  385. - ------=_NextPart_000_0008_01BD161C.4AC59500
  386. Content-Type: text/plain;
  387.     charset="iso-8859-1"
  388. Content-Transfer-Encoding: quoted-printable
  389.  
  390. Oops,
  391.     I dont know how that draft managed to get sent, but since it did... =
  392. :0)
  393.  
  394.     The URL is http://homepages.iol.ie/~bagpuss
  395.  
  396. Please let me know what you think
  397.  
  398.         Stephen
  399.  
  400.  
  401. - ------=_NextPart_000_0008_01BD161C.4AC59500
  402. Content-Type: text/html;
  403.     charset="iso-8859-1"
  404. Content-Transfer-Encoding: quoted-printable
  405.  
  406. <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
  407. <HTML>
  408. <HEAD>
  409.  
  410. <META content=3Dtext/html;charset=3Diso-8859-1 =
  411. http-equiv=3DContent-Type>
  412. <META content=3D'"MSHTML 4.71.1712.3"' name=3DGENERATOR>
  413. </HEAD>
  414. <BODY bgColor=3D#ffffff>
  415. <DIV><FONT color=3D#000000 size=3D2>Oops,</FONT></DIV>
  416. <DIV><FONT color=3D#000000 size=3D2>    I dont know how =
  417. that draft=20
  418. managed to get sent, but since it did... :0)</FONT></DIV>
  419. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  420. <DIV><FONT color=3D#000000 size=3D2>    The URL is <A=20
  421. href=3D"http://homepages.iol.ie/~bagpuss">http://homepages.iol.ie/~bagpus=
  422. s</A></FONT></DIV>
  423. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  424. <DIV><FONT color=3D#000000 size=3D2>Please let me know what you =
  425. think</FONT></DIV>
  426. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  427. <DIV><FONT color=3D#000000 =
  428. size=3D2>       =20
  429. Stephen</FONT></DIV>
  430. <DIV> </DIV></BODY></HTML>
  431.  
  432. - ------=_NextPart_000_0008_01BD161C.4AC59500--
  433.  
  434.  
  435. - -
  436. - ------------------------------------------------------------
  437. Thanks for using Fractint, The Fractals and Fractint Discussion List
  438. Post Message:   fractint@xmission.com
  439. Get Commands:   majordomo@xmission.com "help"
  440. Administrator:  twegner@phoenix.net
  441. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  442.  
  443. ------------------------------
  444.  
  445. Date: Wed, 31 Dec 1997 11:19:44 -0800
  446. From: Wizzle <wizzle@cci-internet.com>
  447. Subject: (fractint) A Wizzle-ish New Year
  448.  
  449. Happy New Year!!!!
  450.  
  451. After being up last night until 4 am trying to find some suitable fractals
  452. for the New Year, I think I suceeeded.  They are posted at
  453.  
  454. http://wizzle.simplenet.com/fractals/seasonal/seasonal.htm
  455.  
  456. There are several new color maps that go along with the images
  457. themselves....and a pair of rose colored glasses especially for Jay!!!!!
  458. Grand Pooh Bahs definetly need fractalspecs!!!! (dontcha love double
  459. entendres??) 
  460.  
  461. Can we have a quicky contest to see who finds the first decent fractal
  462. football???  Seems appropriate for the day ahead.....
  463.  
  464. Anyway...may you and yours have the best year ever
  465.  
  466. Angela aka wizzle
  467.  
  468. - -
  469. - ------------------------------------------------------------
  470. Thanks for using Fractint, The Fractals and Fractint Discussion List
  471. Post Message:   fractint@xmission.com
  472. Get Commands:   majordomo@xmission.com "help"
  473. Administrator:  twegner@phoenix.net
  474. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  475.  
  476. ------------------------------
  477.  
  478. Date: Wed, 31 Dec 1997 11:41:52 -0800
  479. From: Wizzle <wizzle@cci-internet.com>
  480. Subject: Re: (fractint) My new homepage!
  481.  
  482. Stephen....
  483.  
  484.  
  485. I got a tremendous amount of extraneous formatting junk with your posted
  486. email...just out of curiosity...what email program do you use?? 
  487.  
  488.  
  489. Angela
  490.  
  491.  
  492. At 06:45 PM 12/31/97 -0000, you wrote: 
  493.  
  494. >>>>
  495.  
  496. <excerpt><bigger>Oops,</bigger> <bigger>    I dont know how that draft 
  497. managed to get sent, but since it did... :0)</bigger>  <bigger>    The
  498. URL is http://homepages.iol.ie/~bagpuss</bigger>  <bigger>Please let me
  499. know what you think</bigger>  <bigger>         Stephen</bigger>  
  500.  
  501. </excerpt>
  502.  
  503.  
  504.  
  505.  
  506. - -
  507. - ------------------------------------------------------------
  508. Thanks for using Fractint, The Fractals and Fractint Discussion List
  509. Post Message:   fractint@xmission.com
  510. Get Commands:   majordomo@xmission.com "help"
  511. Administrator:  twegner@phoenix.net
  512. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  513.  
  514. ------------------------------
  515.  
  516. Date: Wed, 31 Dec 1997 12:17:00 -0800
  517. From: Wizzle <wizzle@cci-internet.com>
  518. Subject: (fractint) New Year's Wish List
  519.  
  520. I've been part of this forum for a very short time and have had great fun
  521. both learning more about Fractint and meeting you all.....
  522.  
  523. Here is my Fractint wish list for 1998....
  524.  
  525. 1.  Another fun contest
  526. 2.  Winfract that runs under NT with all the groovey DOS features (I'm
  527. stuck with NT at w*rk)
  528. 3.  A better understanding of math so I can do some formulas or at least
  529. appreciate the ones you all make
  530. 4.  Continued fun on the email list and maybe an IRC fractint chat forum
  531. .....let me know if anyone is interested
  532.  
  533. <<hugs>> to all...and a wonderful new year
  534.  
  535. Angela aka wizzle
  536.  
  537.  
  538. - -
  539. - ------------------------------------------------------------
  540. Thanks for using Fractint, The Fractals and Fractint Discussion List
  541. Post Message:   fractint@xmission.com
  542. Get Commands:   majordomo@xmission.com "help"
  543. Administrator:  twegner@phoenix.net
  544. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  545.  
  546. ------------------------------
  547.  
  548. Date: Wed, 31 Dec 1997 10:37:56 -0600
  549. From: "Damien M. Jones" <dmj@fractalus.com>
  550. Subject: Re: (fractint) Binary decomp...256 decomp...*continuous decomp?*
  551.  
  552. Paul,
  553.  
  554.  - Continuous decomp: For every iteration, save a bool for whether it was
  555.  - above or below the X-axis (i.e. imaginary part was positive or negative)
  556.  - at that iteration. At the end, use the most recent bool thusly: set q =
  557.  - 0.5 if it is true (was negative), 0 otherwise. For the second last bool,
  558.  - add 0.25 if true. For the next, 0.125, Continue to desired precision.
  559.  
  560. Y'know, I tried exactly this, based on the description of it in Peitgen et.
  561. al.'s _Chaos and Fractals: New Frontiers of Science_.  And do you know
  562. what?  I couldn't get it to work for the M-set.
  563.  
  564. So I tried it with Julia sets.  And what I discovered is that it works as
  565. long as the imaginary component of C is zero.  Then it works spectacularly
  566. well.  But as soon as the imaginary component becomes non-zero (as it does
  567. for most points in the M-set!) then it stops working and you start seeing
  568. all kinds of weird hyperbolic-like errors.  Interesting, but not right!
  569.  
  570. If you have successfully made this work, even in custom code, I'd love to
  571. see it.
  572.  
  573. Damien M. Jones   \\
  574. dmj@fractalus.com  \\  http://www.icd.com/tsd/  (temporary sanity designs)
  575.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  576.  
  577.  
  578. - -
  579. - ------------------------------------------------------------
  580. Thanks for using Fractint, The Fractals and Fractint Discussion List
  581. Post Message:   fractint@xmission.com
  582. Get Commands:   majordomo@xmission.com "help"
  583. Administrator:  twegner@phoenix.net
  584. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  585.  
  586. ------------------------------
  587.  
  588. Date: Wed, 31 Dec 1997 15:23:28 -0600
  589. From: "Damien M. Jones" <dmj@fractalus.com>
  590. Subject: Re: (fractint) another 24-bit coloring idea
  591.  
  592. Jay,
  593.  
  594.  - I have looked at Paul's lately, since he has comments. Still not much help.
  595.  - He uses z as a color index which is still unclear how that works.  I
  596. thought
  597.  - z is a complex number which is used for periodicity checking, and in the
  598.  - atan, summ, etc options.  If I use z for color index what are the rules.
  599.    ^^^^^^^^^^^
  600.  
  601. This is the key.  If you set your outside coloring to "real", you can write
  602. the formula so that, at some point, you stuff a new value into z.  I do it
  603. on the last iteration, so I can still reap the benefits of periodicity
  604. checking on z.  Other possibilities are to use decomp=256, and then put a
  605. new value into z before bailing out; this is the easiest way to get an
  606. "angle", rather than try to use atan() in the formula itself.
  607.  
  608.  - This seem not to be written up in Fractint docs or frm tutor.
  609.  
  610. No, this seems to be something of a secret. :)
  611.  
  612.  - Where was this posted?  I have over 1000 posts to this list, most on a 
  613.  - server I can't get to at the moment. Even if I could, I need a reference.
  614.  
  615. For the next few days, you should be able to retrieve my collection from
  616. this URL:
  617.  
  618.     http://www.geocities.com/~fractalus/misc/dmj-pub.zip
  619.  
  620. I say for the next few days, because very soon that entire site will be
  621. moved to fractalus.com.  The ZIP file contains a FRM with all the coloring
  622. algorithms.  Most of these are my own variation on the orbit-trap type.
  623. All are extensively commented.  There's also a PAR file with a "starter"
  624. PAR for each formula, which will automatically set the outside coloring
  625. options and force floating-point math.
  626.  
  627.  - > you get to use periodicity checking, solid guessing, or whatever.
  628.  -
  629.  - Really, all these with color index?????  Unclear!!
  630.  
  631. Meaning that all these still work, even when you're writing a FRM which
  632. specifies a color index.  If you use w instead of z as your iterating
  633. value, as some have done, you lose periodicity checking--and unless you
  634. continually change z so it is non-periodic, forgetting to turn periodicity
  635. checking off will make all points appear "periodic".  So I always use z as
  636. my iterating value.
  637.  
  638.  - That is not a problem to me, I have made very nice effects with 16 colors
  639.  - when I have control of the color index.
  640.  
  641. Yes, well, it depends on the effect. :)
  642.  
  643.  - Can you tell me what atan() does in Fractint?  In an equation frm, we can
  644.  - say
  645.  -
  646.  - x = atan(z),     
  647.  -
  648.  - z complex and x complex. Is this a true complex atan?
  649.  
  650. The definitions for how FractInt computes complex trig functions are listed
  651. in the help, linked from the help for type "formula".
  652.  
  653.  - If so and we can set color index plus have periodicity checking, solid
  654.  - guessing, or whatever, then I could make a true field line following image.
  655.  
  656. I would very much like to know how this is done, I've been trying for quite
  657. some time.  I have some ideas for fractals which require access to field
  658. line data, and I can't seem to make it work.
  659.  
  660. Damien M. Jones   \\
  661. dmj@fractalus.com  \\  http://www.icd.com/tsd/  (temporary sanity designs)
  662.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  663.  
  664.  
  665. - -
  666. - ------------------------------------------------------------
  667. Thanks for using Fractint, The Fractals and Fractint Discussion List
  668. Post Message:   fractint@xmission.com
  669. Get Commands:   majordomo@xmission.com "help"
  670. Administrator:  twegner@phoenix.net
  671. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  672.  
  673. ------------------------------
  674.  
  675. Date: Mon, 29 Dec 1997 16:59:50 -0500
  676. From: "Blake Hyde" <bhyde@connectu.net>
  677. Subject: (fractint) Hardware Questions
  678.  
  679.   Ok... i missed it for Christmas, but my birthday is coming up soon and I'm
  680. hoping... Would it be better to get a Pentium 200 MHz motherboard and leave
  681. myself with this old crappy monitor, or a Cyrix 166+ and get a 4mb vram
  682. card/monitor?
  683.   I feel limited in the fractal world. :( - BHyde
  684.  
  685.  
  686. - -
  687. - ------------------------------------------------------------
  688. Thanks for using Fractint, The Fractals and Fractint Discussion List
  689. Post Message:   fractint@xmission.com
  690. Get Commands:   majordomo@xmission.com "help"
  691. Administrator:  twegner@phoenix.net
  692. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  693.  
  694. ------------------------------
  695.  
  696. Date: Wed, 31 Dec 1997 16:52:50 -0500
  697. From: Les St Clair <Les_StClair@compuserve.com>
  698. Subject: Re: (fractint) Happy New Year!
  699.  
  700. Hi Richard,
  701.  
  702. >>Repeat after me....
  703. >>"quoted-printable, quoted-printable, quoted-printable...."
  704.  
  705. I know, you've said it before!! But is there anything that can be done a.=
  706. )
  707. at my end (Compuserve) or  b.) at the Fractint list end to stop this
  708. annoying phenomenon? I've checked all of the options in my e-mail softwar=
  709. e
  710. and I don't see anything that I can change to prevent this happening.
  711.  
  712. To be honest I would post a lot more stuff if I was happy that people cou=
  713. ld
  714. actually use the par files!
  715.  
  716. cheers, Les
  717.  
  718. - -
  719. - ------------------------------------------------------------
  720. Thanks for using Fractint, The Fractals and Fractint Discussion List
  721. Post Message:   fractint@xmission.com
  722. Get Commands:   majordomo@xmission.com "help"
  723. Administrator:  twegner@phoenix.net
  724. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  725.  
  726. ------------------------------
  727.  
  728. Date: Wed, 31 Dec 1997 16:52:46 -0500
  729. From: Les St Clair <Les_StClair@compuserve.com>
  730. Subject: (fractint) A Wizzle-ish New Year
  731.  
  732. Angela aka wizzle wrote:
  733.  
  734. >>Can we have a quicky contest to see who finds the first decent fractal
  735. >>football???  Seems appropriate for the day ahead.....
  736.  
  737. Try this football (actually, ours are round<g>) made from one of Sylvie
  738. Gallet's formulas...
  739.  
  740. cheers, Les
  741.  
  742. G8_12_03           { ; "Goal!"                             t=3D  0:03:46.=
  743. 68
  744.                      ; t=3Dcalc time [h:mm:ss.] using 486DX2-66 at 1024x7=
  745. 68
  746.                      ; (c)1997 by Les St Clair 101461.2032@compuserve.com=
  747.  
  748.   reset=3D1950 type=3Dformula formulafile=3Dfractint.frm
  749.   formulaname=3Dgallet-8-12
  750.   center-mag=3D-4.44089e-016/4.44089e-016/0.6432659/1/2.5
  751.   params=3D8/0.33/1/10 float=3Dy maxiter=3D255 inside=3D0 periodicity=3D0=
  752.  
  753.   colors=3D000KAA<5>311322<4>MDDQFGUHIXJK_LMbNO<2>kSTmTUpVWrWXsXYuYZwZ_<2=
  754. >y`\
  755.   az`az`az`az`a<2>x_`wZ_uYZ<2>pVWnUVkST<3>`LMYKKUII<4>C77855422000323757<=
  756. 3\
  757.   >MHMPKPTNTWPW_S_<2>hZhj`jmbmodoqeq<3>xjxykyyly<3>zlzzlzylyxkxwjw<2>rfrp=
  758. e\
  759.   pncnlali_ifYfdWd<5>KGKHDHDAD979545111212<5>LJPOMSRPWURZXUa<2>c`jeblgcoi=
  760. e\
  761.   qkgs<3>pkxqlyqlzqlzrmzqlzqlz<3>nivmhtkgs<2>eblc`jaYg<2>URZRPWOMSLJP<3>8=
  762. 7\
  763.   A546100100<6>LA0OC0RD0TE0WG0YH0<3>eL0fL0hM0iN0jN0kO0<5>lO0lO0kO0<3>gM0e=
  764. L\
  765.   0dK0bJ0`I0<4>PC0NB0KA0H80<3>520211000<7>OCCQDDTEEVFFYHH<2>cKKdKKfLLgMMi=
  766. N\
  767.   N<2>kOOlOOlOOlOO<2>lOOkOOkOOjNNhMMgMM<5>XGGVFFSEEQDDNBB
  768.   }
  769.  
  770. FRM:Gallet-8-12 { ; Sylvie Gallet, sylvie_gallet@compuserve.com, Mar 1997=
  771.  
  772.               ; Requires periodicity =3D 0
  773.               ; p2: real part =3D radius
  774.               ;     imag part =3D refraction index
  775.    h =3D cabs(pixel) , pinv =3D 1/p1
  776.    bailout =3D 2*p1 , r =3D real(p2) , ir =3D imag(p2)
  777.    IF (h >=3D r)
  778.       z =3D pixel
  779.    ELSE
  780.       beta =3D asin(h/r) , alpha =3D asin(h/(r*ir))
  781.       z =3D (h - sqrt(r*r - h*h) * tan(beta - alpha)) * pixel / h
  782.    ENDIF
  783.    center =3D round(p1*z) * pinv
  784.    IF (cabs(z-center) < 0.45*pinv)
  785.       z =3D cabs(center)
  786.    ELSE
  787.       z =3D cabs(center) + p1
  788.    ENDIF
  789.    :
  790.    z =3D z + pinv
  791.    z <=3D bailout
  792.   ;SOURCE: gallet_8.frm
  793. }
  794.  
  795. - -
  796. - ------------------------------------------------------------
  797. Thanks for using Fractint, The Fractals and Fractint Discussion List
  798. Post Message:   fractint@xmission.com
  799. Get Commands:   majordomo@xmission.com "help"
  800. Administrator:  twegner@phoenix.net
  801. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  802.  
  803. ------------------------------
  804.  
  805. Date: Wed, 31 Dec 1997 16:52:46 -0500
  806. From: Les St Clair <Les_StClair@compuserve.com>
  807. Subject: (fractint) A Wizzle-ish New Year
  808.  
  809. Angela aka wizzle wrote:
  810.  
  811. >>Can we have a quicky contest to see who finds the first decent fractal
  812. >>football???  Seems appropriate for the day ahead.....
  813.  
  814. Try this football (actually, ours are round<g>) made from one of Sylvie
  815. Gallet's formulas...
  816.  
  817. cheers, Les
  818.  
  819. G8_12_03           { ; "Goal!"                             t=3D  0:03:46.=
  820. 68
  821.                      ; t=3Dcalc time [h:mm:ss.] using 486DX2-66 at 1024x7=
  822. 68
  823.                      ; (c)1997 by Les St Clair 101461.2032@compuserve.com=
  824.  
  825.   reset=3D1950 type=3Dformula formulafile=3Dfractint.frm
  826.   formulaname=3Dgallet-8-12
  827.   center-mag=3D-4.44089e-016/4.44089e-016/0.6432659/1/2.5
  828.   params=3D8/0.33/1/10 float=3Dy maxiter=3D255 inside=3D0 periodicity=3D0=
  829.  
  830.   colors=3D000KAA<5>311322<4>MDDQFGUHIXJK_LMbNO<2>kSTmTUpVWrWXsXYuYZwZ_<2=
  831. >y`\
  832.   az`az`az`az`a<2>x_`wZ_uYZ<2>pVWnUVkST<3>`LMYKKUII<4>C77855422000323757<=
  833. 3\
  834.   >MHMPKPTNTWPW_S_<2>hZhj`jmbmodoqeq<3>xjxykyyly<3>zlzzlzylyxkxwjw<2>rfrp=
  835. e\
  836.   pncnlali_ifYfdWd<5>KGKHDHDAD979545111212<5>LJPOMSRPWURZXUa<2>c`jeblgcoi=
  837. e\
  838.   qkgs<3>pkxqlyqlzqlzrmzqlzqlz<3>nivmhtkgs<2>eblc`jaYg<2>URZRPWOMSLJP<3>8=
  839. 7\
  840.   A546100100<6>LA0OC0RD0TE0WG0YH0<3>eL0fL0hM0iN0jN0kO0<5>lO0lO0kO0<3>gM0e=
  841. L\
  842.   0dK0bJ0`I0<4>PC0NB0KA0H80<3>520211000<7>OCCQDDTEEVFFYHH<2>cKKdKKfLLgMMi=
  843. N\
  844.   N<2>kOOlOOlOOlOO<2>lOOkOOkOOjNNhMMgMM<5>XGGVFFSEEQDDNBB
  845.   }
  846.  
  847. FRM:Gallet-8-12 { ; Sylvie Gallet, sylvie_gallet@compuserve.com, Mar 1997=
  848.  
  849.               ; Requires periodicity =3D 0
  850.               ; p2: real part =3D radius
  851.               ;     imag part =3D refraction index
  852.    h =3D cabs(pixel) , pinv =3D 1/p1
  853.    bailout =3D 2*p1 , r =3D real(p2) , ir =3D imag(p2)
  854.    IF (h >=3D r)
  855.       z =3D pixel
  856.    ELSE
  857.       beta =3D asin(h/r) , alpha =3D asin(h/(r*ir))
  858.       z =3D (h - sqrt(r*r - h*h) * tan(beta - alpha)) * pixel / h
  859.    ENDIF
  860.    center =3D round(p1*z) * pinv
  861.    IF (cabs(z-center) < 0.45*pinv)
  862.       z =3D cabs(center)
  863.    ELSE
  864.       z =3D cabs(center) + p1
  865.    ENDIF
  866.    :
  867.    z =3D z + pinv
  868.    z <=3D bailout
  869.   ;SOURCE: gallet_8.frm
  870. }
  871.  
  872. - -
  873. - ------------------------------------------------------------
  874. Thanks for using Fractint, The Fractals and Fractint Discussion List
  875. Post Message:   fractint@xmission.com
  876. Get Commands:   majordomo@xmission.com "help"
  877. Administrator:  twegner@phoenix.net
  878. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  879.  
  880. ------------------------------
  881.  
  882. Date: Wed, 31 Dec 1997 16:21:03 -0600
  883. From: "Damien M. Jones" <dmj@fractalus.com>
  884. Subject: Re: (fractint) Hardware Questions
  885.  
  886. Blake,
  887.  
  888.  -   Ok... i missed it for Christmas, but my birthday is coming up soon and
  889.  - I'm hoping... Would it be better to get a Pentium 200 MHz motherboard
  890.  - and leave myself with this old crappy monitor, or a Cyrix 166+ and get a
  891.  - 4mb vram card/monitor?
  892.  
  893. Depends. :)  A 200MHz Pentium, with properly optimized code, will outrun
  894. the Cyrix 6x86 PR166+ by a factor of... oh, about 9:1.  As in, nine times
  895. faster at certain FPU-based FRACTAL calculations.  For everything else,
  896. especially 95% of other apps, the Cyrix will perform comparably with a
  897. 166MHz Pentium.  So there's something to be said for having a 17" monitor
  898. with a card that will crank out a 1600x1200 display mode.
  899.  
  900. The choice is yours, but personally I'd go for the speed.
  901.  
  902. Damien M. Jones   \\
  903. dmj@fractalus.com  \\  http://www.icd.com/tsd/  (temporary sanity designs)
  904.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  905.  
  906.  
  907. - -
  908. - ------------------------------------------------------------
  909. Thanks for using Fractint, The Fractals and Fractint Discussion List
  910. Post Message:   fractint@xmission.com
  911. Get Commands:   majordomo@xmission.com "help"
  912. Administrator:  twegner@phoenix.net
  913. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  914.  
  915. ------------------------------
  916.  
  917. Date: Wed, 31 Dec 1997 15:26:29 -0700
  918. From: Rich Thomson <rthomson@ptc.com>
  919. Subject: Re: (fractint) Happy New Year! 
  920.  
  921. In article <199712311653_MC2-2DA7-4453@compuserve.com> ,
  922.     Les St Clair <Les_StClair@compuserve.com>  writes:
  923. > I know, you've said it before!! But is there anything that can be done a.=
  924. > )
  925. > at my end (Compuserve) or  b.) at the Fractint list end to stop this
  926. > annoying phenomenon?
  927.  
  928. For your end, its best to ask compuserve technical support since its
  929. their software you're using and their software that's putting
  930. everything in printed-quotable.
  931.  
  932. I don't know of anything that can be done at the list end of things.
  933. - --
  934.   ``Between stimulus and response is the will to choose.''  -- Steven Covey
  935.  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  936.      3D Paint: The Power to Create in 3D;        Rich Thomson
  937.      email me for more info                rthomson@ptc.com
  938.  
  939. - -
  940. - ------------------------------------------------------------
  941. Thanks for using Fractint, The Fractals and Fractint Discussion List
  942. Post Message:   fractint@xmission.com
  943. Get Commands:   majordomo@xmission.com "help"
  944. Administrator:  twegner@phoenix.net
  945. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  946.  
  947. ------------------------------
  948.  
  949. Date: Wed, 31 Dec 1997 14:41:10 -0800
  950. From: "Jay Hill"<jrhill@nosc.mil>
  951. Subject: Re: (fractint) another 24-bit coloring idea
  952.  
  953. D M Jones wrote:
  954.  
  955. - -Jay,
  956. - - - I have looked at Paul's lately, since he has comments. Still not much
  957. help.
  958. - - - He uses z as a color index which is still unclear how that works.  I
  959. thought
  960. - - - z is a complex number which is used for periodicity checking, and in
  961. the
  962. - - - atan, summ, etc options.  If I use z for color index what are the
  963. rules.
  964.    ^^^^^^^^^^^
  965. - -This is the key.  If you set your outside coloring to "real", you can
  966. write
  967. - -the formula so that, at some point, you stuff a new value into z.  I do it
  968. - -on the last iteration, so I can still reap the benefits of periodicity
  969. - -checking on z.
  970.  
  971. Ahh... from your frm file....
  972.  
  973.      IF (|z| > imag(p3) || done >= maxit)   ; Point exceeds bailout /
  974. inside.
  975.        z = point              ; Return closest point.
  976.        done = -1              ; Set flag to force an exit.
  977.      ENDIF
  978.  
  979.      done >= 0           ; Continue if the flag is clear.
  980.  
  981. Just like old Fortran code with flags...  Been a while, since I
  982. now use C++ and structured code.  :-)
  983.  
  984. - -Other possibilities are to use decomp=256, and then put a
  985. - -new value into z before bailing out; this is the easiest way to get an
  986. - -"angle", rather than try to use atan() in the formula itself.
  987. I don't want the decomp angle, it is incorrect!  It does not use atan2.
  988. It looks like I want imag(log(z)).
  989.  
  990. - - - This seem not to be written up in Fractint docs or frm tutor.
  991. - -No, this seems to be something of a secret. :)
  992. Thanks for the secret, I won't tell anyone.  ;-)
  993.  
  994.     http://www.geocities.com/~fractalus/misc/dmj-pub.zip
  995. That is all I needed, thanks.
  996.  
  997.  
  998. - - - > you get to use periodicity checking, solid guessing, or whatever.
  999. - - -
  1000. - - - Really, all these with color index?????  Unclear!!
  1001. - -Meaning that all these still work, even when you're writing a FRM which
  1002. [...] So I always use z as my iterating value.
  1003. Thanks.
  1004.  
  1005. - -The definitions for how FractInt computes complex trig functions are
  1006. listed
  1007. - -in the help, linked from the help for type "formula".
  1008. Thanks.  Page 162 of Fractint docs.
  1009.  
  1010. - - - If so and we can set color index plus have periodicity checking, solid
  1011. - - - guessing, or whatever, then I could make a true field line following
  1012. image.
  1013. - -I would very much like to know how this is done, I've been trying for
  1014. quite
  1015. - -some time.  I have some ideas for fractals which require access to field
  1016. - -line data, and I can't seem to make it work.
  1017. Well that is what New Years Day is for - playing with Fractint.  We'll see
  1018. what I come up with.
  1019.  
  1020. - -Damien M. Jones
  1021.  
  1022. And to Paul D M Jones wrote:
  1023. = - Continuous decomp: For every iteration, save a bool for whether it was
  1024. = - above or below the X-axis (i.e. imaginary part was positive or
  1025. negative)
  1026. = - at that iteration. At the end, use the most recent bool thusly: set q =
  1027. = - 0.5 if it is true (was negative), 0 otherwise. For the second last
  1028. bool,
  1029. = - add 0.25 if true. For the next, 0.125, Continue to desired precision.
  1030. =Y'know, I tried exactly this, based on the description of it in Peitgen
  1031. et.
  1032. =al.'s _Chaos and Fractals: New Frontiers of Science_.  And do you know
  1033. =what?  I couldn't get it to work for the M-set.
  1034.  
  1035. Well it should not work.  The description is wrong or confusing, I'll
  1036. check for which tonight.  IMHO, what you do is iterate until you bailout.
  1037. Then color = white if imag(z)>0 else color = black.  Or the other way
  1038. around... :^).  Should be simple using the deep dark secrets in this post,
  1039. but I won't tell!   :-)
  1040.  
  1041. Jay
  1042.  
  1043.  
  1044.  
  1045. - -
  1046. - ------------------------------------------------------------
  1047. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1048. Post Message:   fractint@xmission.com
  1049. Get Commands:   majordomo@xmission.com "help"
  1050. Administrator:  twegner@phoenix.net
  1051. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1052.  
  1053. ------------------------------
  1054.  
  1055. Date: Wed, 31 Dec 1997 17:47:37 -0500
  1056. From: "Jason Hine" <tumnus@together.net>
  1057. Subject: Re: (fractint) Algorithm Reply
  1058.  
  1059. Paul replied,
  1060. >This was meant for tumnus@together.ne, who as it happens
  1061. has apparently
  1062.  
  1063. Paul and others...
  1064.  
  1065.     The address is indeed not tumnus@together.ne, it is,
  1066. instead, the same, with a 't' at the end.  I never post my
  1067. whole email to any list, to avoid spam and intelligent
  1068. young women from sending me unsolicited email.
  1069.  
  1070. Actually... it was a typo.  Sorry!  :)
  1071. Jason (who would rather be called by Jason than his email
  1072. anyway...) Hine
  1073.  
  1074.  
  1075.  
  1076. - -
  1077. - ------------------------------------------------------------
  1078. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1079. Post Message:   fractint@xmission.com
  1080. Get Commands:   majordomo@xmission.com "help"
  1081. Administrator:  twegner@phoenix.net
  1082. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1083.  
  1084. ------------------------------
  1085.  
  1086. Date: Wed, 31 Dec 1997 18:08:15 -0500
  1087. From: "Jason Hine" <tumnus@together.net>
  1088. Subject: Re: (fractint) My new homepage!
  1089.  
  1090. This is a multi-part message in MIME format.
  1091.  
  1092. - ------=_NextPart_000_00A3_01BD1617.10566C00
  1093. Content-Type: text/plain;
  1094.     charset="iso-8859-1"
  1095. Content-Transfer-Encoding: quoted-printable
  1096.  
  1097. Stephen wrote::
  1098.    =20
  1099.     Hi all,
  1100.         Please come an d lok at my new webpages dedicated to my =
  1101. fractals, its still under construction so please forgive the speed =
  1102. (fairly slow).  I will speed it up by and by.
  1103.         Please let me know what you all think.
  1104.     =20
  1105.                     Stephen
  1106.     =20
  1107.      Very nice... the thumbnails took incredibly long to download, but I =
  1108. soon understood why - they're not really thumbnails as much as reduced =
  1109. views of the 640x480 images they are linked to!  Did you ask Paul =
  1110. Carlson's permission before using his par?  I don't mean to scold, for I =
  1111. am unsure of how all the copyright and policy stuff works myself...=20
  1112.    =20
  1113.     Good job on the page so far, keep it going!  Jason
  1114.  
  1115. - ------=_NextPart_000_00A3_01BD1617.10566C00
  1116. Content-Type: text/html;
  1117.     charset="iso-8859-1"
  1118. Content-Transfer-Encoding: quoted-printable
  1119.  
  1120. <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
  1121. <HTML>
  1122. <HEAD>
  1123.  
  1124. <META content=3Dtext/html;charset=3Diso-8859-1 =
  1125. http-equiv=3DContent-Type><!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 =
  1126. HTML//EN">
  1127. <META content=3D'"MSHTML 4.71.2016.0"' name=3DGENERATOR>
  1128. </HEAD>
  1129. <BODY bgColor=3D#ffffff>
  1130. <BLOCKQUOTE=20
  1131. style=3D"BORDER-LEFT: #000000 solid 2px; MARGIN-LEFT: 5px; PADDING-LEFT: =
  1132. 5px">
  1133.     <DIV><FONT color=3D#000000 face=3DArial size=3D2>Stephen =
  1134. wrote::</FONT></DIV>
  1135.     <DIV> </DIV>
  1136.     <DIV><FONT color=3D#000000 size=3D2>Hi all,</FONT></DIV>
  1137.     <DIV><FONT color=3D#000000 size=3D2>    Please come =
  1138. an d lok at=20
  1139.     my new webpages dedicated to my fractals, its still under =
  1140. construction so=20
  1141.     please forgive the speed (fairly slow).  I will speed it up by =
  1142. and=20
  1143.     by.</FONT></DIV>
  1144.     <DIV><FONT color=3D#000000 size=3D2>    Please let me =
  1145. know what=20
  1146.     you all think.</FONT></DIV>
  1147.     <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  1148.     <DIV><FONT color=3D#000000=20
  1149.     =
  1150. size=3D2>          &nbs=
  1151. p;    =20
  1152.     Stephen</FONT></DIV>
  1153.     <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  1154.     <DIV><FONT color=3D#000000 size=3D2></FONT> <FONT =
  1155. color=3D#000000 face=3DArial=20
  1156.     size=3D2>Very nice... the thumbnails took incredibly long to =
  1157. download, but I=20
  1158.     soon understood why - they're not really thumbnails as much as =
  1159. reduced views=20
  1160.     of the 640x480 images they are linked to!  Did you ask Paul =
  1161. Carlson's=20
  1162.     permission before using his par?  I don't mean to scold, for I =
  1163. am=20
  1164.     unsure of how all the copyright and policy stuff works=20
  1165.     myself... </FONT></DIV>
  1166.     <DIV><FONT color=3D#000000 face=3DArial size=3D2></FONT> </DIV>
  1167.     <DIV><FONT color=3D#000000 face=3DArial size=3D2>Good job on the =
  1168. page so far, keep=20
  1169.     it going!  Jason</FONT></DIV></BLOCKQUOTE></BODY></HTML>
  1170.  
  1171. - ------=_NextPart_000_00A3_01BD1617.10566C00--
  1172.  
  1173.  
  1174. - -
  1175. - ------------------------------------------------------------
  1176. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1177. Post Message:   fractint@xmission.com
  1178. Get Commands:   majordomo@xmission.com "help"
  1179. Administrator:  twegner@phoenix.net
  1180. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1181.  
  1182. ------------------------------
  1183.  
  1184. End of fractint-digest V1 #53
  1185. *****************************
  1186.  
  1187.