GEL
2
GEL is a library for Geometry and Linear Algebra
|
00001 #ifndef __GEOMETRY_NEIGHBOURS_H 00002 #define __GEOMETRY_NEIGHBOURS_H 00003 00004 #include "CGLA/Vec3i.h" 00005 #include "CGLA/Vec3f.h" 00006 #include "CGLA/Vec3d.h" 00007 00008 namespace Geometry 00009 { 00010 extern const CGLA::Vec3f N6f[6]; 00011 extern const CGLA::Vec3i N6i[6]; 00012 extern const CGLA::Vec3d N6d[6]; 00013 00014 extern const CGLA::Vec3f N26f[26]; 00015 extern const CGLA::Vec3i N26i[26]; 00016 extern const CGLA::Vec3d N26d[26]; 00017 00018 extern const CGLA::Vec3i CubeCorners8i[8]; 00019 extern const CGLA::Vec3f CubeCorners8f[8]; 00020 } 00021 00022 00023 #endif