tavli
annotate src/pnoise.h @ 19:37dead56f01e
fixed shadows
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 29 Jun 2015 06:18:45 +0300 |
parents | |
children |
rev | line source |
---|---|
nuclear@6 | 1 #ifndef PNOISE_H_ |
nuclear@6 | 2 #define PNOISE_H_ |
nuclear@6 | 3 |
nuclear@6 | 4 float dbg_noise2(float x, float y); |
nuclear@6 | 5 float pnoise2(float x, float y, int periodx, int periody); |
nuclear@6 | 6 float pturbulence2(float x, float y, int periodx, int periody, int octaves); |
nuclear@6 | 7 |
nuclear@6 | 8 #endif // PNOISE_H_ |