Switch from Nz prefix to namespace Nz
What a huge commit Former-commit-id: 38ac5eebf70adc1180f571f6006192d28fb99897
This commit is contained in:
@@ -11,18 +11,21 @@
|
||||
#include <Nazara/Noise/ComplexNoiseBase.hpp>
|
||||
#include <Nazara/Noise/Abstract2DNoise.hpp>
|
||||
|
||||
class NAZARA_NOISE_API NzFBM2D : public NzAbstract2DNoise, public NzComplexNoiseBase
|
||||
namespace Nz
|
||||
{
|
||||
public:
|
||||
NzFBM2D(nzNoises source, unsigned int seed);
|
||||
float GetValue(float x, float y, float resolution);
|
||||
~NzFBM2D();
|
||||
class NAZARA_NOISE_API FBM2D : public Abstract2DNoise, public ComplexNoiseBase
|
||||
{
|
||||
public:
|
||||
FBM2D(NoiseType source, unsigned int seed);
|
||||
float GetValue(float x, float y, float resolution);
|
||||
~FBM2D();
|
||||
|
||||
private:
|
||||
NzAbstract2DNoise* m_source;
|
||||
float m_value;
|
||||
float m_remainder;
|
||||
nzNoises m_noiseType;
|
||||
};
|
||||
private:
|
||||
Abstract2DNoise* m_source;
|
||||
float m_value;
|
||||
float m_remainder;
|
||||
NoiseType m_noiseType;
|
||||
};
|
||||
}
|
||||
|
||||
#endif // FBM2D_HPP
|
||||
|
||||
Reference in New Issue
Block a user