home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / toollib_2 / Examples / Tree / Builds / h / line_plott < prev    next >
Text File  |  1995-11-22  |  398b  |  20 lines

  1. /*** line_plotter.h ***/
  2. /* A line_processor that simply plots lines
  3.  * (c) Paul Field
  4.  * v1.00 - 21/11/95
  5.  */
  6.  
  7. #include "line_processor.h"
  8.  
  9.  
  10. extern const line_processor line_plotter;
  11.  
  12.  
  13. /* Additional functions */
  14.  
  15. void line_plotter_origin(int x, int y);
  16.  /* Set the origin of the line co-ordinate system to be the screen co-ordinate (x,y).
  17.   * Use this call before line_plotter.initialise().
  18.   */
  19.  
  20.