PPLANE.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  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