home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume10 / logo / part01 / admtek.i < prev    next >
Encoding:
Text File  |  1987-06-23  |  249 b   |  19 lines

  1.  
  2. /* Include file for turtle.c for both ADM and TEK */
  3.  
  4. plotpos(x,y)
  5. int x,y;
  6. {
  7.     char s[5];
  8.  
  9.     x += 512;
  10.     y += 390;
  11.     s[0] = 040 + ((y>>5)&037);
  12.     s[1] = 0140 + (y&037);
  13.     s[2] = 040 + ((x>>5)&037);
  14.     s[3] = 0100 + (x&037);
  15.     s[4] = 0;
  16.     printf("%s",s);
  17. }
  18.  
  19.