about summary refs log tree commit diff
path: root/include/perlin.h
diff options
context:
space:
mode:
authorYour Name <you@example.com>2020-11-01 12:56:06 +0100
committerYour Name <you@example.com>2020-11-01 12:56:06 +0100
commit74c5d2a42705fad1de5c4e1f240d5311b4aa5d5b (patch)
tree5182d2224c453cc66164b1f275d1350beecd813a /include/perlin.h
downloadCPerlin-master.tar.gz
CPerlin-master.tar.bz2
CPerlin-master.zip
Initial commit HEAD master
Diffstat (limited to 'include/perlin.h')
-rw-r--r--include/perlin.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/perlin.h b/include/perlin.h
new file mode 100644
index 0000000..b1dbb6f
--- /dev/null
+++ b/include/perlin.h
@@ -0,0 +1,10 @@
+#ifndef _PERLIN_H_
+#define _PERLIN_H_
+
+#include <stdlib.h>
+#include <math.h>
+#include <time.h>
+
+float perlin_noise(float x, float y);
+
+#endif