home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / fractint / archive / v01.n353 < prev    next >
Internet Message Format  |  1999-01-19  |  41KB

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #353
  4. Reply-To: fractint-digest
  5. Sender: owner-fractint-digest@lists.xmission.com
  6. Errors-To: owner-fractint-digest@lists.xmission.com
  7. Precedence: bulk
  8.  
  9.  
  10. fractint-digest       Tuesday, January 19 1999       Volume 01 : Number 353
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Wed, 13 Jan 1999 13:10:21 -0600
  18. From: "Damien M. Jones" <dmj@fractalus.com>
  19. Subject: RE: (fractint) Terrain Generating Algorithm
  20.  
  21. Dave,
  22.  
  23.  - What do you do about the points on the outside of the field that only
  24.  - have three legal neighbors?
  25.  
  26. You can either average only three ways, wrap, or "reflect" and use a legal
  27. neighbor more than once.
  28.  
  29.  - How much random displacement would you use?
  30.  
  31. Each full step should have half the displacement range of the previous full
  32. step.  This means each half-step should have 1/sqrt(2) the range of the
  33. previous half-step.
  34.  
  35.  - What language was Fractint written in?
  36.  
  37. C and x86 assembly.
  38.  
  39. Damien M. Jones   \\
  40. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  41.                     \\  http://www.fractalus.com/
  42.  
  43. Please do not post my e-mail address on a web site or
  44. in a newsgroup.  Thank you.
  45.  
  46. - --------------------------------------------------------------
  47. Thanks for using Fractint, The Fractals and Fractint Discussion List
  48. Post Message:   fractint@lists.xmission.com
  49. Get Commands:   majordomo@lists.xmission.com "help"
  50. Administrator:  twegner@phoenix.net
  51. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  52.  
  53. ------------------------------
  54.  
  55. Date: Wed, 13 Jan 1999 11:38:49 -0800
  56. From: "Dave Hershey (Volt Computer)" <a-davehe@microsoft.com>
  57. Subject: RE: (fractint) Terrain Generating Algorithm
  58.  
  59. This is what I'm starting to see for the center point.  Please correct me.
  60.  
  61.     p(x,y) = [ p(x1,y1) + p(x1,y2) + p(x2,y1) + p(x2,y2) ] / 4
  62.     p(x,y) = p(x,y) + rand(weight to -weight)
  63.  
  64. Then, for recursion, weight is multiplied by 1/sqrt(2).
  65.  
  66. - -----Original Message-----
  67. From: Damien M. Jones [mailto:dmj@fractalus.com]
  68. Sent: Wednesday, January 13, 1999 11:10 AM
  69. To: fractint@lists.xmission.com
  70. Subject: RE: (fractint) Terrain Generating Algorithm
  71.  
  72.  - How much random displacement would you use?
  73.  
  74. Each full step should have half the displacement range of the previous full
  75. step.  This means each half-step should have 1/sqrt(2) the range of the
  76. previous half-step.
  77.  
  78. - --------------------------------------------------------------
  79. Thanks for using Fractint, The Fractals and Fractint Discussion List
  80. Post Message:   fractint@lists.xmission.com
  81. Get Commands:   majordomo@lists.xmission.com "help"
  82. Administrator:  twegner@phoenix.net
  83. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  84.  
  85. ------------------------------
  86.  
  87. Date: Wed, 13 Jan 1999 14:19:03 -0600
  88. From: "Damien M. Jones" <dmj@fractalus.com>
  89. Subject: RE: (fractint) Terrain Generating Algorithm
  90.  
  91. Dave,
  92.  
  93.  - This is what I'm starting to see for the center point.  Please correct
  94.  - me.
  95.  
  96. No correction necessary, this is precisely right. This is the first half-step.
  97.  
  98.  - Then, for recursion, weight is multiplied by 1/sqrt(2).
  99.  
  100. Right.
  101.  
  102. What you do when you hit 0 or 255 is up to you. Personally, I would
  103. generate the entire thing at 16- or 32-bit precision, then check for the
  104. lower and upper bounds and scale/offset accordingly. You could also just
  105. clip intermediate values, or wrap. Wrapping is, of course, bad. :)
  106.  
  107. Damien M. Jones   \\
  108. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  109.                     \\  http://www.fractalus.com/
  110.  
  111. Please do not post my e-mail address on a web site or
  112. in a newsgroup.  Thank you.
  113.  
  114. - --------------------------------------------------------------
  115. Thanks for using Fractint, The Fractals and Fractint Discussion List
  116. Post Message:   fractint@lists.xmission.com
  117. Get Commands:   majordomo@lists.xmission.com "help"
  118. Administrator:  twegner@phoenix.net
  119. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  120.  
  121. ------------------------------
  122.  
  123. Date: Wed, 13 Jan 1999 12:27:27 -0800
  124. From: "Dave Hershey (Volt Computer)" <a-davehe@microsoft.com>
  125. Subject: RE: (fractint) Terrain Generating Algorithm
  126.  
  127. This approach starts with a square, then moves onto a diamond, then back to
  128. a square (a smaller one than the first).  From the first square to the
  129. diamond, weight is multiplied by 1/sqrt(2).  Does multiplying weight by
  130. 1/sqrt(2) a second time equate to weight/2?  I'm just double-checking my
  131. math here.
  132.  
  133. - -----Original Message-----
  134. From: Damien M. Jones [mailto:dmj@fractalus.com]
  135. Sent: Wednesday, January 13, 1999 12:19 PM
  136. To: fractint@lists.xmission.com
  137. Subject: RE: (fractint) Terrain Generating Algorithm
  138.  
  139.  
  140. Dave,
  141.  
  142.  - This is what I'm starting to see for the center point.  Please correct
  143.  - me.
  144.  
  145. No correction necessary, this is precisely right. This is the first
  146. half-step.
  147.  
  148.  - Then, for recursion, weight is multiplied by 1/sqrt(2).
  149.  
  150. Right.
  151.  
  152. What you do when you hit 0 or 255 is up to you. Personally, I would
  153. generate the entire thing at 16- or 32-bit precision, then check for the
  154. lower and upper bounds and scale/offset accordingly. You could also just
  155. clip intermediate values, or wrap. Wrapping is, of course, bad. :)
  156.  
  157. Damien M. Jones   \\
  158. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  159.                     \\  http://www.fractalus.com/
  160.  
  161. Please do not post my e-mail address on a web site or
  162. in a newsgroup.  Thank you.
  163.  
  164. - --------------------------------------------------------------
  165. Thanks for using Fractint, The Fractals and Fractint Discussion List
  166. Post Message:   fractint@lists.xmission.com
  167. Get Commands:   majordomo@lists.xmission.com "help"
  168. Administrator:  twegner@phoenix.net
  169. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  170.  
  171. - --------------------------------------------------------------
  172. Thanks for using Fractint, The Fractals and Fractint Discussion List
  173. Post Message:   fractint@lists.xmission.com
  174. Get Commands:   majordomo@lists.xmission.com "help"
  175. Administrator:  twegner@phoenix.net
  176. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  177.  
  178. ------------------------------
  179.  
  180. Date: Wed, 13 Jan 1999 15:05:20 -0600
  181. From: "Damien M. Jones" <dmj@fractalus.com>
  182. Subject: RE: (fractint) Terrain Generating Algorithm
  183.  
  184. Dave,
  185.  
  186.  - This approach starts with a square, then moves onto a diamond, then
  187.  - back to a square (a smaller one than the first).
  188.  
  189. Right.
  190.  
  191.  - From the first square to the diamond, weight is multiplied by 1/sqrt(2).
  192.  - Does multiplying weight by 1/sqrt(2) a second time equate to weight/2?
  193.  
  194. Yes.
  195.  
  196. Damien M. Jones   \\
  197. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  198.                     \\  http://www.fractalus.com/
  199.  
  200. Please do not post my e-mail address on a web site or
  201. in a newsgroup.  Thank you.
  202.  
  203. - --------------------------------------------------------------
  204. Thanks for using Fractint, The Fractals and Fractint Discussion List
  205. Post Message:   fractint@lists.xmission.com
  206. Get Commands:   majordomo@lists.xmission.com "help"
  207. Administrator:  twegner@phoenix.net
  208. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  209.  
  210. ------------------------------
  211.  
  212. Date: Wed, 13 Jan 1999 13:05:06 -0800
  213. From: "Dave Hershey (Volt Computer)" <a-davehe@microsoft.com>
  214. Subject: RE: (fractint) Terrain Generating Algorithm
  215.  
  216. Damien!  Thank you!  It's working beautifully now.
  217.  
  218. - -----Original Message-----
  219. From: Damien M. Jones [mailto:dmj@fractalus.com]
  220. Sent: Wednesday, January 13, 1999 12:19 PM
  221. To: fractint@lists.xmission.com
  222. Subject: RE: (fractint) Terrain Generating Algorithm
  223.  
  224.  
  225. Dave,
  226.  
  227.  - This is what I'm starting to see for the center point.  Please correct
  228.  - me.
  229.  
  230. No correction necessary, this is precisely right. This is the first
  231. half-step.
  232.  
  233.  - Then, for recursion, weight is multiplied by 1/sqrt(2).
  234.  
  235. Right.
  236.  
  237. What you do when you hit 0 or 255 is up to you. Personally, I would
  238. generate the entire thing at 16- or 32-bit precision, then check for the
  239. lower and upper bounds and scale/offset accordingly. You could also just
  240. clip intermediate values, or wrap. Wrapping is, of course, bad. :)
  241.  
  242. Damien M. Jones   \\
  243. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  244.                     \\  http://www.fractalus.com/
  245.  
  246. Please do not post my e-mail address on a web site or
  247. in a newsgroup.  Thank you.
  248.  
  249. - --------------------------------------------------------------
  250. Thanks for using Fractint, The Fractals and Fractint Discussion List
  251. Post Message:   fractint@lists.xmission.com
  252. Get Commands:   majordomo@lists.xmission.com "help"
  253. Administrator:  twegner@phoenix.net
  254. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  255.  
  256. - --------------------------------------------------------------
  257. Thanks for using Fractint, The Fractals and Fractint Discussion List
  258. Post Message:   fractint@lists.xmission.com
  259. Get Commands:   majordomo@lists.xmission.com "help"
  260. Administrator:  twegner@phoenix.net
  261. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  262.  
  263. ------------------------------
  264.  
  265. Date: Wed, 13 Jan 1999 18:19:08 EST
  266. From: PKyleCA@aol.com
  267. Subject: Re: (fractint) Next version of Fractint
  268.  
  269. In a message dated 01/13/1999 1:07:35 AM Pacific Standard Time,
  270. les_stclair@crosstrees.prestel.co.uk writes:
  271.  
  272. << The great fun is that you can re-work your favourite Fractint images,
  273. converting
  274.  them to true color, adding layers, manipulating layer transparency with the
  275.  alpha-channel etc... The possibilities are literally endless! >>
  276.  
  277.  
  278. Is this done by importing the par or the gif?   I've not explored UF  yet. 
  279.  
  280. Thanks.
  281.  
  282. - --------------------------------------------------------------
  283. Thanks for using Fractint, The Fractals and Fractint Discussion List
  284. Post Message:   fractint@lists.xmission.com
  285. Get Commands:   majordomo@lists.xmission.com "help"
  286. Administrator:  twegner@phoenix.net
  287. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  288.  
  289. ------------------------------
  290.  
  291. Date: Wed, 13 Jan 1999 17:34:54 -0600
  292. From: "Damien M. Jones" <dmj@fractalus.com>
  293. Subject: Re: (fractint) Next version of Fractint
  294.  
  295. At 06:19 PM 1/13/99 EST, PKyleCA@aol.com wrote:
  296.  
  297.  - Is this done by importing the par or the gif?   I've not explored UF yet. 
  298.  
  299. You import the PAR. There are a very few things which are not importable,
  300. but most things come in fine.
  301.  
  302. Ultra Fractal is not a complete replacement for FractInt. It doesn't do IFS
  303. fractals, it doesn't do any strange attractors... just escape-time
  304. fractals, like Mandelbrot, Phoenix, and anything from the formula parser.
  305.  
  306. Damien M. Jones   \\
  307. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  308.                     \\  http://www.fractalus.com/
  309.  
  310. Please do not post my e-mail address on a web site or
  311. in a newsgroup.  Thank you.
  312.  
  313. - --------------------------------------------------------------
  314. Thanks for using Fractint, The Fractals and Fractint Discussion List
  315. Post Message:   fractint@lists.xmission.com
  316. Get Commands:   majordomo@lists.xmission.com "help"
  317. Administrator:  twegner@phoenix.net
  318. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  319.  
  320. ------------------------------
  321.  
  322. Date: Thu, 14 Jan 1999 10:52:03 +1100
  323. From: "Mark Townsend" <marktown@netspace.net.au>
  324. Subject: (fractint) Please help with simple(?) math problem
  325.  
  326. Hi everyone...
  327.  
  328. For my first post to this list I'd like to ask for help with a little
  329. probelm I'm having.
  330.  
  331. It's sort of Fractint related--I'm writing a program for creating and
  332. editing colour maps. One feature will be to generate palettes with
  333. waveforms, but I'm really bad at maths.
  334.  
  335. To create a sine wave I use:
  336.  
  337. amp*sin(freq*time+phase),
  338.  
  339. and I stumbled upon a square wave as:
  340.  
  341. amp*sign(sin(freq*time+phase)).
  342.  
  343. Can anyone suggest equivalent fomulas for generating sawtooth and triangle
  344. waves?
  345.  
  346. If I get this program finished I can get around to actually playing with
  347. fractals.
  348.  
  349. Thank you.
  350.  
  351. Mark Townsend
  352.  
  353.  
  354.  
  355.  
  356. - --------------------------------------------------------------
  357. Thanks for using Fractint, The Fractals and Fractint Discussion List
  358. Post Message:   fractint@lists.xmission.com
  359. Get Commands:   majordomo@lists.xmission.com "help"
  360. Administrator:  twegner@phoenix.net
  361. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  362.  
  363. ------------------------------
  364.  
  365. Date: Wed, 13 Jan 1999 18:26:02 -0700 (MST)
  366. From: Kerry Mitchell <lkmitch@primenet.com>
  367. Subject: Re: (fractint) Please help with simple(?) math problem
  368.  
  369. You can generate a sawtooth wave using the mod() function:
  370.  
  371. y=amp*mod(freq*x)
  372.  
  373. will give a y wave that linearly ramps from 0 to amp, then drops
  374. immediately back to 0.  Changing freq controls the width of the ramp.
  375.  
  376. - -------------------------------------------------------------------------------
  377. Kerry Mitchell
  378. lkmitch@primenet.com    www.primenet.com/~lkmitch/
  379. - -------------------------------------------------------------------------------
  380.  
  381. On Thu, 14 Jan 1999, Mark Townsend wrote:
  382.  
  383. > Can anyone suggest equivalent fomulas for generating sawtooth and triangle
  384. > waves?
  385.  
  386.  
  387. - --------------------------------------------------------------
  388. Thanks for using Fractint, The Fractals and Fractint Discussion List
  389. Post Message:   fractint@lists.xmission.com
  390. Get Commands:   majordomo@lists.xmission.com "help"
  391. Administrator:  twegner@phoenix.net
  392. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  393.  
  394. ------------------------------
  395.  
  396. Date: Wed, 13 Jan 1999 21:03:44 -0500
  397. From: Dennis Murphy <ldmurphy@sprintmail.com>
  398. Subject: Re: (fractint) Video output question
  399.  
  400. The easiest way I know is to use a VCR camera, and just film the image from your
  401. monitor. Ever try it?
  402. Ian Kaplan wrote:
  403.  
  404. > > My question is:
  405. > >  Is there any way I can send the images from my monitor while in fractint out
  406. > > to a VCR or TV.
  407.  
  408.  
  409. - --------------------------------------------------------------
  410. Thanks for using Fractint, The Fractals and Fractint Discussion List
  411. Post Message:   fractint@lists.xmission.com
  412. Get Commands:   majordomo@lists.xmission.com "help"
  413. Administrator:  twegner@phoenix.net
  414. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  415.  
  416. ------------------------------
  417.  
  418. Date: Thu, 14 Jan 1999 14:31:07 +1100
  419. From: "Mark Townsend" <marktown@netspace.net.au>
  420. Subject: Re: (fractint) Please help with simple(?) math problem
  421.  
  422. Kerry Mitchell wrote:
  423.  
  424. >You can generate a sawtooth wave using the mod() function:
  425. >
  426. >y=amp*mod(freq*x)
  427. >
  428. >will give a y wave that linearly ramps from 0 to amp, then drops
  429. >immediately back to 0.  Changing freq controls the width of the ramp.
  430.  
  431.  
  432. Thanks for the suggestion, Kerry. That's basically what I've been using for
  433. ramps, but I wanted to create waves at the same frequency and phase as the
  434. sine wave. I seem to have the sawtooth worked out now--with the
  435. serendipitous use of Pi and the fact that the byte data type automatically
  436. clocks to zero when you increment it too high.
  437.  
  438. Mark Townsend
  439.  
  440.  
  441.  
  442. - --------------------------------------------------------------
  443. Thanks for using Fractint, The Fractals and Fractint Discussion List
  444. Post Message:   fractint@lists.xmission.com
  445. Get Commands:   majordomo@lists.xmission.com "help"
  446. Administrator:  twegner@phoenix.net
  447. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  448.  
  449. ------------------------------
  450.  
  451. Date: Thu, 14 Jan 1999 12:30:02 -0000 (GMT)
  452. From: Jim Watson <jimbo@eureka.lk>
  453. Subject: (fractint) perl based partobat utility
  454.  
  455. Dear All,
  456.  
  457. I've just finished writing a Perl script that reads par files and
  458. generates batch files, just as partobat does.  However, unlike partobat I
  459. can run it on my Linux system with xfractint (the Unix port of fractint). 
  460. It should also work on dos based systems (that support perl) but I've not
  461. tested on such systems.  If anybody would like a copy, please drop me a
  462. line (off the list) and I'll send a copy on.  The program is freeware and
  463. my be freely used and passed on.
  464.  
  465. Best Regards
  466.  
  467.  
  468. Jim Watson
  469. - ------------------------------------
  470. Marconi Communications,
  471. VOA (Sri Lanka) Project Site Office,
  472. P.O. Box 14,
  473. Negombo,
  474. Sri Lanka.
  475.  
  476. Fax : + 94 32 54584
  477. Tel : + 94 71 770542
  478.  
  479.  
  480. - --------------------------------------------------------------
  481. Thanks for using Fractint, The Fractals and Fractint Discussion List
  482. Post Message:   fractint@lists.xmission.com
  483. Get Commands:   majordomo@lists.xmission.com "help"
  484. Administrator:  twegner@phoenix.net
  485. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  486.  
  487. ------------------------------
  488.  
  489. Date: Thu, 14 Jan 1999 05:07:03 -0500
  490. From: Barry N Merenoff <110144.2274@compuserve.com>
  491. Subject: Re: (fractint) Please help with simple(?) math problem
  492.  
  493. From Kerry Mitchell's formula, you could put
  494. if(amp>.5) amp=3D1-amp
  495. to make a triangular wave.
  496.  
  497. Note that Kerry Mitchell's sawtooth ranges from 0 to 1. This triangular
  498. wave ranges from 0 to .5.
  499.  
  500. Collin Merenoff
  501.  
  502. - --------------------------------------------------------------
  503. Thanks for using Fractint, The Fractals and Fractint Discussion List
  504. Post Message:   fractint@lists.xmission.com
  505. Get Commands:   majordomo@lists.xmission.com "help"
  506. Administrator:  twegner@phoenix.net
  507. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  508.  
  509. ------------------------------
  510.  
  511. Date: Thu, 14 Jan 1999 05:19:44 -0500
  512. From: Barry N Merenoff <110144.2274@compuserve.com>
  513. Subject: (fractint) fractal formula
  514.  
  515. I know this isn't very original, but I have found an enhancement to Kerry=
  516.  
  517. Mitchell's contest4 formula. It consists of changing the commands before
  518. the colon to
  519. z=3Dpixel, c=3D3*sqr(pixel)/(2*pixel-1)
  520.  
  521. Collin Merenoff
  522.  
  523. - --------------------------------------------------------------
  524. Thanks for using Fractint, The Fractals and Fractint Discussion List
  525. Post Message:   fractint@lists.xmission.com
  526. Get Commands:   majordomo@lists.xmission.com "help"
  527. Administrator:  twegner@phoenix.net
  528. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  529.  
  530. ------------------------------
  531.  
  532. Date: Fri, 15 Jan 1999 00:08:05 +1100
  533. From: "Mark Townsend" <marktown@netspace.net.au>
  534. Subject: Re: (fractint) Please help with simple(?) math problem
  535.  
  536. Collin Merenoff wrote:
  537.  
  538.  
  539. >>From Kerry Mitchell's formula, you could put
  540. >if(amp>.5) amp=1-amp
  541. >to make a triangular wave.
  542.  
  543.  
  544. Thanks. I'm still working on it. Kerry's reply got me thinking--I should
  545. modify the sine wave formula to fit the ramp and triangle, rather than the
  546. other way around. After a bit more research I discovered how to make a sine
  547. wave with a frequency of 1 fit the range of the map exactly, and that makes
  548. it easier to scale the frequencies of the other waves. The hardest part
  549. seems to be getting the waveform's phases to match.
  550.  
  551. Mark Townsend
  552.  
  553.  
  554. - --------------------------------------------------------------
  555. Thanks for using Fractint, The Fractals and Fractint Discussion List
  556. Post Message:   fractint@lists.xmission.com
  557. Get Commands:   majordomo@lists.xmission.com "help"
  558. Administrator:  twegner@phoenix.net
  559. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  560.  
  561. ------------------------------
  562.  
  563. Date: Thu, 14 Jan 1999 13:27:17 -0500
  564. From: Barry N Merenoff <110144.2274@compuserve.com>
  565. Subject: (fractint) video modes
  566.  
  567. I asked a few days ago about how I can get the 1600x1200x256 mode in
  568. Fractint. Sylvie Gallet gave me a program that lists all the VESA-complia=
  569. nt
  570. modes on one's adapter. The 1600x1200x256 mode in which I run Windows is
  571. not listed among them. When Sylvie Gallet found this out, she never
  572. bothered to tell me how I can get around this problem. Could someone who
  573. knows about C and Assembly please tell me how I can modify the source cod=
  574. e
  575. to get this mode to work in Fractint?
  576.  
  577. Please don't think the answer will be too complicated for me.
  578.  
  579. Collin Merenoff
  580.  
  581. - --------------------------------------------------------------
  582. Thanks for using Fractint, The Fractals and Fractint Discussion List
  583. Post Message:   fractint@lists.xmission.com
  584. Get Commands:   majordomo@lists.xmission.com "help"
  585. Administrator:  twegner@phoenix.net
  586. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  587.  
  588. ------------------------------
  589.  
  590. Date: Thu, 14 Jan 1999 13:29:55 -0500
  591. From: Barry N Merenoff <110144.2274@compuserve.com>
  592. Subject: (fractint) Re: video modes
  593.  
  594. Never mind, I just got an answer from Sylvie Gallet.
  595.  
  596. Sorry! :)
  597.  
  598. Collin Merenoff
  599.  
  600. - --------------------------------------------------------------
  601. Thanks for using Fractint, The Fractals and Fractint Discussion List
  602. Post Message:   fractint@lists.xmission.com
  603. Get Commands:   majordomo@lists.xmission.com "help"
  604. Administrator:  twegner@phoenix.net
  605. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  606.  
  607. ------------------------------
  608.  
  609. Date: Thu, 14 Jan 1999 13:37:20 -0500
  610. From: Barry N Merenoff <110144.2274@compuserve.com>
  611. Subject: (fractint) Re: video modes
  612.  
  613. She did, however, say that she's not a programmer. Is one of you a
  614. programmer that would know how to do this?
  615.  
  616. Collin Merenoff
  617.  
  618. - --------------------------------------------------------------
  619. Thanks for using Fractint, The Fractals and Fractint Discussion List
  620. Post Message:   fractint@lists.xmission.com
  621. Get Commands:   majordomo@lists.xmission.com "help"
  622. Administrator:  twegner@phoenix.net
  623. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  624.  
  625. ------------------------------
  626.  
  627. Date: Fri, 15 Jan 1999 10:15:47 GMT
  628. From: "Andrew Coppin" <KHCM8AC@dmu.ac.uk>
  629. Subject: (fractint) True Colour
  630.  
  631. How are the "True-Colour" video modes in FractInt supposed to work? 
  632. All I get is lots of shades of blue and green. The video mode entries 
  633. don't seem to say how many colours you get in these modes, they just 
  634. say things like "15k", which means nothing to me.
  635.  
  636. On a slightly different note, would it be possible to create a disk 
  637. video mode using more than 256 colours just be editing FRACTINT.CFG? 
  638. Sorry, I'm just greedy like that!
  639. Nam et ipsa scientia potestus est!
  640. Andrew Orphi Coppin
  641. DMU MK.
  642.  
  643. - --------------------------------------------------------------
  644. Thanks for using Fractint, The Fractals and Fractint Discussion List
  645. Post Message:   fractint@lists.xmission.com
  646. Get Commands:   majordomo@lists.xmission.com "help"
  647. Administrator:  twegner@phoenix.net
  648. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  649.  
  650. ------------------------------
  651.  
  652. Date: Fri, 15 Jan 1999 07:42:39 -0500
  653. From: "Jason Hine" <tumnus@together.net>
  654. Subject: Re: (fractint) True Colour
  655.  
  656. Andrew Coppin asked:
  657.  
  658.  
  659. >How are the "True-Colour" video modes in FractInt supposed to work?
  660. >All I get is lots of shades of blue and green. The video mode entries
  661. >don't seem to say how many colours you get in these modes, they just
  662. >say things like "15k", which means nothing to me.
  663.  
  664.  
  665. The current version of Fractint has a very minimal amount of true-color support;
  666. you can use one of the true color video modes, but palettes in Fractint are
  667. still limited to 256 colors, so when you view a fractal in one of these modes,
  668. you see 256 slightly different shades of blue and green.  The "15k" is a
  669. notation that makes use of the metric system, and means "fifteen thousand"
  670. colors.
  671.  
  672. >On a slightly different note, would it be possible to create a disk
  673. >video mode using more than 256 colours just be editing FRACTINT.CFG?
  674. >Sorry, I'm just greedy like that!
  675.  
  676. I believe so, but the results in Fractint would be similar... you must save the
  677. images and re-color them in another software, or better yet, save the .par for
  678. your fractal and load it into Ultra Fractal, which has good true-color support.
  679. The URL where you can find Ultra Fractal escapes me at the time... sorry!
  680.  
  681. Jason Hine
  682.  
  683.  
  684. - --------------------------------------------------------------
  685. Thanks for using Fractint, The Fractals and Fractint Discussion List
  686. Post Message:   fractint@lists.xmission.com
  687. Get Commands:   majordomo@lists.xmission.com "help"
  688. Administrator:  twegner@phoenix.net
  689. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  690.  
  691. ------------------------------
  692.  
  693. Date: Fri, 15 Jan 1999 08:01:05 -0500
  694. From: wdecker@csc.com
  695. Subject: (fractint) Winter pinwheel
  696.  
  697. This one just sort of popped up as I was experimenting with some pastel
  698. color maps. Some of the color brightness gradients contribute to a sense of
  699. depth, giving it a paper cutout look.
  700.  
  701. Enjoy.
  702.  
  703. Bill Decker
  704.  
  705. snowheel           { ;  (c) Bill Decker Jan 13, 1999 t=  0:01:05.64
  706.                      ;  on P100 1024x768
  707.   reset=1960 type=formula formulafile=0bill.frm
  708.   formulaname=bills_wonder2 function=log/ident passes=1
  709.   center-mag=-0.0515424/0.0351789/1.814173/1/-90
  710.   params=3.01/3/2/2/100000/0 float=y potential=255/200/0 periodicity=0
  711.   colors=000<30>F0FF0FG1GG2G<27>UUUVVVVVWWWXWWY<27>iiyjjzjjzkkz<30>zzzzzzy\
  712.   yz<28>kkzkkzjjyjjx<28>WWWWWWVWVVWVVWV<26>HWHGVGGVGFUFFTF<28>000
  713.   }
  714.  
  715. frm:bills_wonder2  {
  716.   z = 1/pixel, a = real(p1), b = imag(p1):
  717.   ztemp = z^a - z^b
  718.   z = (fn1(ztemp)^p2)/fn2(z)
  719.   |z| < real(p3)
  720. }
  721.  
  722.  
  723.  
  724.  
  725. - --------------------------------------------------------------
  726. Thanks for using Fractint, The Fractals and Fractint Discussion List
  727. Post Message:   fractint@lists.xmission.com
  728. Get Commands:   majordomo@lists.xmission.com "help"
  729. Administrator:  twegner@phoenix.net
  730. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  731.  
  732. ------------------------------
  733.  
  734. Date: Fri, 15 Jan 1999 14:22:42 +0100
  735. From: "Frederik Slijkerman" <fjslman@wins.uva.nl>
  736. Subject: Re: (fractint) True Colour
  737.  
  738. > The URL where you can find Ultra Fractal escapes me at the time... sorry!
  739.  
  740. http://www.ultrafractal.com/
  741.  
  742. Best regards,
  743. Frederik.
  744.  
  745.  
  746. - --------------------------------------------------------------
  747. Thanks for using Fractint, The Fractals and Fractint Discussion List
  748. Post Message:   fractint@lists.xmission.com
  749. Get Commands:   majordomo@lists.xmission.com "help"
  750. Administrator:  twegner@phoenix.net
  751. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  752.  
  753. ------------------------------
  754.  
  755. Date: Fri, 15 Jan 1999 10:52:24 -0300
  756. From: "Fliguer, Miguel" <M_Fliguer@miniphone.com.ar>
  757. Subject: RE: (fractint) True Colour
  758.  
  759. >>> http://www.ultrafractal.com/
  760.  
  761. Looks good. Unfortunately, when I try to retrieve the full size 
  762. images from the gallery, I get :
  763.  
  764. - ----------------------------------------------------------------
  765. 403 Forbidden
  766. Access to the document /~fjslman/image_02.jpg is denied for some reason.
  767.  
  768.  
  769. Possible reasons are:
  770.      The document you requested is not world readable 
  771.      The account of the owner of the file has been disabled 
  772.      Access to this document is only granted to certain hosts 
  773. www@wins.uva.nl
  774. - -----------------------------------------------------------------
  775.  
  776.  
  777.  
  778. Miguel Fliguer - Buenos Aires, Argentina
  779. Franktal Gallery - Shut Up And Draw Yer Fractals
  780. http://members.xoom.com/fliguer/franktal.html
  781.  
  782.  
  783.  
  784. - --------------------------------------------------------------
  785. Thanks for using Fractint, The Fractals and Fractint Discussion List
  786. Post Message:   fractint@lists.xmission.com
  787. Get Commands:   majordomo@lists.xmission.com "help"
  788. Administrator:  twegner@phoenix.net
  789. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  790.  
  791. ------------------------------
  792.  
  793. Date: Fri, 15 Jan 1999 10:59:47 -0500
  794. From: Barry N Merenoff <110144.2274@compuserve.com>
  795. Subject: (fractint) my first par (based on Snaketree)
  796.  
  797. test               {
  798.   reset=3D1960 type=3Dformula formulafile=3Dfrac_art.frm
  799.   formulaname=3Dsnaketree3 passes=3Dt
  800.   center-mag=3D+1.66406732314922900/-0.01369319868715437/25641.02/1/-90
  801.   params=3D0.01/0/0.5/0 float=3Dy maxiter=3D2000 bailout=3D100 inside=3Dm=
  802. axiter
  803.   logmap=3Dyes symmetry=3Dxaxis periodicity=3D10
  804.   colors=3D000xVb<14>yOd5CE<33>gojhpkgoj<25>HIXGHWGIV<15>AaJ9cJ9dI9eIAfK<=
  805. 34>\
  806.   TjrTjsWhi<2>abIc`8c`8<44>Jd1Jd1Kc3<27>WbvWbwYav<23>wZaxZaxZa<8>xVb
  807.   }
  808.  
  809. SnakeTree3 {
  810. z=3Dpixel, a=3D0, b=3D10000*p1*p1:
  811. y=3D1-cos(p1*a), z=3D((-z)^(1.06+y/b)+3.4)*(1-p2*y), a=3Da+1
  812. |z|<=3D100
  813. }
  814.  
  815.  
  816. - --------------------------------------------------------------
  817. Thanks for using Fractint, The Fractals and Fractint Discussion List
  818. Post Message:   fractint@lists.xmission.com
  819. Get Commands:   majordomo@lists.xmission.com "help"
  820. Administrator:  twegner@phoenix.net
  821. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  822.  
  823. ------------------------------
  824.  
  825. Date: Mon, 18 Jan 1999 10:13:21 -0300
  826. From: "Alejandro Kainer" <alejandro.kainer@usa.net>
  827. Subject: (fractint) First 4 pars
  828.  
  829. Hi all.
  830.  
  831. These are my first attempts on fractals. They're rather naive, but I'm st=
  832. ill
  833. trying to understand how come if you see that colored default palette it
  834. won't be that colored at all by using another
  835. one (I mean having different colors, not a quasi-continuum color). And I
  836. still don't know how to get that 3d smooth quality that some of the fract=
  837. als
  838. I saw do have.
  839.  
  840. The Yellow Snow resembles to me Nanook, the Frozen Eskimo, eating some
  841. doggie snow. But I know it seems like one of the snakes you can find at t=
  842. he
  843. beginning of Out of this world, if you know what I'm talking about. FZ,
  844. please forgive me.
  845.  
  846. The Blue Pulsar, began as a vain attempt on having some flowers out of th=
  847. e
  848. A0 formula. In some part of the original drawing you can see a kind of
  849. garden. But for some reason it didn't get the right colors. Instead it
  850. seemed like a skeleton and I disliked it. But looking at the garden I cou=
  851. ld
  852. see a starlike form. Then I zoomed the star and again had the same proble=
  853. m
  854. by trying to color it. I wanted a Black Star, not a Blue Pulsar, but the
  855. latter won.
  856.  
  857. The Fire Spear is like a ray emerging from a volcano. I liked the colors =
  858. in
  859. it, though it has nothing special.
  860.  
  861. Train to Mars is based on a magnetic fractal. I liked the colors too, and
  862. the image of Mars shining above the railways.
  863.  
  864. Talking about names, of course the first one is named after Frank Zappa's
  865. Don't Eat The Yellow Snow song. And the Pulsar is the first name I grabbe=
  866. d
  867. knowing that I won't (by now) get a Black Star, the Radiohead's song. I d=
  868. o
  869. think that fractals and music have a strong relationship. Haven't you tri=
  870. ed
  871. Bach yet?
  872.  
  873. Hope you like them.
  874.  
  875. Nice week,
  876.  
  877. Alejandro
  878.  
  879. The_Yellow_Snow    { ; by Alejandro Kainer - Jan 17, 1999 t=3D 0:04:56.55
  880.                      ; on a 486-100
  881.                      ; palette by Ron Barnett
  882.                      ; based on PRN_02 formula
  883.   reset=3D1960 type=3Dformula formulafile=3Dale.frm formulaname=3Dprn_02
  884.   function=3Dsin/sqr/sinh center-mag=3D-0.285357/1.5/3.875969
  885.   params=3D0/0/0/0 float=3Dy
  886.   colors=3DWWW<50>lD6lC6lD6<79>zy0zz0zz0zz0<64>XH0WG0WG0WG0<50>WWW
  887.   cyclerange=3D0/255
  888.   }
  889.  
  890. Blue_Pulsar        { ; by Alejandro Kainer - Jan 17, 1999 t=3D 0:02:05.62
  891.                      ; on a 486-100
  892.                      ; based on Miguel Fliguer's A0 formula
  893.   reset=3D1960 type=3Dformula formulafile=3Dale.frm formulaname=3Da0
  894.   function=3Dsqrt/recip/sqr/sqr
  895.   center-mag=3D-0.62167906750000000/+0.54511803400000000/148.9825/0.6834
  896.   logmode=3Dfly
  897.   colors=3D00000K<17>002000000000<29>00k00m01m<29>0ky0mz1mz<30>zzz<46>2zz=
  898. 0zz\
  899.   0yz<45>02z00z00y<40>00L
  900.   }
  901.  
  902. Fire_Spear         { ; by Alejandro Kainer - Jan 17, 1999 t=3D 0:00:39.93
  903.                      ; on a 486-100
  904.   reset=3D1960 type=3Dbarnsleym1
  905.   center-mag=3D1.27658/7.957e-006/4.901769/1/90 params=3D0/0
  906.   colors=3D000FFF<29>x11z00z10<29>zx0zz0zz1<29>zzxzzzzzz<61>zV1zU0zU0zT0<=
  907. 28>\
  908.   z10z00z00y00<30>c00b11a11`22_22<25>FFF
  909.   }
  910.  
  911. Train_to_Mars      { ; by Alejandro Kainer - Jan 17, 1999 - t=3D 0:00:17.=
  912. 85
  913.                      ; on a 486-100
  914.   reset=3D1960 type=3Dmagnet2j
  915.   center-mag=3D+4.86608260325406700/+4.40734557595993900/1.677476/1.1553/=
  916. - -90
  917.   params=3D0/0 float=3Dy periodicity=3D0
  918.   colors=3D000<14>w00004<14>w04008<14>w0800C<14>w0C00G<14>w0G00K<14>w0K00=
  919. O<1\
  920.   4>w0O00S<14>w0S00W<14>w0W00_<14>w0_00c<14>w0c00g<14>w0g00k<14>w0k00o<14=
  921. >\
  922.   w0o00s<14>w0s00w<14>w0w
  923.   }
  924.  
  925. ________________________________
  926. Alejandro Gustavo Kainer
  927. Sirti Argentina S.A.
  928. Hip=F3lito Irigoyen 4848
  929. (1602) - Florida - Bs.As.
  930. ARGENTINA
  931. Tel: (54)-1-760-0061 - Int. 1417 / 1418
  932. Fax: (54)-1-760-0095
  933. e-mail: alejandro.kainer@usa.net
  934. ________________________________
  935.  
  936.  
  937. - --------------------------------------------------------------
  938. Thanks for using Fractint, The Fractals and Fractint Discussion List
  939. Post Message:   fractint@lists.xmission.com
  940. Get Commands:   majordomo@lists.xmission.com "help"
  941. Administrator:  twegner@phoenix.net
  942. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  943.  
  944. ------------------------------
  945.  
  946. Date: Mon, 18 Jan 1999 08:12:52 -0500
  947. From: wdecker@csc.com
  948. Subject: (fractint) Taffy Pull
  949.  
  950. That's not a very original name, but I was in a hurry when I named it. I
  951. like the glossy effect in some areas of the image and the feeling of depth
  952. in other areas. The bridge-like structures seem quite solid, yet
  953. paradoxically, delicate.
  954.  
  955. Enjoy.
  956.  
  957. Bill Decker
  958.  
  959. taffy-pull         { ;  (c) Bill Decker Jan 18, 1999 t=  0:02:31.54
  960.                      ;  on P100 1024x768
  961.   reset=1960 type=formula formulafile=frac_ml.frm
  962.   formulaname=bills_xy-trade4 function=sin/tan passes=1
  963.   center-mag=0.479995/0.363266/0.3745722/1/-32.494
  964.   params=1/-1/1/-5/1/200 float=y logmode=fly potential=255/100/0
  965.   rseed=-2436
  966.   colors=000<41>K00K00K10L20<38>cV0dW0dW1eX2<39>yyxzzzzyz<39>g2Xf0Wf0W<39>\
  967.   N01M00M00L00<40>000
  968.   }
  969.  
  970. frm:bills_xy-trade4  {
  971.   a = real(p1), b = imag(p1)
  972.   c = real(p2), d = imag(p2)
  973.   e = real(p3), f = imag(p3)
  974.   z = pixel+1/pixel
  975.   zold = pixel^e:
  976.   x = (real(z)-real(zold))^a
  977.   y = (imag(z)-imag(zold))^b
  978.   zold = z
  979.   z = (y +flip(x))
  980.   z = (fn1(z))^c - (fn2(zold))^d
  981.   |z| < f
  982. }
  983.  
  984.  
  985.  
  986.  
  987. - --------------------------------------------------------------
  988. Thanks for using Fractint, The Fractals and Fractint Discussion List
  989. Post Message:   fractint@lists.xmission.com
  990. Get Commands:   majordomo@lists.xmission.com "help"
  991. Administrator:  twegner@phoenix.net
  992. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  993.  
  994. ------------------------------
  995.  
  996. Date: Mon, 18 Jan 1999 13:10:06 -0300
  997. From: "Fliguer, Miguel" <M_Fliguer@miniphone.com.ar>
  998. Subject: (fractint) PARs from the A0/A1 formulae
  999.  
  1000. The following A0 pars are zooms, displacements and recolorings 
  1001. of the recent Blue_Pulsar (no change in the functions).
  1002. Buen comienzo, Alejandro !  The A1 pars are the first tests 
  1003. with this formula (an attemp to introduce some parameters
  1004. in A0 )
  1005.  
  1006. ENJOY !!!!!
  1007.  
  1008. - ----
  1009.  
  1010.  
  1011. Maelstrom          { ; by Miguel Fliguer - 1999
  1012.                            ;
  1013.   reset=1960 type=formula formulafile=miguel.frm formulaname=a0
  1014.   function=sqrt/recip/sqr/sqr
  1015.  
  1016. center-mag=-0.98051416054843480/-0.35007324217454940/1117018/1/22.531/-8
  1017. \
  1018.   .807 float=y maxiter=20000000 logmode=fly
  1019.  
  1020. colors=000GA6<12>511511621<60>qdOrePqdO<22>SD4QB3RC4<14>B53942942<3>8425
  1021. \
  1022.   42<6>eWJ<23>111<46>pdOrePreP<48>GA7
  1023.   }
  1024.  
  1025. Opposed            { ; by Miguel Fliguer - 1999
  1026.                            ;
  1027.   reset=1960 type=formula formulafile=miguel.frm formulaname=a0
  1028.   function=sqrt/recip/sqr/sqr
  1029.  
  1030. center-mag=-0.98053071943042300/-0.35007544984948970/39962.44/1/22.531/-
  1031. \
  1032.   8.807 float=y maxiter=20000000 logmode=fly
  1033.  
  1034. colors=eVM0IV0FT<18>0Uu<37>021010000220<24>wwu<9>fYNeVKeVK<3>ZL6XI2VF0<1
  1035. \
  1036.  
  1037. 0>wU0<22>QD0OC0OC0OC0<7>w00<22>OO0<22>ww0<27>II0HK2<12>2tq0wu0ut<14>0KX
  1038.   }
  1039.  
  1040. Broken_Vitraux     { ; by Miguel Fliguer - 1999
  1041.                            ;
  1042.   reset=1960 type=formula formulafile=miguel.frm formulaname=a0
  1043.   function=sqrt/recip/sqr/sqr
  1044.  
  1045. center-mag=-0.73880695075295640/-0.31763072437293130/83.97749/1.142/-39.
  1046. \
  1047.   298/4.438 float=y logmode=fly
  1048.  
  1049. colors=eVM08D<7>021010000220<24>wwu<9>fYNeVKeVK<3>ZL6XI2VF0<10>wU0<22>QD
  1050. \
  1051.  
  1052. 0OC0OC0OC0<7>w00<22>OO0<22>ww0<27>II0HK2<12>2tq0wu0ut<16>0FT<18>0Uu<28>0
  1053. \
  1054.   9F
  1055.   }
  1056.  
  1057. Universe_Warmstart { ; by Miguel Fliguer - 1999
  1058.                                  ; 
  1059.   reset=1960 type=formula formulafile=miguel.frm formulaname=a1
  1060.   function=cosxx/tan/cos
  1061.   center-mag=0.663284/-0.157081/32.79894/1/54.999
  1062.   params=0.6/0/0.1/0/0.2/0 float=y maxiter=200000 outside=imag
  1063.   potential=255/235/0 decomp=256
  1064.  
  1065. colors=eVMNNL<15>wwu<9>fYNeVKeVK<3>ZL6XI2VF0<10>wU0<22>QD0OC0OC0OC0<7>w0
  1066. \
  1067.  
  1068. 0<22>OO0<22>ww0<27>II0HK2<12>2tq0wu0ut<16>0FT<18>0Uu<37>021010000220<7>K
  1069. \
  1070.   KI
  1071.   }
  1072.  
  1073. We_Come_In_Peace   { ; by Miguel Fliguer - 1999
  1074.                                    ; 
  1075.   reset=1960 type=formula formulafile=miguel.frm formulaname=a1
  1076.   function=cosxx/tan/cos center-mag=7.70784/0.0535083/0.485162/1/90
  1077.   params=0.6/0/0.1/0/0.2/0 float=y maxiter=200000 outside=imag
  1078.   potential=255/235/0 decomp=256
  1079.  
  1080. colors=eVM0IZ<14>0Uu<37>021010000220<24>wwu<9>fYNeVKeVK<3>ZL6XI2VF0<10>w
  1081. \
  1082.  
  1083. U0<22>QD0OC0OC0OC0<7>w00<22>OO0<22>ww0<27>II0HK2<12>2tq0wu0ut<16>0FT<2>0
  1084. \
  1085.   IY
  1086.   }
  1087.  
  1088.  
  1089. frm:a0 {; (c) by Miguel Fliguer 
  1090. z=c=pixel:
  1091. z=fn1(z/fn2(z/fn3(z/fn4(z))))+c
  1092. |z|<4
  1093. }
  1094.  
  1095. frm:a1 {; (c) by Miguel Fliguer 
  1096. z=c=pixel:
  1097. z=fn1(p1*z/fn2(p2+z/fn3(p3-z/fn1(z))))+c
  1098. |z|<4
  1099. }
  1100.  
  1101.  
  1102.  
  1103. Miguel Fliguer - Buenos Aires, Argentina
  1104. Franktal Gallery - Shut Up And Draw Yer Fractals
  1105. http://members.xoom.com/fliguer/franktal.html
  1106.  
  1107.  
  1108.  
  1109. - --------------------------------------------------------------
  1110. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1111. Post Message:   fractint@lists.xmission.com
  1112. Get Commands:   majordomo@lists.xmission.com "help"
  1113. Administrator:  twegner@phoenix.net
  1114. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1115.  
  1116. ------------------------------
  1117.  
  1118. Date: Tue, 19 Jan 1999 16:48:54 -0300
  1119. From: "Alejandro Kainer" <alejandro.kainer@usa.net>
  1120. Subject: (fractint) One par
  1121.  
  1122. Hi all,
  1123.  
  1124. This is a new par based on Bill Decker's formula. It reminded me a noctur=
  1125. nal
  1126. view from a hill down to a coastline (I swear I did not drink or smoke
  1127. anything, it's just my imagination - No animals were harmed during the
  1128. making of this fractal). Hope you like it.
  1129.  
  1130. Ale
  1131.  
  1132. Night_at_sea       { ; by Alejandro Kainer - Jan 18, 1999 t=3D 0:11:01.19
  1133.                      ; on a 486-100
  1134.                      ; palette lindaa04.map
  1135.                      ; based on bills_xy-trade4
  1136.   reset=3D1960 type=3Dformula formulafile=3Dale.frm
  1137.   formulaname=3Dbills_xy-trade4 function=3Dsin/tan
  1138.   center-mag=3D-1.46684/1.31219/7.752203 params=3D-1/1/-5/1/200/1
  1139.   logmode=3Dfly
  1140.   colors=3D0D0<7>020000001002<14>8Rv9Tz9Sy<25>12M00K00J<16>000300600800<2=
  1141. >I1\
  1142.   0L10O20R30<2>Z50a60c70e80<2>lC0nD0oE0qF0<3>wM0xN0xO0yQ0<2>zV0zW0yT0<2>s=
  1143. J\
  1144.   0qF0nE0mE0<6>T50Q30O30<4>C00<11>100000101200<28>k0y<8>K0O<18>403000<2>0=
  1145. 1\
  1146.   0020040<26>0d00f00e0<21>0D0
  1147.   }
  1148.  
  1149. ________________________________
  1150. Alejandro Gustavo Kainer
  1151. Sirti Argentina S.A.
  1152. Hip=F3lito Irigoyen 4848
  1153. (1602) - Florida - Bs.As.
  1154. ARGENTINA
  1155. Tel: (54)-1-760-0061 - Int. 1417 / 1418
  1156. Fax: (54)-1-760-0095
  1157. e-mail: alejandro.kainer@usa.net
  1158. ________________________________
  1159.  
  1160.  
  1161. - --------------------------------------------------------------
  1162. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1163. Post Message:   fractint@lists.xmission.com
  1164. Get Commands:   majordomo@lists.xmission.com "help"
  1165. Administrator:  twegner@phoenix.net
  1166. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1167.  
  1168. ------------------------------
  1169.  
  1170. Date: Tue, 19 Jan 1999 13:13:00 +0100
  1171. From: Fabio Fazzi <fazzi@dada.it>
  1172. Subject: (fractint) Fabio
  1173.  
  1174. Hi everybody! My name's Fabio and I'm from Italy. I'm novel about Fractals, I
  1175. downloaded Fractint 19.6 for Dos, also I've got WinFract 16.x; I can change
  1176. colors in Winfract but not in Fractint, can somebody explain me how i can
  1177. change colors (as Volcano, Blue, etc...)? Thank you very much. Yours faithfully
  1178. Fabio.
  1179. - ----------------------------------------------------
  1180. Fabio Fazzi                          
  1181. fazzi@dada.it           
  1182. fax74@technologist.com               
  1183. ICQ:12650354                         
  1184. http:\\www.geocities.com\SunsetStrip\Pit\5779\index.htm
  1185. Cso Indipendenza 30A
  1186. 15033 Casale Monferrato (AL), Italy
  1187. - ----------------------------------------------------
  1188.  
  1189.  
  1190. - --------------------------------------------------------------
  1191. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1192. Post Message:   fractint@lists.xmission.com
  1193. Get Commands:   majordomo@lists.xmission.com "help"
  1194. Administrator:  twegner@phoenix.net
  1195. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1196.  
  1197. ------------------------------
  1198.  
  1199. Date: Tue, 19 Jan 1999 20:21:50 EST
  1200. From: PKyleCA@aol.com
  1201. Subject: (fractint) Changing Colors in Fractint
  1202.  
  1203. There are two ways:
  1204.  
  1205. 1:  for color maps already in existence  ( many are available at many of the
  1206. fractint support links), you simply hit "C" for color and "L" for list, and
  1207. select one of the available color maps.  If the first one is not satisfactory,
  1208. then hit "L" again, and the list comes back.  When  you find one you like, you
  1209. will notice the border is lighter color- hit escape and you will be back in
  1210. fractint with full menu availability
  1211.  
  1212. 2:  The other way is to design them yourself.
  1213. hit "E" and you will see a ghosted box.  Move it to where you can view your
  1214. fractal and hit enter.  This brings up your color pallett.  Move the cursor
  1215. into the area and select the colors you wish to edit.  Reading the help files
  1216. on pallette manipulation will help you here tremendously.
  1217.  
  1218. - --------------------------------------------------------------
  1219. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1220. Post Message:   fractint@lists.xmission.com
  1221. Get Commands:   majordomo@lists.xmission.com "help"
  1222. Administrator:  twegner@phoenix.net
  1223. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1224.  
  1225. ------------------------------
  1226.  
  1227. End of fractint-digest V1 #353
  1228. ******************************
  1229.  
  1230.