home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d2xx / d222 / plplot.lha / Plplot / src / source.zoo / plytik.c < prev    next >
C/C++ Source or Header  |  1989-05-15  |  200b  |  11 lines

  1. #include "plplot.h"
  2.  
  3. void plytik(x,y,left,right)
  4. int x, y, left, right;
  5. {      
  6.       draphy(x,y);
  7.       if (left != 0) draphy(x-left,y);
  8.       if (right != 0) draphy(x+right,y);
  9.       draphy(x,y);
  10. }
  11.