home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 February / PCWK0296.iso / sharewar / os2 / grafika / splot / demo / logo.spt < prev    next >
Text File  |  1994-07-13  |  238b  |  17 lines

  1.  
  2. #include <splot.h>
  3. main()
  4.    {
  5.    int i;
  6.    newpath();
  7.    translate(10,10);
  8.    text(0,0,"      SPLOT");
  9.    for (i=0;i < 360;i += 30)
  10.       {
  11.       gsave();
  12.       rotate(i);
  13.       stroke();
  14.       grestore();
  15.       }
  16.    }
  17.