diff options
author | kwolekr <kwolekr@minetest.net> | 2013-04-06 11:19:59 -0400 |
---|---|---|
committer | kwolekr <kwolekr@minetest.net> | 2013-04-07 00:50:21 -0400 |
commit | 8ec3fc35c656544a55f7f8ece9359c9e2b472e8f (patch) | |
tree | 430e173e418763fb80f5b43c79c0344dd272d878 /src/noise.h | |
parent | d50b2ede92bb33d6f471be34cd7e64efc6434c6b (diff) | |
download | minetest-8ec3fc35c656544a55f7f8ece9359c9e2b472e8f.tar.gz minetest-8ec3fc35c656544a55f7f8ece9359c9e2b472e8f.tar.bz2 minetest-8ec3fc35c656544a55f7f8ece9359c9e2b472e8f.zip |
Add Mapgen V7, reorganize biomes
Diffstat (limited to 'src/noise.h')
-rw-r--r-- | src/noise.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/noise.h b/src/noise.h index 34b4d0b41..ace6d7eb4 100644 --- a/src/noise.h +++ b/src/noise.h @@ -1,6 +1,7 @@ /* Minetest Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com> +Copyright (C) 2010-2013 kwolekr, Ryan Kwolek <kwolekr@minetest.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by @@ -105,6 +106,7 @@ public: float step_x, float step_y, float step_z, int seed); float *perlinMap2D(float x, float y); + float *perlinMap2DModulated(float x, float y, float *persist_map); float *perlinMap3D(float x, float y, float z); void transformNoiseMap(); }; |