dbf-halloween2015
diff src/pnoise.h @ 0:50683c78264e
initial commit
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 01 Nov 2015 00:09:12 +0200 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/pnoise.h Sun Nov 01 00:09:12 2015 +0200 1.3 @@ -0,0 +1,9 @@ 1.4 +#ifndef PNOISE_H_ 1.5 +#define PNOISE_H_ 1.6 + 1.7 +float dbg_noise2(float x, float y); 1.8 +float pnoise2(float x, float y, int period); 1.9 +float pfbm2(float x, float y, int octaves, int period); 1.10 +float pturbulence2(float x, float y, int octaves, int period); 1.11 + 1.12 +#endif // PNOISE_H_