home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume15 / touchup / part05 / brush.c next >
Encoding:
C/C++ Source or Header  |  1988-06-14  |  2.0 KB  |  69 lines

  1.  
  2. /**************************************************************************
  3.    Touchup a bitmap graphics editor for the Sun Workstation running SunView
  4.    Copyright (c) 1988 by Raymond Kreisel
  5.    1/22/88 @ Suny Stony Brook
  6.  
  7.    This program may be redistributed without fee as long as this copyright
  8.    notice is intact.
  9.  
  10. ==> PLEASE send comments and bug reports to one of the following addresses:
  11.  
  12.        Ray Kreisel
  13.        CS Dept., SUNY at Stony Brook, Stony Brook NY 11794
  14.  
  15.        UUCP: {allegra, philabs, pyramid, research}!sbcs!rayk   
  16.        ARPA-Internet: rayk@sbcs.sunysb.edu            
  17.        CSnet: rayk@suny-sb
  18.        (If nobody is home at any of the above addresses try:
  19.         S72QKRE@TOWSONVX.BITNET                    )
  20.  
  21.  "If I get home before daylight, I just might get some sleep tonight...."
  22.  
  23. **************************************************************************/
  24.  
  25. #include <pixrect/pixrect_hs.h>
  26.  
  27. /**************************************************************************
  28.     file: brush.c
  29.     purpose: This file contains all that differents brush styles.
  30.         Brushes can be created with iconedit, using the upper
  31.         righthand 32x32 bits.  The 64x64 image from iconedit
  32.         is then stripped to 32x32 by strip_icon32x32
  33.  
  34.     modifications:
  35.         date:    Tue Mar 22 22:04:58 EST 1988
  36.         author:    rayk
  37.         changes:add comments
  38. **************************************************************************/
  39.  
  40. static short brush1_data[] = {
  41. #include "brush1.icon.pat"
  42. };
  43. static mpr_static(brush1_pr, 32, 32, 1, brush1_data);
  44.  
  45. static short brush2_data[] = {
  46. #include "brush2.icon.pat"
  47. };
  48. static mpr_static(brush2_pr, 32, 32, 1, brush2_data);
  49.  
  50. static short brush3_data[] = {
  51. #include "brush3.icon.pat"
  52. };
  53. static mpr_static(brush3_pr, 32, 32, 1, brush3_data);
  54.  
  55. static short brush4_data[] = {
  56. #include "brush4.icon.pat"
  57. };
  58. static mpr_static(brush4_pr, 32, 32, 1, brush4_data);
  59.  
  60. static short brush5_data[] = {
  61. #include "brush5.icon.pat"
  62. };
  63. static mpr_static(brush5_pr, 32, 32, 1, brush5_data);
  64.  
  65. static short brush6_data[] = {
  66. #include "brush6.icon.pat"
  67. };
  68. static mpr_static(brush6_pr, 32, 32, 1, brush6_data);
  69.