ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/noise.C
(Generate patch)

Comparing deliantra/server/common/noise.C (file contents):
Revision 1.22 by root, Sun Jan 29 02:47:04 2017 UTC vs.
Revision 1.25 by root, Wed Dec 5 19:03:26 2018 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2017,2018 Marc Alexander Lehmann / the Deliantra team
4 * Copyright (©) 2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 5 * Copyright (©) 2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * 6 *
6 * Deliantra is free software: you can redistribute it and/or modify it under 7 * Deliantra is free software: you can redistribute it and/or modify it under
7 * the terms of the Affero GNU General Public License as published by the 8 * the terms of the Affero GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your 9 * Free Software Foundation, either version 3 of the License, or (at your
245 246
246template<class vec_t> 247template<class vec_t>
247void 248void
248noise_gen_base<vec_t>::seed (seedable_rand_gen &rng) 249noise_gen_base<vec_t>::seed (seedable_rand_gen &rng)
249{ 250{
250 for (int i = 0; i < array_length (rvmap); ++i) 251 for (int i = 0; i < ecb_array_length (rvmap); ++i)
251 rvmap[i].seed (rng); 252 rvmap[i].seed (rng);
252} 253}
253 254
254template<class vec_t> 255template<class vec_t>
255void 256void
412 } 413 }
413 414
414 return v; 415 return v;
415} 416}
416 417
417template class noise_gen<vec2d>;
418template class noise_gen<vec3d>;
419
420///////////////////////////////////////////////////////////////////////////// 418/////////////////////////////////////////////////////////////////////////////
421 419
422template<class vec_t> 420template<class vec_t>
423frac_gen<vec_t>::frac_gen (int octaves, value_t lacunarity, value_t hurst_expo, seed_t seed) 421frac_gen<vec_t>::frac_gen (int octaves, value_t lacunarity, value_t hurst_expo, seed_t seed)
424: octaves (octaves), lac (lacunarity), h (hurst_expo) 422: octaves (octaves), lac (lacunarity), h (hurst_expo)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines