Removed now redundant reference surface extractor.

This commit is contained in:
David Williams
2009-05-05 07:58:04 +00:00
parent c03c18c1e4
commit 74013b7500
6 changed files with 3 additions and 391 deletions

View File

@ -10,7 +10,6 @@
#include "PolyVoxImpl/DecimatedSurfaceExtractor.h"
#include "PolyVoxImpl/FastSurfaceExtractor.h"
#include "PolyVoxImpl/ReferenceSurfaceExtractor.h"
#include <algorithm>
@ -31,11 +30,4 @@ namespace PolyVox
singleMaterialPatch->m_v3dRegionPosition = region.getLowerCorner();
}
void extractReferenceSurface(Volume<uint8_t>* volumeData, Region region, IndexedSurfacePatch* singleMaterialPatch)
{
extractReferenceSurfaceImpl(volumeData, region, singleMaterialPatch);
singleMaterialPatch->m_v3dRegionPosition = region.getLowerCorner();
}
}