Vector.h
上传用户:sz83729876
上传日期:2013-03-07
资源大小:4140k
文件大小:0k
源码类别:

OpenGL

开发平台:

Windows_Unix

  1. //
  2. // a64ki
  3. // Copyright (c) 2002 Henrik Carlgren
  4. // http://ziruz.cjb.net
  5. // ziruz@hotpop.com
  6. //
  7. #ifndef vector_h
  8. #define vector_h
  9. //
  10. // INCLUDE FILES
  11. //
  12. #include <cmath>
  13. //
  14. // CLASS PROTOTYPES
  15. //
  16. class VECTOR
  17. {
  18. public:
  19. VECTOR() { }
  20. VECTOR(float _x, float _y, float _z) { x = _x; y = _y; z = _z; }
  21. float x,y,z;
  22. };
  23. #endif // vector_h