dbf-halloween2015

view src/pnoise.h @ 4:4316c0c879e9

fixed RUN script for macosx
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 01 Nov 2015 06:18:18 +0200
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 period);
6 float pfbm2(float x, float y, int octaves, int period);
7 float pturbulence2(float x, float y, int octaves, int period);
9 #endif // PNOISE_H_