Work on gradient estimators. Added CENTRAL_DIFFERENCE_SMOOTHED and SOBEL_SMOOTHED.

This commit is contained in:
David Williams
2009-03-09 23:21:03 +00:00
parent 34c41cd32e
commit 31c0b24a27
4 changed files with 197 additions and 122 deletions

View File

@ -26,9 +26,11 @@ namespace PolyVox
{
enum NormalGenerationMethod
{
SIMPLE,
SIMPLE, //Fastest
CENTRAL_DIFFERENCE,
SOBEL
SOBEL,
CENTRAL_DIFFERENCE_SMOOTHED,
SOBEL_SMOOTHED //Smoothest
};
}