home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff368.lzh / GraphicsPak / README < prev    next >
Text File  |  1990-08-15  |  1KB  |  33 lines

  1. 07/04/90
  2. Paul Miller
  3.  
  4.  
  5. The Graphics Package (graphics_pak) is one of my useful packages of simple
  6. functions for quick and easy programming of standard graphics operations.
  7.  
  8. The package gives simple one-call functions to allocate, manipulate, and free
  9. BitMaps, open and close libraries, and draw pixels, lines, rectangles, and
  10. text. These are quite simple, and normally replace two or three lines of code
  11. to accomplish the same thing. Some of these should have been done as macros,
  12. but these are easier to modify. If you are looking for speed, and don't want
  13. the extra function-calling overhead, the drawing functions are probably
  14. worthless. However, I use the library functions in all my programs:
  15.  
  16. An example:
  17.  
  18.     OpenLibraries(GFXBASE|INTUITIONBASE|DISKFONTBASE);
  19.          .
  20.          .
  21.          .
  22.     CloseLibraries();         /* easy, huh? */
  23.  
  24.  
  25. Don't forget to include the "graphics_pak.h" file in your programs.
  26.  
  27. Refer to "graphics_pak.doc" for more info.
  28.  
  29. Feel free to use these functions or the object module in your programs. If
  30. you end up just linking in the graphics_pak.o object module, kindly mention
  31. me in your credits, eh? Enjoy.
  32.  
  33.