Michaël Lemaire
b46060f3c4
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@500 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
23 lines
515 B
C
23 lines
515 B
C
#ifndef _PAYSAGES_NOISENAIVE_H_
|
|
#define _PAYSAGES_NOISENAIVE_H_
|
|
|
|
#include "tools/pack.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void noiseNaiveInit();
|
|
void noiseNaiveQuit();
|
|
void noiseNaiveSave(PackStream* stream);
|
|
void noiseNaiveLoad(PackStream* stream);
|
|
double noiseNaiveGet1DValue(double x);
|
|
double noiseNaiveGet2DValue(double x, double y);
|
|
double noiseNaiveGet3DValue(double x, double y, double z);
|
|
/*double noiseNaiveGet4DValue(double x, double y, double z, double w);*/
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|