Subversion Repositories gelsvn

Rev

Rev 67 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 67 Rev 94
Line 4... Line 4...
4
#include "Vec3i.h"
4
#include "Vec3i.h"
5
 
5
 
6
namespace CGLA {
6
namespace CGLA {
7
	typedef unsigned short int USInt;
7
	typedef unsigned short int USInt;
8
 
8
 
9
	/** Unsigned short int 3D vector class. 
9
	/** \brief Unsigned short int 3D vector class. 
-
 
10
 
10
			This class is mainly useful if we need a 3D int vector that takes up
11
			This class is mainly useful if we need a 3D int vector that takes up
11
			less room than a Vec3i but holds larger numbers than a Vec3c. */
12
			less room than a Vec3i but holds larger numbers than a Vec3c. */
12
	class Vec3usi: public ArithVec3Int<int,Vec3usi>
13
	class Vec3usi: public ArithVec3Int<int,Vec3usi>
13
	{
14
	{
14
 
15