Subversion Repositories gelsvn

Rev

Rev 2 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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