Subversion Repositories gelsvn

Rev

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

Rev 595 Rev 630
1
/* ----------------------------------------------------------------------- *
1
/* ----------------------------------------------------------------------- *
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
3
 * Copyright (C) the authors and DTU Informatics
3
 * Copyright (C) the authors and DTU Informatics
4
 * For license and list of authors, see ../../doc/intro.pdf
4
 * For license and list of authors, see ../../doc/intro.pdf
5
 * ----------------------------------------------------------------------- */
5
 * ----------------------------------------------------------------------- */
6
 
6
 
7
/** @file Vec3Hf.h
7
/** @file Vec3Hf.h
8
 * @brief Homogeneous 3D vector class - really a 4D vector.
8
 * @brief Homogeneous 3D vector class - really a 4D vector.
9
 */
9
 */
10
 
10
 
11
#ifndef __CGLA_VEC3HF_H__
11
#ifndef __CGLA_VEC3HF_H__
12
#define __CGLA_VEC3HF_H__
12
#define __CGLA_VEC3HF_H__
13
 
13
 
14
#include "Vec4f.h"
14
#include "Vec4f.h"
15
 
15
 
16
namespace CGLA {
16
namespace CGLA {
17
 
17
 
18
	/** A 3D homogeneous vector is simply a four D vector.
18
	/** A 3D homogeneous vector is simply a four D vector.
19
			I find this simpler than a special class for homogeneous
19
			I find this simpler than a special class for homogeneous
20
			vectors. */
20
			vectors. */
21
	typedef Vec4f Vec3Hf;
21
	typedef Vec4f Vec3Hf;
22
 
22
 
23
}
23
}
24
#endif
24
#endif
25
 
25
 
26
 
26