Moved various files from PolyVoxCore to PolyVoxImpl.

This commit is contained in:
David Williams
2009-04-02 20:37:43 +00:00
parent bd1d2b2244
commit 92cf2402e2
7 changed files with 29 additions and 38 deletions

View File

@@ -28,6 +28,15 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
namespace PolyVox
{
enum NormalGenerationMethod
{
SIMPLE, ///<Fastest
CENTRAL_DIFFERENCE,
SOBEL,
CENTRAL_DIFFERENCE_SMOOTHED,
SOBEL_SMOOTHED ///<Smoothest
};
template <typename VoxelType>
Vector3DFloat computeCentralDifferenceGradient(const VolumeIterator<VoxelType>& volIter);