Add perlin noise implementation.

This commit is contained in:
2019-02-16 16:50:56 -08:00
parent 0f5a237b10
commit bb0620f3aa
6 changed files with 164 additions and 0 deletions

8
misc/noise/Makefile Normal file
View File

@@ -0,0 +1,8 @@
SOURCES := noise.cc test.cc util.cc
noise: $(SOURCES)
g++ -o $@ $(SOURCES)
.PHONY: clean
clean:
rm -f noise