home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / pcgraphc.zip / README.DOC < prev   
Text File  |  1989-01-02  |  2KB  |  63 lines

  1. This disk contains two program file and two header files which make
  2. up a graphics library which is similar in function the the graphics
  3. primitives available in Hewlett-Packard workstation BASIC.  These 
  4. are two dimensional graphics primitives.  The main files are 
  5.  
  6. GRAPHX.C    contains the graphics primitives
  7. LABELS.C    contains vectors for stroke drawn labels.
  8. GRAPH.H        header file for application programs
  9. GR_LIB.H    header file for library programs ( GRAPHX.C & LABELS.C)
  10.  
  11. In addition, there are several demonstration files and one utility
  12. file.  These are
  13.  
  14. LIN_DEMO.C    demonstrates various line type and repetition lengths
  15. LB_DEMO.C    demonstrates labeling capabilities
  16. PENDEMO.C    demonstrates pen selection for drawing and erasing lines
  17. CHARS.C        draws out the entire character set
  18. BIOPLOT.C    biorythm plotting program
  19. DGRAPH.C    program to selectively dump graphics to Epson 
  20.         RX/FX-80/100 printers
  21.  
  22. Additional information on the primitives is available in 
  23.  
  24. GFUNCT.TXT
  25.  
  26. and an introduction with example programs is available in
  27.  
  28. G_INTRO.TXT
  29.  
  30. The sample program BIOPLOT.C is provided to demonstrate some of these 
  31. functions in action.
  32.  
  33. The above programs are copyright 1988, 1989 by Lantern Systems and 
  34. have been released into the public domain for private use.
  35.  
  36. These programs are written in Microsoft C 5.1 and will compile correctly
  37. in C 5.0 .  To use these program, compile GRAPHX.C and LABELS.C without
  38. linking the code, i.e.,
  39.  
  40. cl graphx.c -c
  41. cl labels.c -c
  42.  
  43. To compile one of the demonstration programs type
  44.  
  45. cl <program_name.c> graphx labels
  46.  
  47. and the code will be linked after compilation (cl assumes that graphx and
  48. labels are object modules or library files.  Do not include the .c extension
  49. unless you intend to compile GRAPHX.C and LABELS.C as well).
  50.  
  51. These programs have been tested and are believed to be bug free to the 
  52. best of my ability to determine.  At present, they have been tested under
  53. the small memory model, only.  If you discover bugs, have suggestions,
  54. or have an interest in a more complete library (which supports interactive
  55. graphics applications and is in development), I may be contacted at
  56.  
  57.  
  58.     Robert Becker
  59.     Lantern Systems
  60.     9300 Collegeview Rd., Suite 309
  61.     Bloomington, MN   55437
  62.  
  63.