accpersp.h
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:1k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. #ifndef _ACCPERSP_
  2. #define _ACCPERSP_
  3. #ifdef WIN32
  4. # include "winGLdecs.h"
  5. #endif
  6. #include <GL/gl.h>
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. void accFrustum(GLdouble left, GLdouble right, 
  11. GLdouble bottom, GLdouble top,
  12. GLdouble znear, GLdouble zfar, 
  13. GLdouble pixdx, GLdouble pixdy, 
  14. GLdouble eyedx, GLdouble eyedy, 
  15. GLdouble focus);
  16. void accPerspective(GLdouble fovy, GLdouble aspect, 
  17.     GLdouble znear, GLdouble zfar, 
  18.     GLdouble pixdx, GLdouble pixdy, 
  19.     GLdouble eyedx, GLdouble eyedy, 
  20.     GLdouble focus);
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif