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

  1.                                                // Example: 101 from Library Reference
  2. #include "..\3D-Ware\dddware.h"
  3. long     VXpos=0, VYpos=0, VZpos=0;
  4. long     Xpos=0, Ypos=0, Zpos=400;
  5. short    Xangle=0, Yangle=0, Zangle=0;
  6. short    VXangle=-0x900, VYangle=0, VZangle=0;
  7. short    ShapeHandle;
  8. char     Semaphores;
  9.  
  10. struct LookAtStructure mystruct;
  11.  
  12. void  main(void)
  13. {
  14.   dddInitAll();
  15.   ShapeHandle = (dddShapeLoad("EXAMPLE.3D"));  // Load the .3D data file.
  16.   dddSetViewPos(VXpos,VYpos,VZpos);            // Set the viewers angles in the 3D world.
  17.   dddSetDotGrid(159,99,160,100);               // Set up the dot grid parameters.
  18.   while  (!dddkeycode)
  19.   {
  20.     dddCls();                                  // Clear the graphics screen.
  21.     dddPrint6(1,0,0,"PRESS ANY KEY TO EXIT");
  22.     dddClearObjects();                         // Clear the viewing table.
  23.     VYangle += 0x80;                           // Rotate the shape in the Y plane.
  24.     VYangle = VYangle & 0xFFC0;
  25.  
  26.     mystruct.Xpos = Xpos;
  27.     mystruct.Ypos = Ypos;
  28.     mystruct.Zpos = Zpos;
  29.     mystruct.Xangle = VXangle;
  30.     mystruct.Yangle = VYangle;
  31.     mystruct.Zangle = VZangle;
  32.     mystruct.Distance = 1000;
  33.  
  34.     dddQLookAt(&mystruct);
  35.     dddDotGrid();
  36.     dddInsertObject(DRW_MOBILE,ShapeHandle,Semaphores,Xpos,Ypos,Zpos,0,0,0);
  37.                                                // Insert an object to be rendered.
  38.     dddDrawObjects();                          // Render all 3D objects we have inserted.
  39.     dddScreenSwap();                           // Flip the real screen and the dummy screen.
  40.   }
  41.   dddRestoreAll();                             // Bye.
  42. }
  43.