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