From 975c81262faa7ed06de56974064fd918a088bc1b Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Mon, 18 Nov 2019 01:25:34 -0800 Subject: libs/din: add a perlin noise implementation This is a 3D noise field addressed as a unit cube. The caller supplies the resolution of the noise field in three dimensions. I've just pulled in my v3f.h here, but it probably makes sense to later on move vector headers into libs/ and share them. Later. It's called din as in noise, because it's shorter than perlin and noise. --- src/libs/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libs/Makefile.am') diff --git a/src/libs/Makefile.am b/src/libs/Makefile.am index e0895ce..9f3499d 100644 --- a/src/libs/Makefile.am +++ b/src/libs/Makefile.am @@ -1 +1 @@ -SUBDIRS = ascii grid ray txt +SUBDIRS = ascii grid din ray txt -- cgit v1.2.1