home *** CD-ROM | disk | FTP | other *** search
/ Rat's Nest 1 / ratsnest1.iso / prgmming / c / jhill_pa.cpp < prev    next >
C/C++ Source or Header  |  1996-02-19  |  6KB  |  124 lines

  1. Newsgroups: sci.fractals,bit.listserv.frac-l
  2. Path: unixg.ubc.ca!nntp.cs.ubc.ca!cyber2.cyberstore.ca!vanbc.wimsey.com!deep.rsoft.bc.ca!sol.ctr.columbia.edu!usc!elroy.jpl.nasa.gov!newncar!noao!CS.Arizona.EDU!zippy.Telcom.Arizona.EDU!mvb.saic.com!ast.saic.com!jupiter!hilljr
  3. From: hilljr@jupiter.saic.com (Jay R. Hill)
  4. Subject: Re: A warning to DEEPZOOMers
  5. Message-ID: <1994Jan11.212307.19702@ast.saic.com>
  6. Followup-To: sci.fractals
  7. Keywords: Mandelbrot Set color
  8. Lines: 109
  9. Sender: news@ast.saic.com
  10. Organization: SAIC
  11. References:  <1994Jan6.003042.5039@ast.saic.com>
  12. Date: Tue, 11 Jan 1994 21:23:07 GMT
  13. Xref: unixg.ubc.ca sci.fractals:2734 bit.listserv.frac-l:2479
  14.  
  15. In article <1994Jan6.003042.5039@ast.saic.com>, hilljr@jupiter.saic.com (Jay R. Hill) writes:
  16. |> Version 0.13 is now ready ...
  17.  
  18. There are now 133 potential Mandelmaniacs who have gotten their 
  19. lastest fix (at my ftp site or by email). 
  20.  
  21. |> Several folk have expressed interest in this project.  If the 
  22. |> interest is still there, I may post the source to DEEPZOOM in 
  23. |> segments (with discussion of technique).  
  24.  
  25.                        DEEPZOOM - I
  26.  
  27.               Mandelbrot Set Coloring Method.
  28.  
  29. One of the most enjoyable things about displaying the Mandelbrot 
  30. Set is actually being able to see all the intricate detail after a 
  31. lengthy calculation.  This depends on a good choice of palette and
  32. color algorithm.  A good palette is one which has no adjacent colors 
  33. differing by such a small amount that we can't tell them apart.  
  34.  
  35. My favorite palettes have no sudden jumps, but instead return 
  36. smoothly to the original color.  These provide a continuous sequence 
  37. of colors in the display even if the range of banding is great 
  38. enough to require more than one pass through the pelette.
  39.  
  40. Pelettes are defined in the RGB coordinate frame, where intensity
  41. of Red, Green and Blue are specified by values between 0 and 63.
  42. This is an unnatural system for us, so more useful coordinate
  43. systems were invented such as HSV (Hue, Saturation, Value).  Hue 
  44. is expressed as an angle in the color wheel.  Saturation specifies 
  45. the amount of white or gray in the color.  In DEEPZOOM, I use full 
  46. saturation since I want as much color separation as I can get.  
  47. Value is a scaling of the intensity ranging from black to full 
  48. intensity.
  49.  
  50. In my early experiments, I used maximum Saturation and let the Hue 
  51. range in equal angles around the color wheel.  This resulted in 
  52. many adjacent colors being indistinguishable near Blue, Green and 
  53. Red.  This color wheel had too few spokes near Cyan, Yellow, and 
  54. Magenta.  
  55.  
  56. Consider the sequence of colors from Green to Yellow.  Colors 
  57. formed by ramping Red linearly from 0 to 63 have too little Red 
  58. in the steps near Green to be noticable.  Larger steps near Green 
  59. are needed with smaller steps near Yellow.  So I tried using a 
  60. square root (of component/63) scale.  This made larger steps when 
  61. the contribution was small.  This scheme is the one I presently 
  62. use in DEEPZOOM.  
  63.  
  64. Here is my C++ code for the palette specification.  The global 
  65. variable 'scales' is the intensity scale factor equivalent to 
  66. Saturation. The special_scale function is simply a square root 
  67. which can be changed easily.  I use 108 color values to go around 
  68. the color wheel, starting with number 20.  I use XOR to paint the 
  69. cursor.  The colors XOR with 255 are chosen from the opposite side 
  70. of the color wheel so the cursor is clearly visible.
  71.  
  72. #define COLORSIZE 18
  73. #define BRIGHTEST 63.9
  74.  
  75. float scale,scales;
  76. float special_scale(float c){ return(sqrt(c)); }
  77. void SetMyColor(int C, int R, int G, int B){
  78.   float  red, green, blue, biggest, x;
  79.   red=special_scale(R/(float)COLORSIZE);
  80.   biggest=red;
  81.   green=special_scale(G/(float)COLORSIZE);
  82.   if(green>biggest)biggest=green;
  83.   blue=special_scale(B/(float)COLORSIZE);
  84.   if(blue>biggest)biggest=blue;
  85.   // I like my colors bright
  86.   x = scale*BRIGHTEST/biggest;
  87.   red *= x;
  88.   green *= x;
  89.   blue *= x;
  90.   setrgbpalette(C, (int)red, (int)green, (int)blue);
  91. }
  92. void MyPalette(void){
  93.   int C=20,R,G,B; 
  94.   scale=scales;
  95.   //  Colors for escapers
  96.   for(R=G=0,B=COLORSIZE; G<COLORSIZE; ++G,++C) SetMyColor(C,R,G,B);//B-C
  97.   for(R=0,B=G=COLORSIZE; B>0; --B,++C)         SetMyColor(C,R,G,B);//C-G
  98.   for(R=B=0,G=COLORSIZE; R<COLORSIZE; ++R,++C) SetMyColor(C,R,G,B);//G-Y
  99.   for(B=0,R=G=COLORSIZE; G>0; --G,++C)         SetMyColor(C,R,G,B);//Y-R
  100.   for(G=B=0,R=COLORSIZE; B<COLORSIZE; ++B,++C) SetMyColor(C,R,G,B);//R-M
  101.   for(G=0,R=B=COLORSIZE; R>0; --R,++C)         SetMyColor(C,R,G,B);//M-B
  102.   // and now for the XOR colors (for the cursor and interior)
  103.   C=255^20;   scale=1.0;
  104.   for(B=0,R=G=COLORSIZE; G>0; --G,--C)         SetMyColor(C,R,G,B);//Y-R
  105.   for(G=B=0,R=COLORSIZE; B<COLORSIZE; ++B,--C) SetMyColor(C,R,G,B);//R-M
  106.   for(G=0,R=B=COLORSIZE; R>0; --R,--C)         SetMyColor(C,R,G,B);//M-B
  107.   for(R=G=0,B=COLORSIZE; G<COLORSIZE; ++G,--C) SetMyColor(C,R,G,B);//B-C
  108.   for(R=0,B=G=COLORSIZE; B>0; --B,--C)         SetMyColor(C,R,G,B);//C-G
  109.   for(R=B=0,G=COLORSIZE; R<COLORSIZE; ++R,--C) SetMyColor(C,R,G,B);//G-Y
  110.   // and make the cursor WHITE over the filements
  111.   setrgbpalette(255 ^ LIGHTGRAY, 63, 63, 63);
  112.   setrgbpalette(255 ^ DARKGRAY, 63, 63, 63);
  113.   setrgbpalette(255 ^ BLACK, 63, 63, 63);
  114.   setrgbpalette(255 ^ WHITE, 0, 0, 0);
  115. }
  116.  
  117. Warmly,
  118. Jay "It's tonight honey, let's paint the town" Hill
  119. -- 
  120. { hilljr@jupiter.saic.com } begin writeln(3*ln(640320)/sqrt(163):17:15) end.
  121. void main(){double sqrt(), y=1/sqrt(2.), a=.5, m=1,z; int n=0;
  122. for(;m*=2,z=sqrt(1-y*y),y=(1-z)/(1+z),a=a*(1+y)*(1+y)-m*y,n<4;n++);
  123. printf("%17.15lf\n",1/a);}
  124.