home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality Madness / VRMAD96_ONE.ISO / virtek / libex / libex093.c < prev    next >
C/C++ Source or Header  |  1995-08-24  |  603b  |  21 lines

  1.                                  // Example: 093 from Library Reference
  2. #include "..\3D-Ware\dddware.h"
  3. short    count;
  4. short  main(void)
  5. {
  6.   dddLoadColors("EXAMPLE.COL");  // Load in the color palette called 'example.col' to 'standardpal'.
  7.   dddInitVideo();
  8.   dddSetPal(dddstandardpal);
  9.   dddInit3d();
  10.   for  (count=0; count<199; count++)
  11.   {
  12.     dddPlot(count,count,count);  // Plot this pixel to the 1st screen.
  13.     dddScreenSwap();
  14.     dddPlot(count,count,count);  // Plot this pixel to the 2nd screen.
  15.     dddScreenSwap();
  16.   }
  17.   dddRestoreVideo();
  18.   dddClose3d();
  19.   return 0;
  20. }
  21.