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