dbf_amiga

annotate src/pnoise.h @ 0:87dfe0e10235

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 31 Aug 2015 07:38:37 +0300
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 periodx, int periody);
nuclear@0 6 float pturbulence2(float x, float y, int periodx, int periody, int octaves);
nuclear@0 7
nuclear@0 8 #endif // PNOISE_H_