// Copyright (C) 2012 Rémi Bèges // This file is part of the "Nazara Engine". // For conditions of distribution and use, see copyright notice in Config.hpp #include #include #include #include #include template T NzAbstract3DNoise::GetMappedValue(T x, T y, T z) { return GetValue(x,y,z) * m_gain + m_offset; } template T NzAbstract3DNoise::GetValue(T x, T y, T z, T resolution) { return GetValue(x,y,z,this->m_resolution); } #include