Removed 'virtual' in front of templated function

Former-commit-id: 7afa1cdd4ff3db4b73dcb79bcfda6739859c3215
This commit is contained in:
Remi Beges 2012-10-09 22:15:29 +02:00
parent a72d388c05
commit 745b9dbbd1
3 changed files with 6 additions and 6 deletions

View File

@ -13,8 +13,8 @@
template <typename T> class NzAbstract2DNoise : public NzMappedNoiseBase<T>
{
public:
virtual T GetBasicValue(T x, T y);
virtual T GetMappedValue(T x, T y);
T GetBasicValue(T x, T y);
T GetMappedValue(T x, T y);
virtual T GetValue(T x, T y, T resolution) = 0;
};

View File

@ -13,8 +13,8 @@
template<typename T> class NzAbstract3DNoise : public NzMappedNoiseBase<T>
{
public:
virtual T GetBasicValue(T x, T y, T z);
virtual T GetMappedValue(T x, T y, T z);
T GetBasicValue(T x, T y, T z);
T GetMappedValue(T x, T y, T z);
virtual T GetValue(T x, T y, T z, T resolution) = 0;
};

View File

@ -13,8 +13,8 @@
template <typename T> class NzAbstract4DNoise : public NzMappedNoiseBase<T>
{
public:
virtual T GetBasicValue(T x, T y, T z, T w);
virtual T GetMappedValue(T x, T y, T z, T w);
T GetBasicValue(T x, T y, T z, T w);
T GetMappedValue(T x, T y, T z, T w);
virtual T GetValue(T x, T y, T z, T w, T resolution) = 0;
};