Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

  1. #ifndef PPLANE_H
  2. #define PPLANE_H
  3. /*
  4. **-----------------------------------------------------------------------------
  5. ** File: PPlane.h
  6. ** Purpose: Sample showing DrawPrimitive functionality
  7. **
  8. ** Copyright (c) 1995 - 1997 by Microsoft, all rights reserved
  9. **-----------------------------------------------------------------------------
  10. */
  11. /*
  12. **-----------------------------------------------------------------------------
  13. ** Include files
  14. **-----------------------------------------------------------------------------
  15. */
  16. #include "Common.h"
  17. /*
  18. **-----------------------------------------------------------------------------
  19. ** Type definitions
  20. **-----------------------------------------------------------------------------
  21. */
  22. typedef struct t_plane {
  23. D3DVECTOR loc, // current location
  24. goal, // current goal
  25. delta; // current direction
  26. float yaw, pitch, roll;
  27. float dyaw;
  28. } Plane;
  29. /*
  30. **-----------------------------------------------------------------------------
  31. ** End of File
  32. **-----------------------------------------------------------------------------
  33. */
  34. #endif // PPLANE_H