home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 035 / splot122.zip / 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.