summaryrefslogtreecommitdiff
path: root/include/gal/opengl/glm/gtx/component_wise.inl
diff options
context:
space:
mode:
authorsaurabhb172020-02-26 16:14:17 +0530
committerGitHub2020-02-26 16:14:17 +0530
commit003d02608917e7a69d1a98438837e94ccf68352a (patch)
tree1392c90227aeea231c1d86371131e04c40382918 /include/gal/opengl/glm/gtx/component_wise.inl
parent886d9cb772e81d2e5262284bc3082664f084337f (diff)
parente255d0622297488c1c52755be670733418c994cf (diff)
downloadKiCad-eSim-003d02608917e7a69d1a98438837e94ccf68352a.tar.gz
KiCad-eSim-003d02608917e7a69d1a98438837e94ccf68352a.tar.bz2
KiCad-eSim-003d02608917e7a69d1a98438837e94ccf68352a.zip
Merge pull request #3 from saurabhb17/master
secondary files
Diffstat (limited to 'include/gal/opengl/glm/gtx/component_wise.inl')
-rw-r--r--include/gal/opengl/glm/gtx/component_wise.inl47
1 files changed, 47 insertions, 0 deletions
diff --git a/include/gal/opengl/glm/gtx/component_wise.inl b/include/gal/opengl/glm/gtx/component_wise.inl
new file mode 100644
index 0000000..8baea62
--- /dev/null
+++ b/include/gal/opengl/glm/gtx/component_wise.inl
@@ -0,0 +1,47 @@
+///////////////////////////////////////////////////////////////////////////////////////////////////
+// OpenGL Mathematics Copyright (c) 2005 - 2013 G-Truc Creation (www.g-truc.net)
+///////////////////////////////////////////////////////////////////////////////////////////////////
+// Created : 2007-05-21
+// Updated : 2010-02-12
+// Licence : This source is under MIT License
+// File : gtx_component_wise.inl
+///////////////////////////////////////////////////////////////////////////////////////////////////
+
+namespace glm
+{
+ template <typename genType>
+ GLM_FUNC_QUALIFIER typename genType::value_type compAdd(genType const & v)
+ {
+ typename genType::value_type result = typename genType::value_type(0);
+ for(typename genType::size_type i = 0; i < v.length(); ++i)
+ result += v[i];
+ return result;
+ }
+
+ template <typename genType>
+ GLM_FUNC_QUALIFIER typename genType::value_type compMul(genType const & v)
+ {
+ typename genType::value_type result = typename genType::value_type(1);
+ for(typename genType::size_type i = 0; i < v.length(); ++i)
+ result *= v[i];
+ return result;
+ }
+
+ template <typename genType>
+ GLM_FUNC_QUALIFIER typename genType::value_type compMin(genType const & v)
+ {
+ typename genType::value_type result = typename genType::value_type(v[0]);
+ for(typename genType::size_type i = 1; i < v.length(); ++i)
+ result = min(result, v[i]);
+ return result;
+ }
+
+ template <typename genType>
+ GLM_FUNC_QUALIFIER typename genType::value_type compMax(genType const & v)
+ {
+ typename genType::value_type result = typename genType::value_type(v[0]);
+ for(typename genType::size_type i = 1; i < v.length(); ++i)
+ result = max(result, v[i]);
+ return result;
+ }
+}//namespace glm