2015-05-28 10:56:06 +10:00
|
|
|
/*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
|
|
|
* Copyright 2012-2015 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __UTIL_NOISE_BASIS_PERLIN_HPP
|
|
|
|
#define __UTIL_NOISE_BASIS_PERLIN_HPP
|
|
|
|
|
2015-10-07 14:34:56 +11:00
|
|
|
#include "./gradient/uniform.hpp"
|
2015-10-06 15:45:26 +11:00
|
|
|
#include "./type/gradient.hpp"
|
2015-09-29 17:41:04 +10:00
|
|
|
|
2015-09-09 18:21:26 +10:00
|
|
|
#include "../fwd.hpp"
|
2015-05-28 10:56:06 +10:00
|
|
|
#include "../../point.hpp"
|
|
|
|
#include "../../range.hpp"
|
|
|
|
|
|
|
|
namespace util { namespace noise { namespace basis {
|
|
|
|
/// Perlin: interpolated value across each grid space
|
2015-09-29 17:41:04 +10:00
|
|
|
template <
|
2015-10-06 15:45:26 +11:00
|
|
|
size_t S, // point point dimensionality
|
2015-09-29 17:41:04 +10:00
|
|
|
typename T, // arithmetic and result value_type, must be floating point
|
2015-10-07 00:14:13 +11:00
|
|
|
template < // gradient interpolation function
|
|
|
|
typename
|
|
|
|
> class L,
|
|
|
|
template < // gradient provider class, must provide generate(point_t)
|
2015-10-06 15:45:26 +11:00
|
|
|
size_t,
|
2015-10-07 00:14:13 +11:00
|
|
|
typename
|
2015-10-07 14:34:56 +11:00
|
|
|
> class G = gradient::uniform
|
2015-09-29 17:41:04 +10:00
|
|
|
>
|
2015-10-07 00:14:13 +11:00
|
|
|
struct perlin : public G<S,T>, public type::gradient<S> {
|
|
|
|
using value_t = T;
|
|
|
|
using point_t = point<S,T>;
|
|
|
|
|
2015-05-28 10:56:06 +10:00
|
|
|
perlin (seed_t);
|
|
|
|
|
|
|
|
range<T> bounds (void) const;
|
2015-10-06 15:45:26 +11:00
|
|
|
|
2015-10-07 14:37:22 +11:00
|
|
|
T operator() (point_t) const noexcept;
|
2015-05-28 10:56:06 +10:00
|
|
|
};
|
|
|
|
} } }
|
|
|
|
|
2015-06-01 18:42:10 +10:00
|
|
|
#include "perlin.ipp"
|
|
|
|
|
2015-05-28 10:56:06 +10:00
|
|
|
#endif
|