fixed typo
This commit is contained in:
parent
ebba6adae4
commit
879a33878e
|
|
@ -2,16 +2,16 @@ project "NazaraNoise"
|
||||||
|
|
||||||
files
|
files
|
||||||
{
|
{
|
||||||
"../include/Nazara/Noise/**.hpp",
|
"../include/Nazara/Noise/**.hpp",
|
||||||
"../include/Nazara/Noise/**.inl",
|
"../include/Nazara/Noise/**.inl",
|
||||||
"../src/Nazara/Noise/**.hpp",
|
"../src/Nazara/Noise/**.hpp",
|
||||||
"../src/Nazara/Noise/**.cpp"
|
"../src/Nazara/Noise/**.cpp"
|
||||||
}
|
}
|
||||||
|
|
||||||
if (os.is("windows")) then
|
if (os.is("windows")) then
|
||||||
excludes { "../src/Nazara/ModuleName/Posix/*.hpp", "../src/Nazara/ModuleName/Posix/*.cpp" }
|
excludes { "../src/Nazara/Noise/Posix/*.hpp", "../src/Nazara/Noise/Posix/*.cpp" }
|
||||||
else
|
else
|
||||||
excludes { "../src/Nazara/ModuleName/Win32/*.hpp", "../src/Nazara/ModuleName/Win32/*.cpp" }
|
excludes { "../src/Nazara/Noise/Win32/*.hpp", "../src/Nazara/Noise/Win32/*.cpp" }
|
||||||
end
|
end
|
||||||
|
|
||||||
configuration "DebugStatic"
|
configuration "DebugStatic"
|
||||||
|
|
|
||||||
|
|
@ -8,10 +8,9 @@
|
||||||
#define COMPLEXNOISEBASE_H
|
#define COMPLEXNOISEBASE_H
|
||||||
|
|
||||||
#include <Nazara/Prerequesites.hpp>
|
#include <Nazara/Prerequesites.hpp>
|
||||||
//#include <Nazara/Noise/NoiseBase.hpp>
|
#include <Nazara/Noise/NoiseBase.hpp>
|
||||||
#include "NoiseBase.hpp"
|
|
||||||
|
|
||||||
class NzComplexNoiseBase : public NzNoiseBase
|
class NAZARA_API NzComplexNoiseBase : public NzNoiseBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
NzComplexNoiseBase();
|
NzComplexNoiseBase();
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
#include <Nazara/Prerequesites.hpp>
|
#include <Nazara/Prerequesites.hpp>
|
||||||
|
|
||||||
class NzNoiseBase
|
class NAZARA_API NzNoiseBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
NzNoiseBase(int seed = 0);
|
NzNoiseBase(int seed = 0);
|
||||||
|
|
|
||||||
|
|
@ -8,8 +8,7 @@
|
||||||
#define NOISEMACHINE_HPP
|
#define NOISEMACHINE_HPP
|
||||||
|
|
||||||
#include <Nazara/Prerequesites.hpp>
|
#include <Nazara/Prerequesites.hpp>
|
||||||
//#include <Nazara/Noise/ComplexNoiseBase.hpp>
|
#include <Nazara/Noise/ComplexNoiseBase.hpp>
|
||||||
#include "ComplexNoiseBase.hpp"
|
|
||||||
#include <Nazara/Math/Vector2.hpp>
|
#include <Nazara/Math/Vector2.hpp>
|
||||||
#include <Nazara/Math/Vector3.hpp>
|
#include <Nazara/Math/Vector3.hpp>
|
||||||
#include <Nazara/Math/Vector4.hpp>
|
#include <Nazara/Math/Vector4.hpp>
|
||||||
|
|
@ -17,7 +16,7 @@
|
||||||
//TODO : AMELIORER MELANGE TABLE PERMUTATION
|
//TODO : AMELIORER MELANGE TABLE PERMUTATION
|
||||||
// PB MULTIPLES APPELS SHUFFLEPERMUTATIONTABLE()
|
// PB MULTIPLES APPELS SHUFFLEPERMUTATIONTABLE()
|
||||||
|
|
||||||
class NzNoiseMachine : public NzComplexNoiseBase
|
class NAZARA_API NzNoiseMachine : public NzComplexNoiseBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
NzNoiseMachine(int seed = 0);
|
NzNoiseMachine(int seed = 0);
|
||||||
|
|
|
||||||
|
|
@ -8,11 +8,10 @@
|
||||||
#define PERLIN2D_H
|
#define PERLIN2D_H
|
||||||
|
|
||||||
#include <Nazara/Prerequesites.hpp>
|
#include <Nazara/Prerequesites.hpp>
|
||||||
//#include <Nazara/Noise/NoiseBase.hpp>
|
#include <Nazara/Noise/NoiseBase.hpp>
|
||||||
#include "NoiseBase.hpp"
|
|
||||||
#include <Nazara/Math/Vector2.hpp>
|
#include <Nazara/Math/Vector2.hpp>
|
||||||
|
|
||||||
template <typename T> class NzPerlin2D : public NzNoiseBase
|
template <typename T> class NAZARA_API NzPerlin2D : public NzNoiseBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
NzPerlin2D();
|
NzPerlin2D();
|
||||||
|
|
@ -33,8 +32,7 @@ template <typename T> class NzPerlin2D : public NzNoiseBase
|
||||||
typedef NzPerlin2D<float> NzPerlin2Df;
|
typedef NzPerlin2D<float> NzPerlin2Df;
|
||||||
typedef NzPerlin2D<double> NzPerlin2Dd;
|
typedef NzPerlin2D<double> NzPerlin2Dd;
|
||||||
|
|
||||||
//#include <Nazara/Noise/Perlin2D.inl>
|
#include <Nazara/Noise/Perlin2D.inl>
|
||||||
#include "Perlin2D.inl"
|
|
||||||
|
|
||||||
#endif // PERLIN2D_H
|
#endif // PERLIN2D_H
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,9 +2,9 @@
|
||||||
// This file is part of the "Nazara Engine".
|
// This file is part of the "Nazara Engine".
|
||||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||||
|
|
||||||
//#include <Nazara/Noise/Error.hpp>
|
#include <Nazara/Core/Error.hpp>
|
||||||
//#include <Nazara/Noise/Config.hpp>
|
#include <Nazara/Noise/Config.hpp>
|
||||||
//#include <Nazara/Noise/Debug.hpp>
|
#include <Nazara/Noise/Debug.hpp>
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
NzPerlin2D<T>::NzPerlin2D()
|
NzPerlin2D<T>::NzPerlin2D()
|
||||||
|
|
@ -57,3 +57,4 @@ T NzPerlin2D<T>::GetValue(T x, T y, T res)
|
||||||
return Li1 + Cy*(Li2-Li1);
|
return Li1 + Cy*(Li2-Li1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#include <Nazara/Core/DebugOff.hpp>
|
||||||
|
|
|
||||||
|
|
@ -8,11 +8,10 @@
|
||||||
#define PERLIN3D_H
|
#define PERLIN3D_H
|
||||||
|
|
||||||
#include <Nazara/Prerequesites.hpp>
|
#include <Nazara/Prerequesites.hpp>
|
||||||
//#include <Nazara/Noise/NoiseBase.hpp>
|
#include <Nazara/Noise/NoiseBase.hpp>
|
||||||
#include "NoiseBase.hpp"
|
|
||||||
#include <Nazara/Math/Vector3.hpp>
|
#include <Nazara/Math/Vector3.hpp>
|
||||||
|
|
||||||
template <typename T> class NzPerlin3D : public NzNoiseBase
|
template <typename T> class NAZARA_API NzPerlin3D : public NzNoiseBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
NzPerlin3D();
|
NzPerlin3D();
|
||||||
|
|
@ -36,7 +35,6 @@ template <typename T> class NzPerlin3D : public NzNoiseBase
|
||||||
typedef NzPerlin3D<float> NzPerlin3Df;
|
typedef NzPerlin3D<float> NzPerlin3Df;
|
||||||
typedef NzPerlin3D<double> NzPerlin3Dd;
|
typedef NzPerlin3D<double> NzPerlin3Dd;
|
||||||
|
|
||||||
//#include <Nazara/Noise/Perlin3D.inl>
|
#include <Nazara/Noise/Perlin3D.inl>
|
||||||
#include "Perlin3D.inl"
|
|
||||||
|
|
||||||
#endif // PERLIN3D_H
|
#endif // PERLIN3D_H
|
||||||
|
|
|
||||||
|
|
@ -2,9 +2,9 @@
|
||||||
// This file is part of the "Nazara Engine".
|
// This file is part of the "Nazara Engine".
|
||||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||||
|
|
||||||
//#include <Nazara/Noise/Error.hpp>
|
#include <Nazara/Core/Error.hpp>
|
||||||
//#include <Nazara/Noise/Config.hpp>
|
#include <Nazara/Noise/Config.hpp>
|
||||||
//#include <Nazara/Noise/Debug.hpp>
|
#include <Nazara/Noise/Debug.hpp>
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
NzPerlin3D<T>::NzPerlin3D()
|
NzPerlin3D<T>::NzPerlin3D()
|
||||||
|
|
@ -88,3 +88,5 @@ T NzPerlin3D<T>::GetValue(T x, T y, T z, T res)
|
||||||
|
|
||||||
return Li5 + Cz*(Li6-Li5);
|
return Li5 + Cz*(Li6-Li5);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#include <Nazara/Core/DebugOff.hpp>
|
||||||
|
|
|
||||||
|
|
@ -8,11 +8,10 @@
|
||||||
#define PERLIN4D_H
|
#define PERLIN4D_H
|
||||||
|
|
||||||
#include <Nazara/Prerequesites.hpp>
|
#include <Nazara/Prerequesites.hpp>
|
||||||
//#include <Nazara/Noise/NoiseBase.hpp>
|
#include <Nazara/Noise/NoiseBase.hpp>
|
||||||
#include "NoiseBase.hpp"
|
|
||||||
#include <Nazara/Math/Vector4.hpp>
|
#include <Nazara/Math/Vector4.hpp>
|
||||||
|
|
||||||
template <typename T> class NzPerlin4D : public NzNoiseBase
|
template <typename T> class NAZARA_API NzPerlin4D : public NzNoiseBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
NzPerlin4D();
|
NzPerlin4D();
|
||||||
|
|
@ -36,7 +35,6 @@ template <typename T> class NzPerlin4D : public NzNoiseBase
|
||||||
typedef NzPerlin4D<float> NzPerlin4Df;
|
typedef NzPerlin4D<float> NzPerlin4Df;
|
||||||
typedef NzPerlin4D<double> NzPerlin4Dd;
|
typedef NzPerlin4D<double> NzPerlin4Dd;
|
||||||
|
|
||||||
//#include <Nazara/Noise/Perlin4D.inl>
|
#include <Nazara/Noise/Perlin4D.inl>
|
||||||
#include "Perlin4D.inl"
|
|
||||||
|
|
||||||
#endif // PERLIN4D_H
|
#endif // PERLIN4D_H
|
||||||
|
|
|
||||||
|
|
@ -2,9 +2,9 @@
|
||||||
// This file is part of the "Nazara Engine".
|
// This file is part of the "Nazara Engine".
|
||||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||||
|
|
||||||
//#include <Nazara/Noise/Error.hpp>
|
#include <Nazara/Core/Error.hpp>
|
||||||
//#include <Nazara/Noise/Config.hpp>
|
#include <Nazara/Noise/Config.hpp>
|
||||||
//#include <Nazara/Noise/Debug.hpp>
|
#include <Nazara/Noise/Debug.hpp>
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
NzPerlin4D<T>::NzPerlin4D()
|
NzPerlin4D<T>::NzPerlin4D()
|
||||||
|
|
@ -146,3 +146,5 @@ T NzPerlin4D<T>::GetValue(T x, T y, T z, T w, T res)
|
||||||
|
|
||||||
return Li13 + Cw*(Li14-Li13);
|
return Li13 + Cw*(Li14-Li13);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#include <Nazara/Core/DebugOff.hpp>
|
||||||
|
|
|
||||||
|
|
@ -8,12 +8,10 @@
|
||||||
#define SIMPLEX2D_H
|
#define SIMPLEX2D_H
|
||||||
|
|
||||||
#include <Nazara/Prerequesites.hpp>
|
#include <Nazara/Prerequesites.hpp>
|
||||||
//#include <Nazara/Noise/NoiseBase.hpp>
|
#include <Nazara/Noise/NoiseBase.hpp>
|
||||||
#include "NoiseBase.hpp"
|
|
||||||
#include <Nazara/Math/Vector2.hpp>
|
#include <Nazara/Math/Vector2.hpp>
|
||||||
|
|
||||||
|
template <typename T> class NAZARA_API NzSimplex2D : public NzNoiseBase
|
||||||
template <typename T> class NzSimplex2D : public NzNoiseBase
|
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
NzSimplex2D();
|
NzSimplex2D();
|
||||||
|
|
@ -39,8 +37,7 @@ template <typename T> class NzSimplex2D : public NzNoiseBase
|
||||||
typedef NzSimplex2D<float> NzSimplex2Df;
|
typedef NzSimplex2D<float> NzSimplex2Df;
|
||||||
typedef NzSimplex2D<double> NzSimplex2Dd;
|
typedef NzSimplex2D<double> NzSimplex2Dd;
|
||||||
|
|
||||||
//#include <Nazara/Noise/Simplex2D.inl>
|
#include <Nazara/Noise/Simplex2D.inl>
|
||||||
#include "Simplex2D.inl"
|
|
||||||
|
|
||||||
#endif // SIMPLEX2D_H
|
#endif // SIMPLEX2D_H
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,9 +2,9 @@
|
||||||
// This file is part of the "Nazara Engine".
|
// This file is part of the "Nazara Engine".
|
||||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||||
|
|
||||||
//#include <Nazara/Noise/Error.hpp>
|
#include <Nazara/Core/Error.hpp>
|
||||||
//#include <Nazara/Noise/Config.hpp>
|
#include <Nazara/Noise/Config.hpp>
|
||||||
//#include <Nazara/Noise/Debug.hpp>
|
#include <Nazara/Noise/Debug.hpp>
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
NzSimplex2D<T>::NzSimplex2D()
|
NzSimplex2D<T>::NzSimplex2D()
|
||||||
|
|
@ -85,3 +85,4 @@ T NzSimplex2D<T>::GetValue(T x, T y, T res)
|
||||||
return (n1+n2+n3)*70;
|
return (n1+n2+n3)*70;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#include <Nazara/Core/DebugOff.hpp>
|
||||||
|
|
|
||||||
|
|
@ -8,12 +8,10 @@
|
||||||
#define SIMPLEX3D_H
|
#define SIMPLEX3D_H
|
||||||
|
|
||||||
#include <Nazara/Prerequesites.hpp>
|
#include <Nazara/Prerequesites.hpp>
|
||||||
//#include <Nazara/Noise/NoiseBase.hpp>
|
#include <Nazara/Noise/NoiseBase.hpp>
|
||||||
#include "NoiseBase.hpp"
|
#include <Nazara/Math/Vector3.hpp>
|
||||||
|
|
||||||
|
template <typename T> class NAZARA_API NzSimplex3D : public NzNoiseBase
|
||||||
|
|
||||||
template <typename T> class NzSimplex3D : public NzNoiseBase
|
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
NzSimplex3D();
|
NzSimplex3D();
|
||||||
|
|
@ -39,8 +37,7 @@ template <typename T> class NzSimplex3D : public NzNoiseBase
|
||||||
typedef NzSimplex3D<float> NzSimplex3Df;
|
typedef NzSimplex3D<float> NzSimplex3Df;
|
||||||
typedef NzSimplex3D<double> NzSimplex3Dd;
|
typedef NzSimplex3D<double> NzSimplex3Dd;
|
||||||
|
|
||||||
//#include <Nazara/Noise/Simplex3D.inl>
|
#include <Nazara/Noise/Simplex3D.inl>
|
||||||
#include "Simplex3D.inl"
|
|
||||||
|
|
||||||
#endif // SIMPLEX3D_H
|
#endif // SIMPLEX3D_H
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,9 @@
|
||||||
// This file is part of the "Nazara Engine".
|
// This file is part of the "Nazara Engine".
|
||||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||||
|
|
||||||
//#include <Nazara/Noise/Error.hpp>
|
#include <Nazara/Core/Error.hpp>
|
||||||
//#include <Nazara/Noise/Config.hpp>
|
#include <Nazara/Noise/Config.hpp>
|
||||||
//#include <Nazara/Noise/Debug.hpp>
|
#include <Nazara/Noise/Debug.hpp>
|
||||||
#include <iostream>
|
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
NzSimplex3D<T>::NzSimplex3D()
|
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;
|
return (n1+n2+n3+n4)*32;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#include <Nazara/Core/DebugOff.hpp>
|
||||||
|
|
|
||||||
|
|
@ -8,12 +8,10 @@
|
||||||
#define SIMPLEX4D_H
|
#define SIMPLEX4D_H
|
||||||
|
|
||||||
#include <Nazara/Prerequesites.hpp>
|
#include <Nazara/Prerequesites.hpp>
|
||||||
//#include <Nazara/Noise/NoiseBase.hpp>
|
#include <Nazara/Noise/NoiseBase.hpp>
|
||||||
#include "NoiseBase.hpp"
|
|
||||||
#include <Nazara/Math/Vector4.hpp>
|
#include <Nazara/Math/Vector4.hpp>
|
||||||
|
|
||||||
|
template <typename T> class NAZARA_API NzSimplex4D : public NzNoiseBase
|
||||||
template <typename T> class NzSimplex4D : public NzNoiseBase
|
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
NzSimplex4D();
|
NzSimplex4D();
|
||||||
|
|
@ -41,8 +39,7 @@ template <typename T> class NzSimplex4D : public NzNoiseBase
|
||||||
typedef NzSimplex4D<float> NzSimplex4Df;
|
typedef NzSimplex4D<float> NzSimplex4Df;
|
||||||
typedef NzSimplex4D<double> NzSimplex4Dd;
|
typedef NzSimplex4D<double> NzSimplex4Dd;
|
||||||
|
|
||||||
//#include <Nazara/Noise/Simplex4D.inl>
|
#include <Nazara/Noise/Simplex4D.inl>
|
||||||
#include "Simplex4D.inl"
|
|
||||||
|
|
||||||
#endif // SIMPLEX4D_H
|
#endif // SIMPLEX4D_H
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,9 +2,9 @@
|
||||||
// This file is part of the "Nazara Engine".
|
// This file is part of the "Nazara Engine".
|
||||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||||
|
|
||||||
//#include <Nazara/Noise/Error.hpp>
|
#include <Nazara/Core/Error.hpp>
|
||||||
//#include <Nazara/Noise/Config.hpp>
|
#include <Nazara/Noise/Config.hpp>
|
||||||
//#include <Nazara/Noise/Debug.hpp>
|
#include <Nazara/Noise/Debug.hpp>
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
NzSimplex4D<T>::NzSimplex4D()
|
NzSimplex4D<T>::NzSimplex4D()
|
||||||
|
|
@ -160,3 +160,4 @@ T NzSimplex4D<T>::GetValue(T x, T y, T z, T w, T res)
|
||||||
return (n1+n2+n3+n4+n5)*27.0;
|
return (n1+n2+n3+n4+n5)*27.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#include <Nazara/Core/DebugOff.hpp>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,12 @@
|
||||||
#include "ComplexNoiseBase.hpp"
|
// Copyright (C) 2012 Rémi Bèges
|
||||||
|
// This file is part of the "Nazara Engine".
|
||||||
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||||
|
|
||||||
|
#include <Nazara/Noise/ComplexNoiseBase.hpp>
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
|
#include <Nazara/Core/Error.hpp>
|
||||||
|
#include <Nazara/Noise/Config.hpp>
|
||||||
|
#include <Nazara/Noise/Debug.hpp>
|
||||||
|
|
||||||
NzComplexNoiseBase::NzComplexNoiseBase()
|
NzComplexNoiseBase::NzComplexNoiseBase()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||||
|
|
||||||
#include <Nazara/Noise/Noise.hpp>
|
#include <Nazara/Noise/Noise.hpp>
|
||||||
#include <Nazara/Noise/Error.hpp>
|
#include <Nazara/Core/Error.hpp>
|
||||||
#include <Nazara/Noise/Config.hpp>
|
#include <Nazara/Noise/Config.hpp>
|
||||||
#include <Nazara/Noise/Debug.hpp>
|
#include <Nazara/Noise/Debug.hpp>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,11 +2,10 @@
|
||||||
// This file is part of the "Nazara Engine".
|
// This file is part of the "Nazara Engine".
|
||||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||||
|
|
||||||
#include "NoiseBase.hpp"
|
#include <Nazara/Noise/NoiseBase.hpp>
|
||||||
//#include <Nazara/Noise/NoiseBase.hpp>
|
#include <Nazara/Core/Error.hpp>
|
||||||
//#include <Nazara/Noise/Error.hpp>
|
#include <Nazara/Noise/Config.hpp>
|
||||||
//#include <Nazara/Noise/Config.hpp>
|
#include <Nazara/Noise/Debug.hpp>
|
||||||
//#include <Nazara/Noise/Debug.hpp>
|
|
||||||
|
|
||||||
NzNoiseBase::NzNoiseBase(int seed)
|
NzNoiseBase::NzNoiseBase(int seed)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
// Copyright (C) 2012 Rémi Bèges
|
// Copyright (C) 2012 Rémi Bèges
|
||||||
// This file is part of the "Nazara Engine".
|
// This file is part of the "Nazara Engine".
|
||||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||||
#include "NoiseMachine.hpp"
|
|
||||||
//#include <Nazara/Noise/NoiseMachine.hpp>
|
#include <Nazara/Noise/NoiseMachine.hpp>
|
||||||
//#include <Nazara/Noise/Error.hpp>
|
#include <Nazara/Core/Error.hpp>
|
||||||
//#include <Nazara/Noise/Config.hpp>
|
#include <Nazara/Noise/Config.hpp>
|
||||||
//#include <Nazara/Noise/Debug.hpp>
|
#include <Nazara/Noise/Debug.hpp>
|
||||||
|
|
||||||
NzNoiseMachine::NzNoiseMachine(int seed)
|
NzNoiseMachine::NzNoiseMachine(int seed)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue