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

OpenGL

开发平台:

Windows_Unix

  1. #ifndef _SIMPLEVECTOR_H_
  2. #define _SIMPLEVECTOR_H_
  3. class CVector3
  4. {
  5.     public:
  6.         float x, y, z;
  7.         inline void Set( float xx, float yy, float zz )
  8.         { x=xx; y=yy; z=zz; };
  9.         CVector3() {};
  10.         CVector3( float x, float y, float z ) { Set( x, y, z ); }
  11. };
  12. #endif