#ifndef __PolyVox_GradientEstimators_H__ #define __PolyVox_GradientEstimators_H__ #include "VolumeIterator.h" namespace PolyVox { //FIXME - gradient can be expressed with ints. template Vector3DFloat computeCentralDifferenceGradient(const VolumeIterator& volIter); template Vector3DFloat computeSobelGradient(const VolumeIterator& volIter); } #include "GradientEstimators.inl" #endif //__PolyVox_GradientEstimators_H__