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.21 by root, Wed Nov 16 23:41:59 2016 UTC vs.
Revision 1.24 by root, Sat Dec 1 20:22:12 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
299 } 300 }
300 } 301 }
301 } 302 }
302 303
303 return v; 304 return v;
304} 305}
305 306
306///////////////////////////////////////////////////////////////////////////// 307/////////////////////////////////////////////////////////////////////////////
307 308
308template<> 309template<>
309vec3d::T_numtype 310vec3d::T_numtype

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines