fixed typo

This commit is contained in:
Remi Beges
2012-06-09 17:07:01 +02:00
parent ebba6adae4
commit 879a33878e
20 changed files with 74 additions and 78 deletions

View File

@@ -2,10 +2,9 @@
// This file is part of the "Nazara Engine".
// For conditions of distribution and use, see copyright notice in Config.hpp
//#include <Nazara/Noise/Error.hpp>
//#include <Nazara/Noise/Config.hpp>
//#include <Nazara/Noise/Debug.hpp>
#include <iostream>
#include <Nazara/Core/Error.hpp>
#include <Nazara/Noise/Config.hpp>
#include <Nazara/Noise/Debug.hpp>
template <typename T>
NzSimplex3D<T>::NzSimplex3D()
@@ -155,3 +154,4 @@ T NzSimplex3D<T>::GetValue(T x, T y, T z, T res)
return (n1+n2+n3+n4)*32;
}
#include <Nazara/Core/DebugOff.hpp>