labyrinth

diff src/noise.h @ 0:8ba79034e8a6

labyrinth example initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 15 Jan 2015 14:59:38 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/noise.h	Thu Jan 15 14:59:38 2015 +0200
     1.3 @@ -0,0 +1,8 @@
     1.4 +#ifndef NOISE_H_
     1.5 +#define NOISE_H_
     1.6 +
     1.7 +float noise1(float x);
     1.8 +float fbm1(float x, int octaves);
     1.9 +float turbulence1(float x, int octaves);
    1.10 +
    1.11 +#endif	/* NOISE_H_ */