Clutter Engine 0.0.1
Loading...
Searching...
No Matches
functions.hpp
Go to the documentation of this file.
1
13
14#pragma once
15
16// Dependencies
17#include "../detail/setup.hpp"
18#include "../detail/qualifier.hpp"
20
21#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
22# ifndef GLM_ENABLE_EXPERIMENTAL
23# pragma message("GLM: GLM_GTX_functions is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it.")
24# else
25# pragma message("GLM: GLM_GTX_functions extension included")
26# endif
27#endif
28
29namespace glm
30{
33
37 template<typename T>
38 GLM_FUNC_DECL T gauss(
39 T x,
40 T ExpectedValue,
41 T StandardDeviation);
42
46 template<typename T, qualifier Q>
47 GLM_FUNC_DECL T gauss(
48 vec<2, T, Q> const& Coord,
49 vec<2, T, Q> const& ExpectedValue,
50 vec<2, T, Q> const& StandardDeviation);
51
53}//namespace glm
54
55#include "functions.inl"
56
GLM_FUNC_DECL T gauss(T x, T ExpectedValue, T StandardDeviation)
Definition functions.inl:9
Core features
Definition common.hpp:21