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

  1.                                              // Example: 037 from Library Reference
  2. #include "..\3D-Ware\dddware.h"
  3. short    VXpos=0, VYpos=0, VZpos=0;
  4. short    VXangle=0, VYangle=0, VZangle=0;
  5. short  main(void)
  6. {
  7.   dddLoadColors("EXAMPLE.COL");              // Load in the color palette called 'example.col' to 'standardpal'.
  8.   dddInitVideo();                            // Sets up video to mode 19 VGA 320*200 256 cols.
  9.   dddInitKeybd();
  10.   dddSetPal(dddstandardpal);                 // Set up the palette.
  11.   dddInit3d();                               // MUST be before any calls to 3D libraries !!!
  12.   dddSetViewPos16(VXpos,VYpos,VZpos);        // Set the viewers angles in the 3D world.
  13.   dddSetViewAngles(VXangle,VYangle,VZangle); // Set the viewers position in the 3D world.
  14.   dddSetClipArea(0,319,0,199);               // Set up clipping boundaries.
  15.                                              // Fatal error so quit with a message.
  16.   dddFatalError("* FATAL *  I forgot what I was doing so let's quit now.");
  17.   return 0;                                  // Does not get to here !!!.
  18. }
  19.