dbf-halloween2015
annotate src/pnoise.h @ 1:c3f5c32cb210
barfed all the libraries in the source tree to make porting easier
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 01 Nov 2015 00:36:56 +0200 |
parents | |
children |
rev | line source |
---|---|
nuclear@0 | 1 #ifndef PNOISE_H_ |
nuclear@0 | 2 #define PNOISE_H_ |
nuclear@0 | 3 |
nuclear@0 | 4 float dbg_noise2(float x, float y); |
nuclear@0 | 5 float pnoise2(float x, float y, int period); |
nuclear@0 | 6 float pfbm2(float x, float y, int octaves, int period); |
nuclear@0 | 7 float pturbulence2(float x, float y, int octaves, int period); |
nuclear@0 | 8 |
nuclear@0 | 9 #endif // PNOISE_H_ |