Subversion Repositories gelsvn

Rev

Rev 113 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 113 Rev 393
1
#ifndef __CGLA_VEC3HF_H__
1
#ifndef __CGLA_VEC3HF_H__
2
#define __CGLA_VEC3HF_H__
2
#define __CGLA_VEC3HF_H__
3
 
3
 
4
#include "Vec4f.h"
4
#include "Vec4f.h"
5
 
5
 
6
namespace CGLA {
6
namespace CGLA {
7
 
7
 
8
	/** A 3D homogeneous vector is simply a four D vector.
8
	/** A 3D homogeneous vector is simply a four D vector.
9
			I find this simpler than a special class for homogeneous
9
			I find this simpler than a special class for homogeneous
10
			vectors. */
10
			vectors. */
11
	typedef Vec4f Vec3Hf;
11
	typedef Vec4f Vec3Hf;
12
 
12
 
13
}
13
}
14
#endif
14
#endif
15
 
15
 
16
 
16