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