Subversion Repositories gelsvn

Rev

Rev 113 | Go to most recent revision | Details | Last modification | View Log | RSS feed

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