home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / virus / ddj0491.zip / OLIVER.ZIP / SIERP.H < prev    next >
Text File  |  1991-01-23  |  2KB  |  51 lines

  1. LISTING 2================================================================
  2.  
  3. /*   SIERP.H --     Header file for Sierpinski's Triangle template
  4.      This (and the other header files like it) can be used to define
  5.      the initial fractal template for the SIERP.C and FRACDRAW.C programs
  6. */
  7. #define NPOINTS 3    /* Number of points on the "parent" polygon */
  8. #define NTRANS  3    /* Number of transformed "children" */
  9. #define NLEVELS 6    /* Number of levels to draw */
  10. #define COUNT 10000  /* Number of dots to paint */
  11. #define CENTERX 320  /* Center of the screen x, y*/
  12. #define CENTERY 240
  13. #define SEEDX -200,  200,  0  /* The "parent" polygon */
  14. #define SEEDY -200, -200, 200
  15.  
  16.         /* The tranformations which define the "children" */
  17. #define MOVEX -100.0,  100.0,   0.0  /* Displacement */
  18. #define MOVEY -100.0, -100.0, 100.0
  19. #define SIZEX   0.5,   0.5,   0.5    /* Size change */
  20. #define SIZEY   0.5,   0.5,   0.5
  21. #define SPINX   0.0,   0.0,   0.0    /* Rotation */
  22. #define SPINY   0.0,   0.0,   0.0
  23.  
  24. /* The following color definitions are ignored by the SIERP program
  25.    and used only by FRACDRAW.
  26.    PALETTE defines the 16-color VGA palette
  27.    COLOR intializes a two-dimensional array with color values:
  28.    each column in the array definition below corresponds to one level
  29.    of detail, and each row corresponds to a "part", or transformation.
  30.    Note that the array only needs to be 6 by 3 for the template defined
  31.    above, but more rows are included in case the user inserts additional
  32.    "parts".
  33. */
  34.  
  35. #define PALETTE {_BLACK, _RED, _GREEN, _CYAN, \
  36.          _BLUE, _MAGENTA, _BROWN, _WHITE, \
  37.          _GRAY, _LIGHTBLUE, _LIGHTGREEN, _LIGHTCYAN, \
  38.          _LIGHTRED, _LIGHTMAGENTA, _LIGHTYELLOW, _BRIGHTWHITE}
  39.  
  40. #define COLOR   {{2, 2, 2, 2, 2, 2},\
  41.              {1, 1, 1, 1, 1, 1},\
  42.          {5, 5, 5, 5, 5, 5},\
  43.          {4, 4, 4, 4, 4, 4},\
  44.          {2, 2, 2, 2, 2, 2},\
  45.          {3, 3, 3, 3, 3, 3},\
  46.          {7, 7, 7, 7, 7, 7},\
  47.          {8, 8, 8, 8, 8, 8},\
  48.          {1, 1, 1, 1, 1, 1}}
  49.          
  50.  
  51.