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/Abstract3DNoise.hpp>
|
||||
|
||||
class NAZARA_NOISE_API NzFBM3D : public NzAbstract3DNoise, public NzComplexNoiseBase
|
||||
namespace Nz
|
||||
{
|
||||
public:
|
||||
NzFBM3D(nzNoises source, unsigned int seed);
|
||||
float GetValue(float x, float y, float z, float resolution);
|
||||
~NzFBM3D();
|
||||
class NAZARA_NOISE_API FBM3D : public Abstract3DNoise, public ComplexNoiseBase
|
||||
{
|
||||
public:
|
||||
FBM3D(NoiseType source, unsigned int seed);
|
||||
float GetValue(float x, float y, float z, float resolution);
|
||||
~FBM3D();
|
||||
|
||||
private:
|
||||
NzAbstract3DNoise* m_source;
|
||||
float m_value;
|
||||
float m_remainder;
|
||||
nzNoises m_noiseType;
|
||||
};
|
||||
private:
|
||||
Abstract3DNoise* m_source;
|
||||
float m_value;
|
||||
float m_remainder;
|
||||
NoiseType m_noiseType;
|
||||
};
|
||||
}
|
||||
|
||||
#endif // FBM3D_HPP
|
||||
|
||||
|
||||
Reference in New Issue
Block a user