From: owner-fractint-digest@lists.xmission.com (fractint-digest) To: fractint-digest@lists.xmission.com Subject: fractint-digest V1 #446 Reply-To: fractint-digest Sender: owner-fractint-digest@lists.xmission.com Errors-To: owner-fractint-digest@lists.xmission.com Precedence: bulk fractint-digest Saturday, February 12 2000 Volume 01 : Number 446 ---------------------------------------------------------------------- Date: Fri, 11 Feb 2000 10:54:12 +0100 From: Tonton Th Subject: Re: (fractint) MAKEFCFG.EXE Charles Crocker wrote: > > Load error : no DPMI - Get csdpmi*b.zip > > I could guess that DPMI stands for Display Parameters Master Index and that DPMI: Dos Protected Mode Interface (or similar) It's the dos extender who enable use of 32bits features like multi megabyte memory. May be j=you can search at djgpp home: http://www.delorie.com/ - -- Signature en greve - nous exigeons les 35 minutes pour tous. - -------------------------------------------------------------- Thanks for using Fractint, The Fractals and Fractint Discussion List Post Message: fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com "help" Administrator: twegner@swbell.net Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" ------------------------------ Date: Fri, 11 Feb 2000 08:52:37 -0800 From: jerome schatten Subject: Re: (fractint) FOTD, 11-02-00 (Fractal Medallion [8]) (c) I liked 'fractal medallion' so much I've set it as wallpaper. Thanks, jerome Jim Muth wrote: > > FOTD -- February 11, 2000 (Rating 8) > > Fractal enthusiasts and visionaries: > - -------------------------------------------------------------- Thanks for using Fractint, The Fractals and Fractint Discussion List Post Message: fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com "help" Administrator: twegner@swbell.net Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" ------------------------------ Date: Fri, 11 Feb 2000 13:07:02 -0700 From: "Reckase, Erik Nathan" Subject: (fractint) Variables used before defined I have a strange question, regarding formulas that use variables before they are defined. For example, look at Carr1313 in _rc1.frm : what happens when c is defined prior to c1 and c2? Any information on this topic would be very useful. - --Erik Reckase - -------------------------------------------------------------- Thanks for using Fractint, The Fractals and Fractint Discussion List Post Message: fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com "help" Administrator: twegner@swbell.net Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" ------------------------------ Date: Fri, 11 Feb 2000 16:44:00 -0500 From: George Martin Subject: (fractint) Variables used before defined Erik, > I have a strange question, regarding formulas that use variables before they are defined. For example, look at Carr1313 in _rc1.frm : what happens when c is defined prior to c1 and c2? Any information on this topic would be very useful. < Carr1313 { z=3D1/pixel, c=3Dc1^2+c2^2, c2=3Dpixel/z-(1.099,0) c1=3Dconj(imag(pixel))+c2: z=3Dz*z+c+sin(z) |real(z)|<=3D100 ;SOURCE: 30carr.frm } Some predefined variables are reset to the appropriate value at the beginning of each pixel (such as pixel, whitesq, etc.) Other variables are given a specific value at pixel one (such as pi), or if not, the valu= e (0,0). These values are not reset each pixel, so going into the initialization section of pixel 2 and thereafter, these variables will still have the value which they had when the previous pixel was completed. Thus it is important to use care in initializing variables in a Fractint formula. Using your example: z=3D1/pixel, c=3Dc1^2+c2^2, c2=3Dpixel/z-(1.099,0) c1=3Dconj(imag(pixel))+c2: the second statement will have c1 and c2 equal to (0,0) at the first pixel, but at the second pixel and thereafter c1 and c2 will carry over their values from the previous pixel. This is not good formula writing technique, since different drawing options (tesseral, boundary tracing, solid guessing) will compute the pixels in different orders and therefore= give different results. This formula was rewritten by someone else to eliminate the problem; the revised formula is also in _rc1.frm. In this formula each initialization statement uses only those values which have been previously initialized i= n the initialization section, so the problem of carryover values is eliminated. This is the preferred way to write formulas. Carr1313A {; Rearrangement of Carr1313, with no ghosting z=3D1/pixel, c2=3Dpixel/z-(1.099,0), c1=3Dconj(imag(pixel))+c2 c=3Dc1^2+c2^2: z=3Dz*z+c+sin(z) |real(z)| <=3D 100 ;SOURCE: form2.frm } = Regards, George Martin - -------------------------------------------------------------- Thanks for using Fractint, The Fractals and Fractint Discussion List Post Message: fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com "help" Administrator: twegner@swbell.net Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" ------------------------------ Date: Fri, 11 Feb 2000 14:55:26 -0700 From: "Reckase, Erik Nathan" Subject: RE: (fractint) Variables used before defined I suspected that the values of c1/c2 would carry over from the previous pixel - thanks for confirming that. I saw the other version of 1313, and that's when I realized the differences. However, the images created using the two different formulas are different, are they not? - --Erik - -----Original Message----- From: George Martin [mailto:GGMARTIN@compuserve.com] Sent: February 11, 2000 2:44 PM To: INTERNET:fractint@lists.xmission.com Subject: (fractint) Variables used before defined Erik, > I have a strange question, regarding formulas that use variables before they are defined. For example, look at Carr1313 in _rc1.frm : what happens when c is defined prior to c1 and c2? Any information on this topic would be very useful. < Carr1313 { z=1/pixel, c=c1^2+c2^2, c2=pixel/z-(1.099,0) c1=conj(imag(pixel))+c2: z=z*z+c+sin(z) |real(z)|<=100 ;SOURCE: 30carr.frm } Some predefined variables are reset to the appropriate value at the beginning of each pixel (such as pixel, whitesq, etc.) Other variables are given a specific value at pixel one (such as pi), or if not, the value (0,0). These values are not reset each pixel, so going into the initialization section of pixel 2 and thereafter, these variables will still have the value which they had when the previous pixel was completed. Thus it is important to use care in initializing variables in a Fractint formula. Using your example: z=1/pixel, c=c1^2+c2^2, c2=pixel/z-(1.099,0) c1=conj(imag(pixel))+c2: the second statement will have c1 and c2 equal to (0,0) at the first pixel, but at the second pixel and thereafter c1 and c2 will carry over their values from the previous pixel. This is not good formula writing technique, since different drawing options (tesseral, boundary tracing, solid guessing) will compute the pixels in different orders and therefore give different results. This formula was rewritten by someone else to eliminate the problem; the revised formula is also in _rc1.frm. In this formula each initialization statement uses only those values which have been previously initialized in the initialization section, so the problem of carryover values is eliminated. This is the preferred way to write formulas. Carr1313A {; Rearrangement of Carr1313, with no ghosting z=1/pixel, c2=pixel/z-(1.099,0), c1=conj(imag(pixel))+c2 c=c1^2+c2^2: z=z*z+c+sin(z) |real(z)| <= 100 ;SOURCE: form2.frm } Regards, George Martin - -------------------------------------------------------------- Thanks for using Fractint, The Fractals and Fractint Discussion List Post Message: fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com "help" Administrator: twegner@swbell.net Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" - -------------------------------------------------------------- Thanks for using Fractint, The Fractals and Fractint Discussion List Post Message: fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com "help" Administrator: twegner@swbell.net Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" ------------------------------ Date: Fri, 11 Feb 2000 11:17:55 +0600 From: Samee Subject: [none] Hello, I have recently joined this mailing list and have version 20.0 of fractint. But I found many formulas in the mails from this list which needs version 20.0.6. Could anybody tell me from where can I download/upgrade to this version? And, Oh! One more question. I cannot understand any of the discussions Jim Muth presents about 4D space. Could anybody explain me anything about 4D space ? Thanks in advance. - -------------------------------------------------------------- Thanks for using Fractint, The Fractals and Fractint Discussion List Post Message: fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com "help" Administrator: twegner@swbell.net Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" ------------------------------ Date: Sat, 12 Feb 2000 00:00:55 -0600 From: "Paul N. Lee" Subject: (fractint) Re: Samee wrote: > > Hello, > I have recently joined this mailing list and > have version 20.0 of fractint. But I found > many formulas in the mails from this list > which needs version 20.0.6. Could anybody > tell me from where can I download/upgrade to > this version? http://www.fractint.org/ ftp://ftp.fractint.org/ > > And, Oh! One more question. I cannot understand > any of the discussions Jim Muth presents about > 4D space. Could anybody explain me anything > about 4D space ? You might try going through several days worth of the FOTDs at the following URL: http://home.att.net/~Paul.N.Lee/FotD/FotD.html There are links to specific key words (such as "4D") which will lead you to further information on that topic. Sincerely, P.N.L. - -------------------------------------------------------------- http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go - -------------------------------------------------------------- Thanks for using Fractint, The Fractals and Fractint Discussion List Post Message: fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com "help" Administrator: twegner@swbell.net Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" ------------------------------ Date: Sat, 12 Feb 2000 01:04:04 -0500 (EST) From: Jim Muth Subject: (fractint) FOTD, 12-02-00 (Thistles [4]) (c) FOTD -- February 12, 2000 (Rating 4) Fractal enthusiasts and visionaries: Today's fractal is a result of adding Z^(-3) to 2Z^2 and then adding C to 1/10 of the sum, and repeating the process until a fractal appears. For some reason I was reminded of a thistle plant when I saw the image. As a result I named the picture "Thistles". The parameter file is a three-minute one. I leave it up to the potential viewer whether the slightly-below-average image is worth the effort of running the file or of downloading the image from: or from: The fractal weather today was once again spring-like in the middle of winter, with warm sun and a temperature of 56F (13C) that lured the fractal cats onto the recently appeared patch of snow-free ground at the corner of the porch. The hastiness of the fractal and shortness of the discussion are a result of an unexpectedly busy day, which causes me to postpone my philosophical wisdom until tomorrow. But be patient; when the philosophy finally appears, it will have been worth the wait. Until tomorrow, take care and see you soon. Jim Muth jamth@mindspring.com START 20.0 PAR-FORMULA FILE================================ Thistles { ; time=0:03:11.36 SF5 on a P200 ; Version 2000 Patchlevel 6 reset=2000 type=formula formulafile=critical.frm formulaname=MandelbrotMix4 function=ident passes=1 center-mag=-4.74707604237812400/+0.06993383907095668\ /7.578434e+007/1/-132.499 params=1/-3/2/2/-0.9/100 float=y maxiter=1800 bailout=25 inside=0 logmap=37 symmetry=none periodicity=10 colors=000anzarzenzilzlizogztezvcxzatzYnzWizUezS_<2>\ zMOzGMzAMr5Kg0KY0IO0IE0G50G00E00E00M<3>00i03o08v0Ez0\ Cz0Cz0Az0Az08z08z08z37z77zA5zE5zG5zECzEIzEOrCUgCaYCg\ OAnEAt5Az0Kn0<3>xA0z10<3>z00z00z10<3>z80zA0zC0zE0zG0\ xI0xK0oE0iA0c70W18Q0GK0QC0Y70g10o00r00r01r07r0Cr0Kr0\ Qr0Wr<2>0ax0cz0ez<2>0lz0nz0oz0rz0tz0vz0zz<2>1zz5zx8z\ tCznGziMzcQz_UzUYzQazKezGlzAoz7tz1xz0zz0zz0zz0zz0<3>\ rz0oz0nz0iz0<4>_z0Yz0Wz0Uz0Qz0<3>Iz0Gz0Ez0Cz0Az03z00\ z70zM<2>1zA<2>Ez0Iz0Mz0Sz0Wz0_z0cz0iz0<2>vz0tz0rz0oz\ 0nz0<2>gz0<2>azA_zGYzKWzOUzUSzYQzcOzgMzlKzrIzvGzzIzv\ IztKzrKzoKznMzlMziOzgOzeOzcQzaQz_QzYSzUSzSUzQUzOUzMW\ zKWzIYzGYzEYzC_zA_z8_z7Gz10z0<4>0z00z1<3>0zG0zE0zC0z\ A0zA0z80z70z50z50z30z1<13>0z0 } frm:MandelbrotMix4 {; Jim Muth a=real(p1), b=imag(p1), d=real(p2), f=imag(p2), g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j, k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel): z=k*((a*(z^b))+(d*(z^f)))+c, |z| < l } END 20.0 PAR-FORMULA FILE================================== - -------------------------------------------------------------- Thanks for using Fractint, The Fractals and Fractint Discussion List Post Message: fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com "help" Administrator: twegner@swbell.net Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" ------------------------------ Date: Sat, 12 Feb 2000 11:13:17 -0600 From: Tim Wegner Subject: (fractint) If you somehow get unsubscribed ... This is a common enough question about the list that I thought I'd post this to everyone. I really don't want to start a discussion about list administration here (though if you have comments feel free to email me) but occasionally this reminder is useful for list ,members, so here goes: A list member wrote: > I subscribed to the Fractint list last year, and for some reason, I haven't > received any messages since January third. I resubscribed, and sent a test > message, and have not received a reply. Did I do something wrong? You certainly haven't done anything wrong. I moderate this list with a very light hand, and if you had really done something wrong (very rare), I would let you know by email. Even if you had done something wrong (e.g. upload a binary to the list) in most cases you'd get an "oops please don't that" email and would not be summarily unsubscribed. What probably happened is this. On a daily basis I see messages bouncing from list members whose email addresses are not working for some reason. Usually after waiting a day to see if the problem fixes itself, I unsubscribe the list member's email address. I don't bother to send an email explaining because most of the time the problem is that indeed the email address is not working, so sending an email would be futile. The problem with this is that there can be internet problems that cause email to bounce that aren't really due to your email not working right. I can't always tell. So your email address could get unsubscribed even though your email account is OK. So if a few days go by with no list messages, try resubscribing. Tim - -------------------------------------------------------------- Thanks for using Fractint, The Fractals and Fractint Discussion List Post Message: fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com "help" Administrator: twegner@swbell.net Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" ------------------------------ Date: Sat, 12 Feb 2000 12:41:35 -0500 From: George Martin Subject: RE: (fractint) Variables used before defined Erik, Re: Carr1313 > I suspected that the values of c1/c2 would carry over from the previous pixel - thanks for confirming that. I saw the other version of 1313, and= that's when I realized the differences. However, the images created usin= g the two different formulas are different, are they not? < Yes, because at each pixel "c" will be given a different value. George - -------------------------------------------------------------- Thanks for using Fractint, The Fractals and Fractint Discussion List Post Message: fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com "help" Administrator: twegner@swbell.net Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" ------------------------------ Date: Sat, 12 Feb 2000 12:41:35 -0500 From: George Martin Subject: RE: (fractint) Variables used before defined Erik, Re: Carr1313 > I suspected that the values of c1/c2 would carry over from the previous pixel - thanks for confirming that. I saw the other version of 1313, and= that's when I realized the differences. However, the images created usin= g the two different formulas are different, are they not? < Yes, because at each pixel "c" will be given a different value. George - -------------------------------------------------------------- Thanks for using Fractint, The Fractals and Fractint Discussion List Post Message: fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com "help" Administrator: twegner@swbell.net Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" ------------------------------ Date: Sat, 12 Feb 2000 14:00:53 -0600 From: Bob Margolis Subject: (fractint) List of color names with RGB value that I found at: http://www.neutralzone.org/home/faqsys/docs/rgblist.txt Hope you guys and gals find it useful. Bob # Whites antique_white 250 235 215 0.9804 0.9216 0.8431 azure 240 255 255 0.9412 1.0000 1.0000 bisque 255 228 196 1.0000 0.8941 0.7686 blanched_almond 255 235 205 1.0000 0.9216 0.8039 cornsilk 255 248 220 1.0000 0.9725 0.8627 eggshell 252 230 201 0.9900 0.9000 0.7900 floral_white 255 250 240 1.0000 0.9804 0.9412 gainsboro 220 220 220 0.8627 0.8627 0.8627 ghost_white 248 248 255 0.9725 0.9725 1.0000 honeydew 240 255 240 0.9412 1.0000 0.9412 ivory 255 255 240 1.0000 1.0000 0.9412 lavender 230 230 250 0.9020 0.9020 0.9804 lavender_blush 255 240 245 1.0000 0.9412 0.9608 lemon_chiffon 255 250 205 1.0000 0.9804 0.8039 linen 250 240 230 0.9804 0.9412 0.9020 mint_cream 245 255 250 0.9608 1.0000 0.9804 misty_rose 255 228 225 1.0000 0.8941 0.8824 moccasin 255 228 181 1.0000 0.8941 0.7098 navajo_white 255 222 173 1.0000 0.8706 0.6784 old_lace 253 245 230 0.9922 0.9608 0.9020 papaya_whip 255 239 213 1.0000 0.9373 0.8353 peach_puff 255 218 185 1.0000 0.8549 0.7255 seashell 255 245 238 1.0000 0.9608 0.9333 snow 255 250 250 1.0000 0.9804 0.9804 thistle 216 191 216 0.8471 0.7490 0.8471 titanium_white 252 255 240 0.9900 1.0000 0.9400 wheat 245 222 179 0.9608 0.8706 0.7020 white 255 255 255 1.0000 1.0000 1.0000 white_smoke 245 245 245 0.9608 0.9608 0.9608 zinc_white 253 248 255 0.9900 0.9700 1.0000 # Greys cold_grey 128 138 135 0.5000 0.5400 0.5300 dim_grey 105 105 105 0.4118 0.4118 0.4118 grey 192 192 192 0.7529 0.7529 0.7529 light_grey 211 211 211 0.8275 0.8275 0.8275 slate_grey 112 128 144 0.4392 0.5020 0.5647 slate_grey_dark 47 79 79 0.1843 0.3098 0.3098 slate_grey_light 119 136 153 0.4667 0.5333 0.6000 warm_grey 128 128 105 0.5000 0.5000 0.4100 # Blacks black 0 0 0 0.0000 0.0000 0.0000 ivory_black 41 36 33 0.1600 0.1400 0.1300 lamp_black 46 71 59 0.1800 0.2800 0.2300 # Reds alizarin_crimson 227 38 54 0.8900 0.1500 0.2100 brick 156 102 31 0.6100 0.4000 0.1200 cadmium_red_deep 227 23 13 0.8900 0.0900 0.0500 coral 255 127 80 1.0000 0.4980 0.3137 coral_light 240 128 128 0.9412 0.5020 0.5020 deep_pink 255 20 147 1.0000 0.0784 0.5765 english_red 212 61 26 0.8300 0.2400 0.1000 firebrick 178 34 34 0.6980 0.1333 0.1333 geranium_lake 227 18 48 0.8900 0.0700 0.1900 hot_pink 255 105 180 1.0000 0.4118 0.7059 indian_red 176 23 31 0.6900 0.0900 0.1200 light_salmon 255 160 122 1.0000 0.6275 0.4784 madder_lake_deep 227 46 48 0.8900 0.1800 0.1900 maroon 176 48 96 0.6902 0.1882 0.3765 pink 255 192 203 1.0000 0.7529 0.7961 pink_light 255 182 193 1.0000 0.7137 0.7569 raspberry 135 38 87 0.5300 0.1500 0.3400 red 255 0 0 1.0000 0.0000 0.0000 rose_madder 227 54 56 0.8900 0.2100 0.2200 salmon 250 128 114 0.9804 0.5020 0.4471 tomato 255 99 71 1.0000 0.3882 0.2784 venetian_red 212 26 31 0.8300 0.1000 0.1200 # Browns beige 163 148 128 0.6400 0.5800 0.5000 brown 128 42 42 0.5000 0.1647 0.1647 brown_madder 219 41 41 0.8600 0.1600 0.1600 brown_ochre 135 66 31 0.5300 0.2600 0.1200 burlywood 222 184 135 0.8706 0.7216 0.5294 burnt_sienna 138 54 15 0.5400 0.2100 0.0600 burnt_umber 138 51 36 0.5400 0.2000 0.1400 chocolate 210 105 30 0.8235 0.4118 0.1176 deep_ochre 115 61 26 0.4500 0.2400 0.1000 flesh 255 125 64 1.0000 0.4900 0.2500 flesh_ochre 255 87 33 1.0000 0.3400 0.1300 gold_ochre 199 120 38 0.7800 0.4700 0.1500 greenish_umber 255 61 13 1.0000 0.2400 0.0500 khaki 240 230 140 0.9412 0.9020 0.5490 khaki_dark 189 183 107 0.7412 0.7176 0.4196 light_beige 245 245 220 0.9608 0.9608 0.8627 peru 205 133 63 0.8039 0.5216 0.2471 rosy_brown 188 143 143 0.7373 0.5608 0.5608 raw_sienna 199 97 20 0.7800 0.3800 0.0800 raw_umber 115 74 18 0.4500 0.2900 0.0700 sepia 94 38 18 0.3700 0.1500 0.0700 sienna 160 82 45 0.6275 0.3216 0.1765 saddle_brown 139 69 19 0.5451 0.2706 0.0745 sandy_brown 244 164 96 0.9569 0.6431 0.3765 tan 210 180 140 0.8235 0.7059 0.5490 van_dyke_brown 94 38 5 0.3700 0.1500 0.0200 # Oranges cadmium_orange 255 97 3 1.0000 0.3800 0.0100 cadmium_red_light 255 3 13 1.0000 0.0100 0.0500 carrot 237 145 33 0.9300 0.5700 0.1300 dark_orange 255 140 0 1.0000 0.5490 0.0000 mars_orange 150 69 20 0.5900 0.2700 0.0800 mars_yellow 227 112 26 0.8900 0.4400 0.1000 orange 255 128 0 1.0000 0.5000 0.0000 orange_red 255 69 0 1.0000 0.2706 0.0000 yellow_ochre 227 130 23 0.8900 0.5100 0.0900 # Yellows aureoline_yellow 255 168 36 1.0000 0.6600 0.1400 banana 227 207 87 0.8900 0.8100 0.3400 cadmium_lemon 255 227 3 1.0000 0.8900 0.0100 cadmium_yellow 255 153 18 1.0000 0.6000 0.0700 cadmium_yellow_light 255 176 15 1.0000 0.6900 0.0600 gold 255 215 0 1.0000 0.8431 0.0000 goldenrod 218 165 32 0.8549 0.6471 0.1255 goldenrod_dark 184 134 11 0.7216 0.5255 0.0431 goldenrod_light 250 250 210 0.9804 0.9804 0.8235 goldenrod_pale 238 232 170 0.9333 0.9098 0.6667 light_goldenrod 238 221 130 0.9333 0.8667 0.5098 melon 227 168 105 0.8900 0.6600 0.4100 naples_yellow_deep 255 168 18 1.0000 0.6600 0.0700 yellow 255 255 0 1.0000 1.0000 0.0000 yellow_light 255 255 224 1.0000 1.0000 0.8784 # Greens chartreuse 127 255 0 0.4980 1.0000 0.0000 chrome_oxide_green 102 128 20 0.4000 0.5000 0.0800 cinnabar_green 97 179 41 0.3800 0.7000 0.1600 cobalt_green 61 145 64 0.2400 0.5700 0.2500 emerald_green 0 201 87 0.0000 0.7900 0.3400 forest_green 34 139 34 0.1333 0.5451 0.1333 green 0 255 0 0.0000 1.0000 0.0000 green_dark 0 100 0 0.0000 0.3922 0.0000 green_pale 152 251 152 0.5961 0.9843 0.5961 green_yellow 173 255 47 0.6784 1.0000 0.1843 lawn_green 124 252 0 0.4863 0.9882 0.0000 lime_green 50 205 50 0.1961 0.8039 0.1961 mint 189 252 201 0.7400 0.9900 0.7900 olive 59 94 43 0.2300 0.3700 0.1700 olive_drab 107 142 35 0.4196 0.5569 0.1373 olive_green_dark 85 107 47 0.3333 0.4196 0.1843 permanent_green 10 201 43 0.0400 0.7900 0.1700 sap_green 48 128 20 0.1900 0.5000 0.0800 sea_green 46 139 87 0.1804 0.5451 0.3412 sea_green_dark 143 188 143 0.5608 0.7373 0.5608 sea_green_medium 60 179 113 0.2353 0.7020 0.4431 sea_green_light 32 178 170 0.1255 0.6980 0.6667 spring_green 0 255 127 0.0000 1.0000 0.4980 spring_green_medium 0 250 154 0.0000 0.9804 0.6039 terre_verte 56 94 15 0.2200 0.3700 0.0600 viridian_light 110 255 112 0.4300 1.0000 0.4400 yellow_green 154 205 50 0.6039 0.8039 0.1961 # Cyans aquamarine 127 255 212 0.4980 1.0000 0.8314 aquamarine_medium 102 205 170 0.4000 0.8039 0.6667 cyan 0 255 255 0.0000 1.0000 1.0000 cyan_white 224 255 255 0.8784 1.0000 1.0000 turquoise 64 224 208 0.2510 0.8784 0.8157 turquoise_dark 0 206 209 0.0000 0.8078 0.8196 turquoise_medium 72 209 204 0.2824 0.8196 0.8000 turquoise_pale 175 238 238 0.6863 0.9333 0.9333 # Blues alice_blue 240 248 255 0.9412 0.9725 1.0000 blue 0 0 255 0.0000 0.0000 1.0000 blue_light 173 216 230 0.6784 0.8471 0.9020 blue_medium 0 0 205 0.0000 0.0000 0.8039 cadet 95 158 160 0.3725 0.6196 0.6275 cobalt 61 89 171 0.2400 0.3500 0.6700 cornflower 100 149 237 0.3922 0.5843 0.9294 cerulean 5 184 204 0.0200 0.7200 0.8000 dodger_blue 30 144 255 0.1176 0.5647 1.0000 indigo 8 46 84 0.0300 0.1800 0.3300 manganese_blue 3 168 158 0.0100 0.6600 0.6200 midnight_blue 25 25 112 0.0980 0.0980 0.4392 navy 0 0 128 0.0000 0.0000 0.5020 peacock 51 161 201 0.2000 0.6300 0.7900 powder_blue 176 224 230 0.6902 0.8784 0.9020 royal_blue 65 105 225 0.2549 0.4118 0.8824 slate_blue 106 90 205 0.4157 0.3529 0.8039 slate_blue_dark 72 61 139 0.2824 0.2392 0.5451 slate_blue_light 132 112 255 0.5176 0.4392 1.0000 slate_blue_medium 123 104 238 0.4824 0.4078 0.9333 sky_blue 135 206 235 0.5294 0.8078 0.9216 sky_blue_deep 0 191 255 0.0000 0.7490 1.0000 sky_blue_light 135 206 250 0.5294 0.8078 0.9804 steel_blue 70 130 180 0.2745 0.5098 0.7059 steel_blue_light 176 196 222 0.6902 0.7686 0.8706 turquoise_blue 0 199 140 0.0000 0.7800 0.5500 ultramarine 18 10 143 0.0700 0.0400 0.5600 # Magentas blue_violet 138 43 226 0.5412 0.1686 0.8863 cobalt_violet_deep 145 33 158 0.5700 0.1300 0.6200 magenta 255 0 255 1.0000 0.0000 1.0000 orchid 218 112 214 0.8549 0.4392 0.8392 orchid_dark 153 50 204 0.6000 0.1961 0.8000 orchid_medium 186 85 211 0.7294 0.3333 0.8275 permanent_red_violet 219 38 69 0.8600 0.1500 0.2700 plum 221 160 221 0.8667 0.6275 0.8667 purple 160 32 240 0.6275 0.1255 0.9412 purple_medium 147 112 219 0.5765 0.4392 0.8588 ultramarine_violet 92 36 110 0.3600 0.1400 0.4300 violet 143 94 153 0.5600 0.3700 0.6000 violet_dark 148 0 211 0.5804 0.0000 0.8275 violet_red 208 32 144 0.8157 0.1255 0.5647 violet_red_medium 199 21 133 0.7804 0.0824 0.5216 violet_red_pale 219 112 147 0.8588 0.4392 0.5765 - -------------------------------------------------------------- Thanks for using Fractint, The Fractals and Fractint Discussion List Post Message: fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com "help" Administrator: twegner@swbell.net Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" ------------------------------ Date: Sat, 12 Feb 2000 16:02:17 -0500 From: Harry Bissell Subject: Re: (fractint) List of color names with RGB value Maybe not useful but VERY INTERESTING. Thank you !!! H^) harry Bob Margolis wrote: > that I found at: > > http://www.neutralzone.org/home/faqsys/docs/rgblist.txt > > Hope you guys and gals find it useful. > > Bob > > =8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D= =8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D= =8D=8D=8D=8D=8D=8D=8D > > # Whites > antique_white 250 235 215 0.9804 0.9216 0.8431 > azure 240 255 255 0.9412 1.0000 1.0000 > bisque 255 228 196 1.0000 0.8941 0.7686 > blanched_almond 255 235 205 1.0000 0.9216 0.8039 > cornsilk 255 248 220 1.0000 0.9725 0.8627 > eggshell 252 230 201 0.9900 0.9000 0.7900 > floral_white 255 250 240 1.0000 0.9804 0.9412 > gainsboro 220 220 220 0.8627 0.8627 0.8627 > ghost_white 248 248 255 0.9725 0.9725 1.0000 > honeydew 240 255 240 0.9412 1.0000 0.9412 > ivory 255 255 240 1.0000 1.0000 0.9412 > lavender 230 230 250 0.9020 0.9020 0.9804 > lavender_blush 255 240 245 1.0000 0.9412 0.9608 > lemon_chiffon 255 250 205 1.0000 0.9804 0.8039 > linen 250 240 230 0.9804 0.9412 0.9020 > mint_cream 245 255 250 0.9608 1.0000 0.9804 > misty_rose 255 228 225 1.0000 0.8941 0.8824 > moccasin 255 228 181 1.0000 0.8941 0.7098 > navajo_white 255 222 173 1.0000 0.8706 0.6784 > old_lace 253 245 230 0.9922 0.9608 0.9020 > papaya_whip 255 239 213 1.0000 0.9373 0.8353 > peach_puff 255 218 185 1.0000 0.8549 0.7255 > seashell 255 245 238 1.0000 0.9608 0.9333 > snow 255 250 250 1.0000 0.9804 0.9804 > thistle 216 191 216 0.8471 0.7490 0.8471 > titanium_white 252 255 240 0.9900 1.0000 0.9400 > wheat 245 222 179 0.9608 0.8706 0.7020 > white 255 255 255 1.0000 1.0000 1.0000 > white_smoke 245 245 245 0.9608 0.9608 0.9608 > zinc_white 253 248 255 0.9900 0.9700 1.0000 > > # Greys > cold_grey 128 138 135 0.5000 0.5400 0.5300 > dim_grey 105 105 105 0.4118 0.4118 0.4118 > grey 192 192 192 0.7529 0.7529 0.7529 > light_grey 211 211 211 0.8275 0.8275 0.8275 > slate_grey 112 128 144 0.4392 0.5020 0.5647 > slate_grey_dark 47 79 79 0.1843 0.3098 0.3098 > slate_grey_light 119 136 153 0.4667 0.5333 0.6000 > warm_grey 128 128 105 0.5000 0.5000 0.4100 > > # Blacks > black 0 0 0 0.0000 0.0000 0.0000 > ivory_black 41 36 33 0.1600 0.1400 0.1300 > lamp_black 46 71 59 0.1800 0.2800 0.2300 > > # Reds > alizarin_crimson 227 38 54 0.8900 0.1500 0.2100 > brick 156 102 31 0.6100 0.4000 0.1200 > cadmium_red_deep 227 23 13 0.8900 0.0900 0.0500 > coral 255 127 80 1.0000 0.4980 0.3137 > coral_light 240 128 128 0.9412 0.5020 0.5020 > deep_pink 255 20 147 1.0000 0.0784 0.5765 > english_red 212 61 26 0.8300 0.2400 0.1000 > firebrick 178 34 34 0.6980 0.1333 0.1333 > geranium_lake 227 18 48 0.8900 0.0700 0.1900 > hot_pink 255 105 180 1.0000 0.4118 0.7059 > indian_red 176 23 31 0.6900 0.0900 0.1200 > light_salmon 255 160 122 1.0000 0.6275 0.4784 > madder_lake_deep 227 46 48 0.8900 0.1800 0.1900 > maroon 176 48 96 0.6902 0.1882 0.3765 > pink 255 192 203 1.0000 0.7529 0.7961 > pink_light 255 182 193 1.0000 0.7137 0.7569 > raspberry 135 38 87 0.5300 0.1500 0.3400 > red 255 0 0 1.0000 0.0000 0.0000 > rose_madder 227 54 56 0.8900 0.2100 0.2200 > salmon 250 128 114 0.9804 0.5020 0.4471 > tomato 255 99 71 1.0000 0.3882 0.2784 > venetian_red 212 26 31 0.8300 0.1000 0.1200 > > # Browns > beige 163 148 128 0.6400 0.5800 0.5000 > brown 128 42 42 0.5000 0.1647 0.1647 > brown_madder 219 41 41 0.8600 0.1600 0.1600 > brown_ochre 135 66 31 0.5300 0.2600 0.1200 > burlywood 222 184 135 0.8706 0.7216 0.5294 > burnt_sienna 138 54 15 0.5400 0.2100 0.0600 > burnt_umber 138 51 36 0.5400 0.2000 0.1400 > chocolate 210 105 30 0.8235 0.4118 0.1176 > deep_ochre 115 61 26 0.4500 0.2400 0.1000 > flesh 255 125 64 1.0000 0.4900 0.2500 > flesh_ochre 255 87 33 1.0000 0.3400 0.1300 > gold_ochre 199 120 38 0.7800 0.4700 0.1500 > greenish_umber 255 61 13 1.0000 0.2400 0.0500 > khaki 240 230 140 0.9412 0.9020 0.5490 > khaki_dark 189 183 107 0.7412 0.7176 0.4196 > light_beige 245 245 220 0.9608 0.9608 0.8627 > peru 205 133 63 0.8039 0.5216 0.2471 > rosy_brown 188 143 143 0.7373 0.5608 0.5608 > raw_sienna 199 97 20 0.7800 0.3800 0.0800 > raw_umber 115 74 18 0.4500 0.2900 0.0700 > sepia 94 38 18 0.3700 0.1500 0.0700 > sienna 160 82 45 0.6275 0.3216 0.1765 > saddle_brown 139 69 19 0.5451 0.2706 0.0745 > sandy_brown 244 164 96 0.9569 0.6431 0.3765 > tan 210 180 140 0.8235 0.7059 0.5490 > van_dyke_brown 94 38 5 0.3700 0.1500 0.0200 > > # Oranges > cadmium_orange 255 97 3 1.0000 0.3800 0.0100 > cadmium_red_light 255 3 13 1.0000 0.0100 0.0500 > carrot 237 145 33 0.9300 0.5700 0.1300 > dark_orange 255 140 0 1.0000 0.5490 0.0000 > mars_orange 150 69 20 0.5900 0.2700 0.0800 > mars_yellow 227 112 26 0.8900 0.4400 0.1000 > orange 255 128 0 1.0000 0.5000 0.0000 > orange_red 255 69 0 1.0000 0.2706 0.0000 > yellow_ochre 227 130 23 0.8900 0.5100 0.0900 > > # Yellows > aureoline_yellow 255 168 36 1.0000 0.6600 0.1400 > banana 227 207 87 0.8900 0.8100 0.3400 > cadmium_lemon 255 227 3 1.0000 0.8900 0.0100 > cadmium_yellow 255 153 18 1.0000 0.6000 0.0700 > cadmium_yellow_light 255 176 15 1.0000 0.6900 0.0600 > gold 255 215 0 1.0000 0.8431 0.0000 > goldenrod 218 165 32 0.8549 0.6471 0.1255 > goldenrod_dark 184 134 11 0.7216 0.5255 0.0431 > goldenrod_light 250 250 210 0.9804 0.9804 0.8235 > goldenrod_pale 238 232 170 0.9333 0.9098 0.6667 > light_goldenrod 238 221 130 0.9333 0.8667 0.5098 > melon 227 168 105 0.8900 0.6600 0.4100 > naples_yellow_deep 255 168 18 1.0000 0.6600 0.0700 > yellow 255 255 0 1.0000 1.0000 0.0000 > yellow_light 255 255 224 1.0000 1.0000 0.8784 > > # Greens > chartreuse 127 255 0 0.4980 1.0000 0.0000 > chrome_oxide_green 102 128 20 0.4000 0.5000 0.0800 > cinnabar_green 97 179 41 0.3800 0.7000 0.1600 > cobalt_green 61 145 64 0.2400 0.5700 0.2500 > emerald_green 0 201 87 0.0000 0.7900 0.3400 > forest_green 34 139 34 0.1333 0.5451 0.1333 > green 0 255 0 0.0000 1.0000 0.0000 > green_dark 0 100 0 0.0000 0.3922 0.0000 > green_pale 152 251 152 0.5961 0.9843 0.5961 > green_yellow 173 255 47 0.6784 1.0000 0.1843 > lawn_green 124 252 0 0.4863 0.9882 0.0000 > lime_green 50 205 50 0.1961 0.8039 0.1961 > mint 189 252 201 0.7400 0.9900 0.7900 > olive 59 94 43 0.2300 0.3700 0.1700 > olive_drab 107 142 35 0.4196 0.5569 0.1373 > olive_green_dark 85 107 47 0.3333 0.4196 0.1843 > permanent_green 10 201 43 0.0400 0.7900 0.1700 > sap_green 48 128 20 0.1900 0.5000 0.0800 > sea_green 46 139 87 0.1804 0.5451 0.3412 > sea_green_dark 143 188 143 0.5608 0.7373 0.5608 > sea_green_medium 60 179 113 0.2353 0.7020 0.4431 > sea_green_light 32 178 170 0.1255 0.6980 0.6667 > spring_green 0 255 127 0.0000 1.0000 0.4980 > spring_green_medium 0 250 154 0.0000 0.9804 0.6039 > terre_verte 56 94 15 0.2200 0.3700 0.0600 > viridian_light 110 255 112 0.4300 1.0000 0.4400 > yellow_green 154 205 50 0.6039 0.8039 0.1961 > > # Cyans > aquamarine 127 255 212 0.4980 1.0000 0.8314 > aquamarine_medium 102 205 170 0.4000 0.8039 0.6667 > cyan 0 255 255 0.0000 1.0000 1.0000 > cyan_white 224 255 255 0.8784 1.0000 1.0000 > turquoise 64 224 208 0.2510 0.8784 0.8157 > turquoise_dark 0 206 209 0.0000 0.8078 0.8196 > turquoise_medium 72 209 204 0.2824 0.8196 0.8000 > turquoise_pale 175 238 238 0.6863 0.9333 0.9333 > > # Blues > alice_blue 240 248 255 0.9412 0.9725 1.0000 > blue 0 0 255 0.0000 0.0000 1.0000 > blue_light 173 216 230 0.6784 0.8471 0.9020 > blue_medium 0 0 205 0.0000 0.0000 0.8039 > cadet 95 158 160 0.3725 0.6196 0.6275 > cobalt 61 89 171 0.2400 0.3500 0.6700 > cornflower 100 149 237 0.3922 0.5843 0.9294 > cerulean 5 184 204 0.0200 0.7200 0.8000 > dodger_blue 30 144 255 0.1176 0.5647 1.0000 > indigo 8 46 84 0.0300 0.1800 0.3300 > manganese_blue 3 168 158 0.0100 0.6600 0.6200 > midnight_blue 25 25 112 0.0980 0.0980 0.4392 > navy 0 0 128 0.0000 0.0000 0.5020 > peacock 51 161 201 0.2000 0.6300 0.7900 > powder_blue 176 224 230 0.6902 0.8784 0.9020 > royal_blue 65 105 225 0.2549 0.4118 0.8824 > slate_blue 106 90 205 0.4157 0.3529 0.8039 > slate_blue_dark 72 61 139 0.2824 0.2392 0.5451 > slate_blue_light 132 112 255 0.5176 0.4392 1.0000 > slate_blue_medium 123 104 238 0.4824 0.4078 0.9333 > sky_blue 135 206 235 0.5294 0.8078 0.9216 > sky_blue_deep 0 191 255 0.0000 0.7490 1.0000 > sky_blue_light 135 206 250 0.5294 0.8078 0.9804 > steel_blue 70 130 180 0.2745 0.5098 0.7059 > steel_blue_light 176 196 222 0.6902 0.7686 0.8706 > turquoise_blue 0 199 140 0.0000 0.7800 0.5500 > ultramarine 18 10 143 0.0700 0.0400 0.5600 > > # Magentas > blue_violet 138 43 226 0.5412 0.1686 0.8863 > cobalt_violet_deep 145 33 158 0.5700 0.1300 0.6200 > magenta 255 0 255 1.0000 0.0000 1.0000 > orchid 218 112 214 0.8549 0.4392 0.8392 > orchid_dark 153 50 204 0.6000 0.1961 0.8000 > orchid_medium 186 85 211 0.7294 0.3333 0.8275 > permanent_red_violet 219 38 69 0.8600 0.1500 0.2700 > plum 221 160 221 0.8667 0.6275 0.8667 > purple 160 32 240 0.6275 0.1255 0.9412 > purple_medium 147 112 219 0.5765 0.4392 0.8588 > ultramarine_violet 92 36 110 0.3600 0.1400 0.4300 > violet 143 94 153 0.5600 0.3700 0.6000 > violet_dark 148 0 211 0.5804 0.0000 0.8275 > violet_red 208 32 144 0.8157 0.1255 0.5647 > violet_red_medium 199 21 133 0.7804 0.0824 0.5216 > violet_red_pale 219 112 147 0.8588 0.4392 0.5765 > > -------------------------------------------------------------- > Thanks for using Fractint, The Fractals and Fractint Discussion List > Post Message: fractint@lists.xmission.com > Get Commands: majordomo@lists.xmission.com "help" > Administrator: twegner@swbell.net > Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" - -------------------------------------------------------------- Thanks for using Fractint, The Fractals and Fractint Discussion List Post Message: fractint@lists.xmission.com Get Commands: majordomo@lists.xmission.com "help" Administrator: twegner@swbell.net Unsubscribe: majordomo@lists.xmission.com "unsubscribe fractint" ------------------------------ End of fractint-digest V1 #446 ******************************