From 6f67371bb1b46579ae837d0e0c61ac1b291be743 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Sat, 13 Jan 2018 07:51:33 +0500 Subject: Directory renamed --- external/include/glm/gtc/functions.inl | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 external/include/glm/gtc/functions.inl (limited to 'external/include/glm/gtc/functions.inl') diff --git a/external/include/glm/gtc/functions.inl b/external/include/glm/gtc/functions.inl new file mode 100644 index 0000000..1dbc496 --- /dev/null +++ b/external/include/glm/gtc/functions.inl @@ -0,0 +1,31 @@ +/// @ref gtc_functions +/// @file glm/gtc/functions.inl + +#include "../detail/func_exponential.hpp" + +namespace glm +{ + template + GLM_FUNC_QUALIFIER T gauss + ( + T x, + T ExpectedValue, + T StandardDeviation + ) + { + return exp(-((x - ExpectedValue) * (x - ExpectedValue)) / (static_cast(2) * StandardDeviation * StandardDeviation)) / (StandardDeviation * sqrt(static_cast(6.28318530717958647692528676655900576))); + } + + template + GLM_FUNC_QUALIFIER T gauss + ( + tvec2 const& Coord, + tvec2 const& ExpectedValue, + tvec2 const& StandardDeviation + ) + { + tvec2 const Squared = ((Coord - ExpectedValue) * (Coord - ExpectedValue)) / (static_cast(2) * StandardDeviation * StandardDeviation); + return exp(-(Squared.x + Squared.y)); + } +}//namespace glm + -- cgit v1.2.3