aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/SimplexNoise.kt
diff options
context:
space:
mode:
authorJames Barnett <noreply@jamesbarnett.xyz>2019-08-08 21:49:32 +0100
committerJames Barnett <noreply@jamesbarnett.xyz>2019-08-08 21:49:32 +0100
commit4265af9d6024ff47508ac41ba3655dd2aca6ce88 (patch)
tree386b74fd4b3e9d4a7a0b45bfa924fbf101adbef2 /src/main/kotlin/SimplexNoise.kt
parent461dfa758c11fe3b96d65d56578c6b4529d03988 (diff)
downloadterrain-4265af9d6024ff47508ac41ba3655dd2aca6ce88.tar.xz
terrain-4265af9d6024ff47508ac41ba3655dd2aca6ce88.zip
Initial commit
Diffstat (limited to 'src/main/kotlin/SimplexNoise.kt')
-rw-r--r--src/main/kotlin/SimplexNoise.kt3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/kotlin/SimplexNoise.kt b/src/main/kotlin/SimplexNoise.kt
new file mode 100644
index 0000000..2a984e5
--- /dev/null
+++ b/src/main/kotlin/SimplexNoise.kt
@@ -0,0 +1,3 @@
+external class SimplexNoise {
+ fun noise2D(x: Double, y: Double) : Double
+} \ No newline at end of file