[gegl] operations: add a simplex noise operation



commit 24ee45ef27f19971da390aa232e505bf6c72956d
Author: Øyvind Kolås <pippin gimp org>
Date:   Fri May 16 22:38:55 2014 +0200

    operations: add a simplex noise operation
    
    Added a simplex noise operation implementing the noise function
    originally presented by Ken Perlin during a SIGGRAPH 2002 course and
    further explained in the paper "Simplex noise demystified" by Stefan
    
    implemented by Dimitris Papavasiliou <dpapavas gmail com>

 operations/common/Makefile.am  |    1 +
 po/POTFILES.in                 |    1 +
 tests/compositions/Makefile.am |    5 +++--
 3 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/operations/common/Makefile.am b/operations/common/Makefile.am
index 1b7a5ad..5b2beec 100644
--- a/operations/common/Makefile.am
+++ b/operations/common/Makefile.am
@@ -75,6 +75,7 @@ op_LTLIBRARIES = \
        noise-pick.la \
        noise-reduction.la \
        noise-rgb.la \
+       noise-simplex.la \
        noise-slur.la \
        noise-spread.la \
        noise-cell.la \
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 33ae2c6..24fb16b 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -69,6 +69,7 @@ operations/common/noise-hsv.c
 operations/common/noise-hurl.c
 operations/common/noise-pick.c
 operations/common/noise-reduction.c
+operations/common/noise-simplex.c
 operations/common/noise-rgb.c
 operations/common/noise-slur.c
 operations/common/noise-spread.c
diff --git a/tests/compositions/Makefile.am b/tests/compositions/Makefile.am
index d0488a1..3f65bb4 100644
--- a/tests/compositions/Makefile.am
+++ b/tests/compositions/Makefile.am
@@ -33,8 +33,9 @@ TESTS = \
   hdr-color.xml                   \
   image-compare.xml               \
   mantiuk06.xml                   \
-  noise-hurl.xml                 \
-  noise-cell.xml                 \
+  noise-cell.xml                                       \
+  noise-hurl.xml                                       \
+  noise-simplex.xml                            \
   pixelize.xml                    \
   posterize.xml                   \
   red-eye-removal.xml             \


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]