smap_getvec.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. smapGetEyeVector(SphereMap *smap, GLfloat *eye)
  8. {
  9. eye[X] = smap->eye[X];
  10. eye[Y] = smap->eye[Y];
  11. eye[Z] = smap->eye[Z];
  12. }
  13. void
  14. smapGetUpVector(SphereMap *smap, GLfloat *up)
  15. {
  16. up[X] = smap->up[X];
  17. up[Y] = smap->up[Y];
  18. up[Z] = smap->up[Z];
  19. }
  20. void
  21. smapGetObjectVector(SphereMap *smap, GLfloat *obj)
  22. {
  23. obj[X] = smap->obj[X];
  24. obj[Y] = smap->obj[Y];
  25. obj[Z] = smap->obj[Z];
  26. }