// 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::GetBasicValue(T x, T y, T z) { return this->GetValue(x,y,z,this->m_resolution); } template T NzAbstract3DNoise::GetMappedValue(T x, T y, T z) { return (this->GetValue(x,y,z,this->m_resolution) + this->m_offset) * this->m_gain ; } #include