Bit renaming. Old Array class is gone, and is replaced by the Array2D class which has also been renamed to Array.

This commit is contained in:
David Williams
2014-08-24 22:30:50 +02:00
parent d49db280d5
commit d06dbdf054
18 changed files with 155 additions and 1158 deletions

View File

@ -23,7 +23,7 @@ freely, subject to the following restrictions:
#include "TestVolumeSubclass.h"
#include "PolyVoxCore/Impl/Array2D.h"
#include "PolyVoxCore/Array.h"
#include "PolyVoxCore/BaseVolume.h"
#include "PolyVoxCore/CubicSurfaceExtractor.h"
@ -167,7 +167,7 @@ public:
//void resize(const Region& regValidRegion);
private:
Array2D<3, VoxelType> mVolumeData;
Array<3, VoxelType> mVolumeData;
};
void TestVolumeSubclass::testExtractSurface()