From 2877f4eda3d1b0c7431039e3142ecf1a282a34b1 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Tue, 21 Aug 2018 20:40:38 +0500 Subject: Update glm to 0.9.9.0 --- external/include/glm/gtc/noise.hpp | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) (limited to 'external/include/glm/gtc/noise.hpp') diff --git a/external/include/glm/gtc/noise.hpp b/external/include/glm/gtc/noise.hpp index aec4f18..7b1ca40 100644 --- a/external/include/glm/gtc/noise.hpp +++ b/external/include/glm/gtc/noise.hpp @@ -6,18 +6,19 @@ /// @defgroup gtc_noise GLM_GTC_noise /// @ingroup gtc /// -/// Defines 2D, 3D and 4D procedural noise functions -/// Based on the work of Stefan Gustavson and Ashima Arts on "webgl-noise": -/// https://github.com/ashima/webgl-noise -/// Following Stefan Gustavson's paper "Simplex noise demystified": +/// Include to use the features of this extension. +/// +/// Defines 2D, 3D and 4D procedural noise functions +/// Based on the work of Stefan Gustavson and Ashima Arts on "webgl-noise": +/// https://github.com/ashima/webgl-noise +/// Following Stefan Gustavson's paper "Simplex noise demystified": /// http://www.itn.liu.se/~stegu/simplexnoise/simplexnoise.pdf -/// need to be included to use these functionalities. #pragma once // Dependencies #include "../detail/setup.hpp" -#include "../detail/precision.hpp" +#include "../detail/qualifier.hpp" #include "../detail/_noise.hpp" #include "../geometric.hpp" #include "../common.hpp" @@ -37,22 +38,22 @@ namespace glm /// Classic perlin noise. /// @see gtc_noise - template class vecType> + template GLM_FUNC_DECL T perlin( - vecType const & p); - + vec const& p); + /// Periodic perlin noise. /// @see gtc_noise - template class vecType> + template GLM_FUNC_DECL T perlin( - vecType const & p, - vecType const & rep); + vec const& p, + vec const& rep); /// Simplex noise. /// @see gtc_noise - template class vecType> + template GLM_FUNC_DECL T simplex( - vecType const & p); + vec const& p); /// @} }//namespace glm -- cgit v1.2.3