11 lines
192 B
C++
11 lines
192 B
C++
#ifndef MARCHING_CUBES_TABLES_HEADER_INCLUDED
|
|
#define MARCHING_CUBES_TABLES_HEADER_INCLUDED
|
|
|
|
namespace PolyVox
|
|
{
|
|
extern int edgeTable[256];
|
|
extern int triTable[256][16];
|
|
}
|
|
|
|
#endif
|