1 // module.h2 //3 // Copyright (C) 2003, 2004 Jason Bevins4 //5 // This library is free software; you can redistribute it and/or modify it6 // under the terms of the GNU Lesser General Public License as published by7 // the Free Software Foundation; either version 2.1 of the License, or (at8 // your option) any later version.9 //10 // This library is distributed in the hope that it will be useful, but WITHOUT11 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public13 // License (COPYING.txt) for more details.14 //15 // You should have received a copy of the GNU Lesser General Public License16 // along with this library; if not, write to the Free Software Foundation,17 // Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA18 //19 // The developer's email is jlbezigvins@gmzigail.com (for great email, take20 // off every 'zig'.)21 //22 modulenoise.mod.mod;
23 24 public {
25 importnoise.mod.add;
26 importnoise.mod.abs;
27 importnoise.mod.billow;
28 importnoise.mod.blend;
29 //import noise.mod.cache;30 importnoise.mod.checkerboard;
31 importnoise.mod.clamp;
32 importnoise.mod.constants;
33 importnoise.mod.curve;
34 importnoise.mod.cylinders;
35 importnoise.mod.displace;
36 importnoise.mod.exponent;
37 importnoise.mod.gradient;
38 importnoise.mod.invert;
39 importnoise.mod.max;
40 importnoise.mod.min;
41 importnoise.mod.multiply;
42 importnoise.mod.perlin;
43 importnoise.mod.power;
44 importnoise.mod.ridgedmulti;
45 importnoise.mod.rotatepoint;
46 importnoise.mod.scalebias;
47 importnoise.mod.scalepoint;
48 importnoise.mod.select;
49 importnoise.mod.simplex;
50 importnoise.mod.spheres;
51 importnoise.mod.terrace;
52 importnoise.mod.translatepoint;
53 importnoise.mod.turbulence;
54 importnoise.mod.voronoi;
55 }