1 2 3 4 5 6 7 8 9 10
#ifndef _PERLIN_H_ #define _PERLIN_H_ #include <stdlib.h> #include <math.h> #include <time.h> float perlin_noise(float x, float y); #endif