Subversion Repositories gelsvn

Rev

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

Rev Author Line No. Line
61 jab 1
#ifndef __NEIGHBOURS_H
2
#define __NEIGHBOURS_H
3
 
4
#include "CGLA/Vec3i.h"
5
#include "CGLA/Vec3f.h"
6
#include "CGLA/Vec3d.h"
7
 
8
namespace Geometry
9
{
10
	extern const CGLA::Vec3f N6f[6];
11
	extern const CGLA::Vec3i N6i[6];
12
	extern const CGLA::Vec3d N6d[6];
13
 
14
	extern const CGLA::Vec3f N26f[26];
15
	extern const CGLA::Vec3i N26i[26];
16
	extern const CGLA::Vec3d N26d[26];
17
 
18
	extern const CGLA::Vec3i CubeCorners8i[8];
19
	extern const CGLA::Vec3f CubeCorners8f[8];
20
}
21
 
22
 
23
#endif