summaryrefslogtreecommitdiffstats
path: root/external/include/glm/detail/_noise.hpp
diff options
context:
space:
mode:
authorLaG1924 <12997935+LaG1924@users.noreply.github.com>2021-06-22 02:38:30 +0200
committerGitHub <noreply@github.com>2021-06-22 02:38:30 +0200
commitca7bcf9f7dc5eb47ccbec1049b323f0604dabadd (patch)
tree33d7d2673ba0da8a92323b07d061f655c719ae40 /external/include/glm/detail/_noise.hpp
parentMerge pull request #44 from LaG1924/fix/protocol_support (diff)
parentUpdated build instructions and added MacOS #49 (diff)
downloadAltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.gz
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.bz2
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.lz
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.xz
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.zst
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.zip
Diffstat (limited to 'external/include/glm/detail/_noise.hpp')
-rw-r--r--external/include/glm/detail/_noise.hpp87
1 files changed, 0 insertions, 87 deletions
diff --git a/external/include/glm/detail/_noise.hpp b/external/include/glm/detail/_noise.hpp
deleted file mode 100644
index 946148c..0000000
--- a/external/include/glm/detail/_noise.hpp
+++ /dev/null
@@ -1,87 +0,0 @@
-/// @ref core
-/// @file glm/detail/_noise.hpp
-
-#pragma once
-
-#include "../vec2.hpp"
-#include "../vec3.hpp"
-#include "../vec4.hpp"
-#include "../common.hpp"
-
-namespace glm{
-namespace detail
-{
- template<typename T>
- GLM_FUNC_QUALIFIER T mod289(T const& x)
- {
- return x - floor(x * (static_cast<T>(1.0) / static_cast<T>(289.0))) * static_cast<T>(289.0);
- }
-
- template<typename T>
- GLM_FUNC_QUALIFIER T permute(T const& x)
- {
- return mod289(((x * static_cast<T>(34)) + static_cast<T>(1)) * x);
- }
-
- template<typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<2, T, Q> permute(vec<2, T, Q> const& x)
- {
- return mod289(((x * static_cast<T>(34)) + static_cast<T>(1)) * x);
- }
-
- template<typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<3, T, Q> permute(vec<3, T, Q> const& x)
- {
- return mod289(((x * static_cast<T>(34)) + static_cast<T>(1)) * x);
- }
-
- template<typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<4, T, Q> permute(vec<4, T, Q> const& x)
- {
- return mod289(((x * static_cast<T>(34)) + static_cast<T>(1)) * x);
- }
-
- template<typename T>
- GLM_FUNC_QUALIFIER T taylorInvSqrt(T const& r)
- {
- return T(1.79284291400159) - T(0.85373472095314) * r;
- }
-
- template<typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<2, T, Q> taylorInvSqrt(vec<2, T, Q> const& r)
- {
- return T(1.79284291400159) - T(0.85373472095314) * r;
- }
-
- template<typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<3, T, Q> taylorInvSqrt(vec<3, T, Q> const& r)
- {
- return T(1.79284291400159) - T(0.85373472095314) * r;
- }
-
- template<typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<4, T, Q> taylorInvSqrt(vec<4, T, Q> const& r)
- {
- return T(1.79284291400159) - T(0.85373472095314) * r;
- }
-
- template<typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<2, T, Q> fade(vec<2, T, Q> const& t)
- {
- return (t * t * t) * (t * (t * T(6) - T(15)) + T(10));
- }
-
- template<typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<3, T, Q> fade(vec<3, T, Q> const& t)
- {
- return (t * t * t) * (t * (t * T(6) - T(15)) + T(10));
- }
-
- template<typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<4, T, Q> fade(vec<4, T, Q> const& t)
- {
- return (t * t * t) * (t * (t * T(6) - T(15)) + T(10));
- }
-}//namespace detail
-}//namespace glm
-