smap_nearfar.c
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:1k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1998.  */
  2. /* This program is freely distributable without licensing fees
  3.    and is provided without guarantee or warrantee expressed or
  4.    implied. This program is -not- in the public domain. */
  5. #include "glsmapint.h"
  6. void
  7. smapSetNearFar(SphereMap *smap,
  8.    GLfloat viewNear, GLfloat viewFar)
  9. {
  10. /* Curse Intel for "near" and "far" keywords. */
  11. smap->viewNear = viewNear;
  12. smap->viewFar = viewFar;
  13. }
  14. void
  15. smapGetNearFar(SphereMap *smap,
  16.    GLfloat *viewNear, GLfloat *viewFar)
  17. {
  18. /* Curse Intel for "near" and "far" keywords. */
  19.         *viewNear = smap->viewNear;
  20. *viewFar = smap->viewFar;
  21. }