tavli

view src/pnoise.h @ 6:a0d30f6f20d4

- texture coordinate generation in class Mesh - wood texture
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 26 Jun 2015 04:22:06 +0300
parents
children
line source
1 #ifndef PNOISE_H_
2 #define PNOISE_H_
4 float dbg_noise2(float x, float y);
5 float pnoise2(float x, float y, int periodx, int periody);
6 float pturbulence2(float x, float y, int periodx, int periody, int octaves);
8 #endif // PNOISE_H_