diff --git a/glm/gtx/matx.hpp b/glm/gtx/matx.hpp deleted file mode 100644 index 3d613d71..00000000 --- a/glm/gtx/matx.hpp +++ /dev/null @@ -1,179 +0,0 @@ -/////////////////////////////////////////////////////////////////////////////////////////////////// -// OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net) -/////////////////////////////////////////////////////////////////////////////////////////////////// -// Created : 2007-02-21 -// Updated : 2007-03-01 -// Licence : This source is under MIT License -// File : glm/gtx/matx.hpp -/////////////////////////////////////////////////////////////////////////////////////////////////// -// Dependency: -// - GLM core -// - GLM_GTX_vecx -// - GLM_GTX_matrix_selection -// - GLM_GTX_matrix_access -// - GLM_GTX_inverse_transpose -/////////////////////////////////////////////////////////////////////////////////////////////////// - -#ifndef glm_gtx_matx -#define glm_gtx_matx - -// Dependency: -#include "../glm.hpp" -#include "../gtx/vecx.hpp" - -namespace glm{ -namespace detail{ - - template - class _xmatxGTX - { - private: - // Data - _xvecxGTX value[N]; - - public: - _xmatxGTX _inverse() const; - - public: - typedef T value_type; - typedef int size_type; - static const size_type value_size; - - // Constructors - _xmatxGTX(); - explicit _xmatxGTX(const T x); - - // Accesses - _xvecxGTX& operator[](int i) {return value[i];} - const _xvecxGTX & operator[](int i) const {return value[i];} - operator T*() {return &value[0][0];} - operator const T*() const {return &value[0][0];} - - // Unary updatable operators - _xmatxGTX& operator= (const _xmatxGTX& m); - _xmatxGTX& operator+= (const T s); - _xmatxGTX& operator+= (const _xmatxGTX& m); - _xmatxGTX& operator-= (const T s); - _xmatxGTX& operator-= (const _xmatxGTX& m); - _xmatxGTX& operator*= (const T s); - _xmatxGTX& operator*= (const _xmatxGTX& m); - _xmatxGTX& operator/= (const T s); - _xmatxGTX& operator/= (const _xmatxGTX& m); - _xmatxGTX& operator++ (); - _xmatxGTX& operator-- (); - }; - - // Binary operators - template - _xmatxGTX operator+ (const _xmatxGTX& m, const T s); - - template - _xmatxGTX operator+ (const T s, const _xmatxGTX& m); - - template - _xvecxGTX operator+ (const _xmatxGTX& m, const _xvecxGTX& v); - - template - _xvecxGTX operator+ (const _xvecxGTX& v, const _xmatxGTX& m); - - template - _xmatxGTX operator+ (const _xmatxGTX& m1, const _xmatxGTX& m2); - - template - _xmatxGTX operator- (const _xmatxGTX& m, const T s); - - template - _xmatxGTX operator- (const T s, const _xmatxGTX& m); - - template - _xvecxGTX operator- (const _xmatxGTX& m, const _xvecxGTX& v); - - template - _xvecxGTX operator- (const _xvecxGTX& v, const _xmatxGTX& m); - - template - _xmatxGTX operator- (const _xmatxGTX& m1, const _xmatxGTX& m2); - - template - _xmatxGTX operator* (const _xmatxGTX& m, const T s); - - template - _xmatxGTX operator* (const T s, const _xmatxGTX& m); - - template - _xvecxGTX operator* (const _xmatxGTX& m, const _xvecxGTX& v); - - template - _xvecxGTX operator* (const _xvecxGTX& v, const _xmatxGTX& m); - - template - _xmatxGTX operator* (const _xmatxGTX& m1, const _xmatxGTX& m2); - - template - _xmatxGTX operator/ (const _xmatxGTX& m, const T s); - - template - _xmatxGTX operator/ (const T s, const _xmatxGTX& m); - - template - _xvecxGTX operator/ (const _xmatxGTX& m, const _xvecxGTX& v); - - template - _xvecxGTX operator/ (const _xvecxGTX& v, const _xmatxGTX& m); - - template - _xmatxGTX operator/ (const _xmatxGTX& m1, const _xmatxGTX& m2); - - // Unary constant operators - template - const _xmatxGTX operator- (const _xmatxGTX& m); - - template - const _xmatxGTX operator-- (const _xmatxGTX& m, int); - - template - const _xmatxGTX operator++ (const _xmatxGTX& m, int); - -}//namespace detail - - // Extension functions - template detail::_xmatxGTX matrixCompMultGTX(const detail::_xmatxGTX& x, const detail::_xmatxGTX& y); - template detail::_xmatxGTX outerProductGTX(const detail::_xvecxGTX& c, const detail::_xvecxGTX& r); - template detail::_xmatxGTX transposeGTX(const detail::_xmatxGTX& x); - - template T determinantGTX(const detail::_xmatxGTX& m); - template detail::_xmatxGTX inverseTransposeGTX(const detail::_xmatxGTX & m); - - template void columnGTX(detail::_xmatxGTX& m, int ColIndex, const detail::_xvecxGTX& v); - template void rowGTX(detail::_xmatxGTX& m, int RowIndex, const detail::_xvecxGTX& v); - - template detail::_xvecxGTX columnGTX(const detail::_xmatxGTX& m, int ColIndex); - template detail::_xvecxGTX rowGTX(const detail::_xmatxGTX& m, int RowIndex); - - namespace gtx - { - //! GLM_GTX_matx extension: - Work in progress - NxN matrix types. - namespace matx - { - // Matrix Functions - template inline detail::_xmatxGTX matrixCompMult(const detail::_xmatxGTX& x, const detail::_xmatxGTX& y){return matrixCompMult(x, y);} - template inline detail::_xmatxGTX outerProduct(const detail::_xvecxGTX& c, const detail::_xvecxGTX& r){return outerProductGTX(c, r);} - template inline detail::_xmatxGTX transpose(const detail::_xmatxGTX& x){return transposeGTX(x);} - - template inline T determinant(const detail::_xmatxGTX& m){return determinantGTX(m);} - template inline detail::_xmatxGTX inverseTranspose(const detail::_xmatxGTX& m){return inverseTransposeGTX(m);} - - template inline void column(detail::_xmatxGTX& m, int ColIndex, const detail::_xvecxGTX& v){setColumnGTX(m, v);} - template inline void row(detail::_xmatxGTX& m, int RowIndex, const detail::_xvecxGTX& v){setRowGTX(m, v);} - - template inline detail::_xvecxGTX column(const detail::_xmatxGTX& m, int ColIndex){return column(m, ColIndex);} - template inline detail::_xvecxGTX row(const detail::_xmatxGTX& m, int RowIndex){return row(m, RowIndex);} - } - } -} - -#include "matx.inl" - -namespace glm{using namespace gtx::matx;} - -#endif//glm_gtx_matx diff --git a/glm/gtx/matx.inl b/glm/gtx/matx.inl deleted file mode 100644 index 93d5eefa..00000000 --- a/glm/gtx/matx.inl +++ /dev/null @@ -1,479 +0,0 @@ -/////////////////////////////////////////////////////////////////////////////////////////////////// -// OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net) -/////////////////////////////////////////////////////////////////////////////////////////////////// -// Created : 2007-02-21 -// Updated : 2007-02-21 -// Licence : This source is under MIT License -// File : glm/gtx/matx.inl -/////////////////////////////////////////////////////////////////////////////////////////////////// - -#include -#include - -namespace glm{ -namespace detail{ - - template const typename _xmatxGTX::size_type _xmatxGTX::value_size = N; - - ////////////////////////////////////////////////////////////// - // _xmatxGTX constructors - - template - inline _xmatxGTX::_xmatxGTX() - { - for(int i = 0; i < N; ++i) - this->value[i][i] = T(0); - } - - template - inline _xmatxGTX::_xmatxGTX(const T f) - { - for(int i = 0; i < N; ++i) - this->value[i][i] = f; - } - - ////////////////////////////////////////////////////////////// - // _xmatxGTX operators - - // This function shouldn't required but it seems that VC7.1 have an optimisation bug if this operator wasn't declared - template - inline _xmatxGTX& _xmatxGTX::operator= (const _xmatxGTX& m) - { - //memcpy could be faster - //memcpy(&this->value, &m.value, 16 * sizeof(T)); - for(int i = 0; i < N; ++i) - this->value[i] = m[i]; - return *this; - } - - template - inline _xmatxGTX& _xmatxGTX::operator+= (const T s) - { - for(int i = 0; i < N; ++i) - this->value[i] += s; - return *this; - } - - template - inline _xmatxGTX& _xmatxGTX::operator+= (const _xmatxGTX& m) - { - for(int i = 0; i < N; ++i) - this->value[i] += m[i]; - return *this; - } - - template - inline _xmatxGTX& _xmatxGTX::operator-= (const T s) - { - for(int i = 0; i < N; ++i) - this->value[i] -= s; - return *this; - } - - template - inline _xmatxGTX& _xmatxGTX::operator-= (const _xmatxGTX& m) - { - for(int i = 0; i < N; ++i) - this->value[i] -= m[i]; - return *this; - } - - template - inline _xmatxGTX& _xmatxGTX::operator*= (const T s) - { - for(int i = 0; i < N; ++i) - this->value[i] *= s; - return *this; - } - - template - inline _xmatxGTX& _xmatxGTX::operator*= (const _xmatxGTX& m) - { - return (*this = *this * m); - } - - template - inline _xmatxGTX& _xmatxGTX::operator/= (const T s) - { - for(int i = 0; i < N; ++i) - this->value[i] /= s; - return *this; - } - - template - inline _xmatxGTX& _xmatxGTX::operator/= (const _xmatxGTX& m) - { - return (*this = *this / m); - } - - template - inline _xmatxGTX& _xmatxGTX::operator-- () - { - for(int i = 0; i < N; ++i) - --this->value[i]; - return *this; - } - - template - inline _xmatxGTX& _xmatxGTX::operator++ () - { - for(int i = 0; i < N; ++i) - ++this->value[i]; - return *this; - } - - // Private functions - template - inline _xmatxGTX _xmatxGTX::_inverse() const - { - _xmatxGTX Result = *this; - - int ColIndex[N]; - int RowIndex[N]; - bool Pivoted[N]; - memset(ColIndex, 0, N * sizeof(int)); - memset(RowIndex, 0, N * sizeof(int)); - memset(Pivoted, 0, N * sizeof(bool)); - - int iRow = 0, iCol = 0; - - // elimination by full pivoting - for(int i0 = 0; i0 < N; i0++) - { - // search matrix (excluding pivoted rows) for maximum absolute entry - T fMax = T(0); - for(int i1 = 0; i1 < N; i1++) - { - if(Pivoted[i1]) - continue; - - for(int i2 = 0; i2 < N; i2++) - { - if(Pivoted[i2]) - continue; - - T Abs = abs(Result[i1][i2]); - if(Abs > fMax) - { - fMax = Abs; - iRow = i1; - iCol = i2; - } - } - } - - if(fMax == T(0)) - { - return _xmatxGTX(1.0f); // Error - } - - Pivoted[iCol] = true; - - // swap rows so that A[iCol][iCol] contains the pivot entry - if(iRow != iCol) - { - _xvecxGTX Row = rowGTX(Result, iRow); - _xvecxGTX Col = rowGTX(Result, iCol); - rowGTX(Result, iRow, Col); - rowGTX(Result, iCol, Row); - } - - // keep track of the permutations of the rows - RowIndex[i0] = iRow; - ColIndex[i0] = iCol; - - // scale the row so that the pivot entry is 1 - T fInv = T(1) / Result[iCol][iCol]; - Result[iCol][iCol] = T(1); - for(int i2 = 0; i2 < N; i2++) - Result[iCol][i2] *= fInv; - - // zero out the pivot column locations in the other rows - for(int i1 = 0; i1 < N; ++i1) - { - if(i1 == iCol) - continue; - - T Tmp = Result[i1][iCol]; - Result[i1][iCol] = T(0); - for(int i2 = 0; i2 < N; i2++) - Result[i1][i2] -= Result[iCol][i2] * Tmp; - } - } - - // reorder rows so that A[][] stores the inverse of the original matrix - for(int i1 = N-1; i1 >= 0; --i1) - { - if(RowIndex[i1] == ColIndex[i1]) - continue; - for(int i2 = 0; i2 < N; ++i2) - std::swap(Result[i2][RowIndex[i1]], Result[i2][ColIndex[i1]]); - } - - return Result; - } - - // Binary operators - template - inline _xmatxGTX operator+ (const _xmatxGTX& m, const T s) - { - _xmatxGTX result; - for(int i = 0; i < N; ++i) - result[i] = m[i] + s; - return result; - } - - template - inline _xmatxGTX operator+ (const T s, const _xmatxGTX& m) - { - _xmatxGTX result; - for(int i = 0; i < N; ++i) - result[i] = s + m[i]; - return result; - } -/* - template - inline tvec4 operator+ (const _xmatxGTX& m, const tvec4& v) - { - - } - - template - inline tvec4 operator+ (const tvec4& v, const _xmatxGTX& m) - { - - } -*/ - template - inline _xmatxGTX operator+ (const _xmatxGTX& m1, const _xmatxGTX& m2) - { - _xmatxGTX result; - for(int i = 0; i < N; ++i) - result[i] = m1[i] + m2[i]; - return result; - } - - template - inline _xmatxGTX operator- (const _xmatxGTX& m, const T s) - { - _xmatxGTX result; - for(int i = 0; i < N; ++i) - result[i] = m[i] - s; - return result; - } - - template - inline _xmatxGTX operator- (const T s, const _xmatxGTX& m) - { - _xmatxGTX result; - for(int i = 0; i < N; ++i) - result[i] = s - m[i]; - return result; - } -/* - template - inline tvec4 operator- (const _xmatxGTX& m, const tvec4& v) - { - - } - - template - inline tvec4 operator- (const tvec4& v, const _xmatxGTX& m) - { - - } -*/ - template - inline _xmatxGTX operator- (const _xmatxGTX& m1, const _xmatxGTX& m2) - { - _xmatxGTX result; - for(int i = 0; i < N; ++i) - result[i] = m1[i] - m2[i]; - return result; - } - - template - inline _xmatxGTX operator* (const _xmatxGTX& m, const T s) - { - _xmatxGTX result; - for(int i = 0; i < N; ++i) - result[i] = m[i] * s; - return result; - } - - template - inline _xmatxGTX operator* (const T s, const _xmatxGTX& m) - { - _xmatxGTX result; - for(int i = 0; i < N; ++i) - result[i] = s * m[i]; - return result; - } - - template - inline _xvecxGTX operator* (const _xmatxGTX& m, const _xvecxGTX& v) - { - _xvecxGTX result(T(0)); - for(int j = 0; j < N; ++j) - for(int i = 0; i < N; ++i) - result[j] += m[i][j] * v[i]; - return result; - } - - template - inline _xvecxGTX operator* (const _xvecxGTX& v, const _xmatxGTX& m) - { - _xvecxGTX result(T(0)); - for(int j = 0; j < N; ++j) - for(int i = 0; i < N; ++i) - result[j] += m[j][i] * v[i]; - return result; - } - - template - inline _xmatxGTX operator* (const _xmatxGTX& m1, const _xmatxGTX& m2) - { - _xmatxGTX Result(T(0)); - for(int k = 0; k < N; ++k) - for(int j = 0; j < N; ++j) - for(int i = 0; i < N; ++i) - Result[k][j] += m1[i][j] * m2[k][i]; - return Result; - } - - template - inline _xmatxGTX operator/ (const _xmatxGTX& m, const T s) - { - _xmatxGTX result; - for(int i = 0; i < N; ++i) - result[i] = m[i] / s; - return result; - } - - template - inline _xmatxGTX operator/ (const T s, const _xmatxGTX& m) - { - _xmatxGTX result; - for(int i = 0; i < N; ++i) - result[i] = s / m[i]; - return result; - } - - template - inline _xvecxGTX operator/ (const _xmatxGTX& m, const _xvecxGTX& v) - { - return m._inverse() * v; - } - - template - inline _xvecxGTX operator/ (const _xvecxGTX& v, const _xmatxGTX& m) - { - return v * m._inverse(); - } - - template - inline _xmatxGTX operator/ (const _xmatxGTX& m1, const _xmatxGTX& m2) - { - return m1 * m2._inverse(); - } - - // Unary constant operators - template - inline const _xmatxGTX operator- (const _xmatxGTX& m) - { - _xmatxGTX result; - for(int i = 0; i < N; ++i) - result[i] = -m[i]; - return result; - } - - template - inline const _xmatxGTX operator++ (const _xmatxGTX& m, int) - { - _xmatxGTX result; - for(int i = 0; i < N; ++i) - result[i] = m[i] + T(1); - return result; - } - - template - inline const _xmatxGTX operator-- (const _xmatxGTX& m, int) - { - _xmatxGTX result; - for(int i = 0; i < N; ++i) - result[i] = m[i] - T(1); - return result; - } -}//namespace detail - - // Matrix Functions - template - inline detail::_xmatxGTX matrixCompMultGTX(const detail::_xmatxGTX& x, const detail::_xmatxGTX& y) - { - detail::_xmatxGTX result; - for(int j = 0; j < N; ++j) - for(int i = 0; i < N; ++i) - result[j][i] = x[j][i] * y[j][i]; - return result; - } - - template - inline detail::_xmatxGTX outerProductGTX(const detail::_xvecxGTX& c, const detail::_xvecxGTX& r) - { - detail::_xmatxGTX result; - for(int j = 0; j < N; ++j) - for(int i = 0; i < N; ++i) - result[j][i] = c[i] * r[j]; - return result; - } - - template - inline detail::_xmatxGTX transposeGTX(const detail::_xmatxGTX& m) - { - detail::_xmatxGTX result; - for(int j = 0; j < N; ++j) - for(int i = 0; i < N; ++i) - result[j][i] = m[i][j]; - return result; - } - - template - inline T determinantGTX(const detail::_xmatxGTX& m) - { - - } - - template - inline detail::_xmatxGTX inverseTransposeGTX(const detail::_xmatxGTX& m) - { - - } - - template - inline void columnGTX(detail::_xmatxGTX& m, int ColIndex, const detail::_xvecxGTX& v) - { - m[ColIndex] = v; - } - - template - inline void rowGTX(detail::_xmatxGTX& m, int RowIndex, const detail::_xvecxGTX& v) - { - for(int i = 0; i < N; ++i) - m[i][RowIndex] = v[i]; - } - - template - inline detail::_xvecxGTX columnGTX(const detail::_xmatxGTX& m, int ColIndex) - { - return m[ColIndex]; - } - - template - inline detail::_xvecxGTX rowGTX(const detail::_xmatxGTX& m, int RowIndex) - { - detail::_xvecxGTX v; - for(int i = 0; i < N; ++i) - v[i] = m[i][RowIndex]; - return v; - } -} //namespace glm diff --git a/glm/gtx/vecx.hpp b/glm/gtx/vecx.hpp deleted file mode 100644 index b14a2b50..00000000 --- a/glm/gtx/vecx.hpp +++ /dev/null @@ -1,215 +0,0 @@ -/////////////////////////////////////////////////////////////////////////////////////////////////// -// OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net) -/////////////////////////////////////////////////////////////////////////////////////////////////// -// Created : 2007-02-21 -// Updated : 2007-02-21 -// Licence : This source is under MIT License -// File : glm/gtx/vecx.hpp -/////////////////////////////////////////////////////////////////////////////////////////////////// -// Dependency: -// - GLM core -/////////////////////////////////////////////////////////////////////////////////////////////////// - -#ifndef glm_gtx_vecx -#define glm_gtx_vecx - -namespace glm{ -namespace detail{ - - template - class _bvecxGTX - { - private: - bool data[N]; - - public: - typedef bool value_type; - typedef int size_type; - static const size_type value_size; - static const size_type col_size; - static const size_type row_size; - - // Common constructors - _bvecxGTX(); - _bvecxGTX(const _bvecxGTX& v); - - // Accesses - bool& operator[](int i); - bool operator[](int i) const; - operator bool*(); - operator const bool*() const; - - // Bool constructors - explicit _bvecxGTX(const bool a); - - // Operators - _bvecxGTX& operator=(const _bvecxGTX& v); - _bvecxGTX operator! () const; - }; - - template - class _xvecxGTX - { - private: - T data[N]; - - public: - typedef T value_type; - typedef int size_type; - static const size_type value_size; - - // Common constructors - _xvecxGTX(); - _xvecxGTX(const _xvecxGTX& v); - - // Accesses - T& operator[](int i); - T operator[](int i) const; - operator T*(); - operator const T*() const; - - // T constructors - explicit _xvecxGTX(const T x); - - // Unary updatable operators - _xvecxGTX& operator= (const _xvecxGTX& v); - _xvecxGTX& operator+=(const T s); - _xvecxGTX& operator+=(const _xvecxGTX& v); - _xvecxGTX& operator-=(const T s); - _xvecxGTX& operator-=(const _xvecxGTX& v); - _xvecxGTX& operator*=(const T s); - _xvecxGTX& operator*=(const _xvecxGTX& v); - _xvecxGTX& operator/=(const T s); - _xvecxGTX& operator/=(const _xvecxGTX& v); - _xvecxGTX& operator++(); - _xvecxGTX& operator--(); - }; - - // Binary operators - template - detail::_xvecxGTX operator+ (const detail::_xvecxGTX& v, const T s); - - template - detail::_xvecxGTX operator+ (const T s, const detail::_xvecxGTX& v); - - template - detail::_xvecxGTX operator+ (const detail::_xvecxGTX& v1, const detail::_xvecxGTX& v2); - - template - detail::_xvecxGTX operator- (const detail::_xvecxGTX& v, const T s); - - template - detail::_xvecxGTX operator- (const T s, const detail::_xvecxGTX& v); - - template - detail::_xvecxGTX operator- (const detail::_xvecxGTX& v1, const detail::_xvecxGTX& v2); - - template - detail::_xvecxGTX operator* (const detail::_xvecxGTX& v, const T s); - - template - detail::_xvecxGTX operator* (const T s, const detail::_xvecxGTX& v); - - template - detail::_xvecxGTX operator* (const detail::_xvecxGTX& v1, const detail::_xvecxGTX& v2); - - template - detail::_xvecxGTX operator/ (const detail::_xvecxGTX& v, const T s); - - template - detail::_xvecxGTX operator/ (const T s, const detail::_xvecxGTX& v); - - template - detail::_xvecxGTX operator/ (const detail::_xvecxGTX& v1, const detail::_xvecxGTX& v2); - - // Unary constant operators - template - const detail::_xvecxGTX operator- (const detail::_xvecxGTX& v); - - template - const detail::_xvecxGTX operator-- (const detail::_xvecxGTX& v, int); - - template - const detail::_xvecxGTX operator++ (const detail::_xvecxGTX& v, int); - -}//namespace detail - - namespace gtx - { - //! GLM_GTX_vecx extension: - Work in progress - Add custom size vectors - namespace vecx - { - template - struct vec - { - typedef detail::_xvecxGTX type; - }; - - // Trigonometric Functions - template detail::_xvecxGTX radiansGTX(const detail::_xvecxGTX& degrees); //< \brief Converts degrees to radians and returns the result. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX degreesGTX(const detail::_xvecxGTX& radians); //< \brief Converts radians to degrees and returns the result. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX sinGTX(const detail::_xvecxGTX& angle); //< \brief The standard trigonometric sine function. The values returned by this function will range from [-1, 1]. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX cosGTX(const detail::_xvecxGTX& angle); //< \brief The standard trigonometric cosine function. The values returned by this function will range from [-1, 1]. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX tanGTX(const detail::_xvecxGTX& angle); //< \brief The standard trigonometric tangent function. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX asinGTX(const detail::_xvecxGTX& x); //< \brief Arc sine. Returns an angle whose sine is x. The range of values returned by this function is [-PI/2, PI/2]. Results are undefined if |x| > 1. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX acosGTX(const detail::_xvecxGTX& x); //< \brief Arc cosine. Returns an angle whose sine is x. The range of values returned by this function is [0, PI]. Results are undefined if |x| > 1. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX atanGTX(const detail::_xvecxGTX& y, const detail::_xvecxGTX& x); //< \brief Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX atanGTX(const detail::_xvecxGTX& y_over_x); //< \brief Arc tangent. Returns an angle whose tangent is y_over_x. The range of values returned by this function is [-PI/2, PI/2]. (From GLM_GTX_vecx extension) - - // Exponential Functions - template detail::_xvecxGTX powGTX(const detail::_xvecxGTX& x, const detail::_xvecxGTX& y); //< \brief Returns x raised to the y power. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX expGTX(const detail::_xvecxGTX& x); //< \brief Returns the natural exponentiation of x, i.e., e^x. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX logGTX(const detail::_xvecxGTX& x); //< \brief Returns the natural logarithm of x, i.e., returns the value y which satisfies the equation x = e^y. Results are undefined if x <= 0. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX exp2GTX(const detail::_xvecxGTX& x); //< \brief Returns 2 raised to the x power. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX log2GTX(const detail::_xvecxGTX& x); //< \brief Returns the base 2 log of x, i.e., returns the value y, which satisfies the equation x = 2 ^ y. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX sqrtGTX(const detail::_xvecxGTX& x); //< \brief Returns the positive square root of x. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX inversesqrtGTX(const detail::_xvecxGTX& x); //< \brief Returns the reciprocal of the positive square root of x. (From GLM_GTX_vecx extension) - - // Common Functions - template detail::_xvecxGTX absGTX(const detail::_xvecxGTX& x); //< \brief Returns x if x >= 0; otherwise, it returns -x. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX floorGTX(const detail::_xvecxGTX& x); //< \brief Returns a value equal to the nearest integer that is less then or equal to x. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX ceilGTX(const detail::_xvecxGTX& x); //< \brief Returns a value equal to the nearest integer that is greater than or equal to x. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX fractGTX(const detail::_xvecxGTX& x); //< \brief Return x - floor(x). (From GLM_GTX_vecx extension) - template detail::_xvecxGTX modGTX(const detail::_xvecxGTX& x, T y); //< \brief Modulus. Returns x - y * floor(x / y) for each component in x using the floating point value y. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX modGTX(const detail::_xvecxGTX& x, const detail::_xvecxGTX& y); //< \brief Modulus. Returns x - y * floor(x / y) for each component in x using the corresponding component of y. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX minGTX(const detail::_xvecxGTX& x, T y); //< \brief Returns y if y < x; otherwise, it returns x. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX minGTX(const detail::_xvecxGTX& x, const detail::_xvecxGTX& y); //< \brief Returns minimum of each component of x compared with the floating-point value y. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX maxGTX(const detail::_xvecxGTX& x, T y); //< \brief Returns y if x < y; otherwise, it returns x. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX maxGTX(const detail::_xvecxGTX& x, const detail::_xvecxGTX& y); //< \brief Returns maximum of each component of x compared with the floating-point value y. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX clampGTX(const detail::_xvecxGTX& x, T minVal, T maxVal); //< \brief Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal and maxVal. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX clampGTX(const detail::_xvecxGTX& x, const detail::_xvecxGTX& minVal, const detail::_xvecxGTX& maxVal); //< \brief Returns the component-wise result of min(max(x, minVal), maxVal). (From GLM_GTX_vecx extension) - template detail::_xvecxGTX stepGTX(T edge, const detail::_xvecxGTX& x); //< \brief Returns 0.0 if x <= edge; otherwise, it returns 1.0. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX stepGTX(const detail::_xvecxGTX& edge, const detail::_xvecxGTX& x); //< \brief Returns 0.0 if x <= edge; otherwise, it returns 1.0. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX smoothstepGTX(T edge0, T edge1, const detail::_xvecxGTX& x); //< \brief Returns 0.0 if x <= edge0 and 1.0 if x >= edge1 and performs smooth Hermite interpolation between 0 and 1 when edge0 < x, edge1. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX smoothstepGTX(const detail::_xvecxGTX& edge0, const detail::_xvecxGTX& edge1, const detail::_xvecxGTX& x);//< \brief Returns 0.0 if x <= edge0 and 1.0 if x >= edge1 and performs smooth Hermite interpolation between 0 and 1 when edge0 < x, edge1. (From GLM_GTX_vecx extension) - - // Geometric Functions - template T lengthGTX(const detail::_xvecxGTX& x); //< \brief Returns the length of x, i.e., sqrt(x * x). (From GLM_GTX_vecx extension) - template T distanceGTX(const detail::_xvecxGTX& p0, const detail::_xvecxGTX& p1); //< \brief Returns the distance betwwen p0 and p1, i.e., length(p0 - p1). (From GLM_GTX_vecx extension) - template T dotGTX(const detail::_xvecxGTX& x, const detail::_xvecxGTX& y); //< \brief Returns the dot product of x and y, i.e., result = x[0] * y[0] + x[1] * y[1]. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX normalizeGTX(const detail::_xvecxGTX& x); //< \brief Returns a vector in the same direction as x but with length of 1. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX faceforwardGTX(const detail::_xvecxGTX& Norm, const detail::_xvecxGTX& I, const detail::_xvecxGTX& Nref); //< \brief If dot(Nref, I) < 0.0, return N, otherwise, return -N. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX reflectGTX(const detail::_xvecxGTX& I, const detail::_xvecxGTX& N); //< \brief For the incident vector I and surface orientation N, returns the reflection direction : result = I - 2.0 * dot(N, I) * N. (From GLM_GTX_vecx extension) - template detail::_xvecxGTX refractGTX(const detail::_xvecxGTX& I, const detail::_xvecxGTX& N, T eta); //< \brief For the incident vector I and surface normal N, and the ratio of indices of refraction eta, return the refraction vector. (From GLM_GTX_vecx extension) - - // Vector Relational Functions - template detail::_bvecxGTX lessThanGTX(const detail::_xvecxGTX& x, const detail::_xvecxGTX& y); //< \brief Returns the component-wise compare of x < y. (From GLM_GTX_vecx extension) - template detail::_bvecxGTX lessThanEqualGTX(const detail::_xvecxGTX& x, const detail::_xvecxGTX& y); //< \brief Returns the component-wise compare of x <= y. (From GLM_GTX_vecx extension) - template detail::_bvecxGTX greaterThanGTX(const detail::_xvecxGTX& x, const detail::_xvecxGTX& y); //< \brief Returns the component-wise compare of x > y. (From GLM_GTX_vecx extension) - template detail::_bvecxGTX greaterThanEqualGTX(const detail::_xvecxGTX& x, const detail::_xvecxGTX& y); //< \brief Returns the component-wise compare of x >= y. (From GLM_GTX_vecx extension) - template detail::_bvecxGTX equalGTX(const detail::_bvecxGTX& x, const detail::_bvecxGTX& y); //< \brief Returns the component-wise compare of x == y. (From GLM_GTX_vecx extension) - template detail::_bvecxGTX equalGTX(const detail::_xvecxGTX& x, const detail::_xvecxGTX& y); //< \brief Returns the component-wise compare of x == y. (From GLM_GTX_vecx extension) - template detail::_bvecxGTX notEqualGTX(const detail::_bvecxGTX& x, const detail::_bvecxGTX& y); //< \brief Returns the component-wise compare of x != y. (From GLM_GTX_vecx extension) - template detail::_bvecxGTX notEqualGTX(const detail::_xvecxGTX& x, const detail::_xvecxGTX& y); //< \brief Returns the component-wise compare of x != y. (From GLM_GTX_vecx extension) - template bool anyGTX(const detail::_bvecxGTX& x); //< \brief Returns true if any component of x is true. (From GLM_GTX_vecx extension) - template bool allGTX(const detail::_bvecxGTX& x); //< \brief Returns true if all component of x is true. (From GLM_GTX_vecx extension) - template detail::_bvecxGTX notGTX(const detail::_bvecxGTX& v); //< \brief Returns the component-wise logical complement of x. (From GLM_GTX_vecx extension) - } - } -} - -#include "vecx.inl" - -namespace glm{using namespace gtx::vecx;} - -#endif//glm_gtx_vecx diff --git a/glm/gtx/vecx.inl b/glm/gtx/vecx.inl deleted file mode 100644 index 2af0db4e..00000000 --- a/glm/gtx/vecx.inl +++ /dev/null @@ -1,863 +0,0 @@ -/////////////////////////////////////////////////////////////////////////////////////////////////// -// OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net) -/////////////////////////////////////////////////////////////////////////////////////////////////// -// Created : 2007-02-21 -// Updated : 2007-02-21 -// Licence : This source is under MIT License -// File : glm/gtx/vecx.inl -/////////////////////////////////////////////////////////////////////////////////////////////////// - -#include - -namespace glm -{ -namespace detail{ - - template const typename _bvecxGTX::size_type _bvecxGTX::value_size = N; - - // Bool constructors - template - inline _bvecxGTX::_bvecxGTX() - { - for(int i = 0; i < N; ++i) - this->data[i] = false; - } - - template - inline _bvecxGTX::_bvecxGTX(const _bvecxGTX& v) - { - for(int i = 0; i < N; ++i) - this->data[i] = v[i]; - } - - template - inline _bvecxGTX::_bvecxGTX(const bool s) - { - for(int i = 0; i < N; ++i) - this->data[i] = s; - } - - // Accesses - template - inline bool& _bvecxGTX::operator[](int i) - { - assert(i >= 0 && i < N); - return this->data[i]; - } - - template - inline bool _bvecxGTX::operator[](int i) const - { - assert(i >= 0 && i < N); - return this->data[i]; - } - - template - inline _bvecxGTX::operator bool*() - { - return data; - } - - template - inline _bvecxGTX::operator const bool*() const - { - return data; - } - - // Operators - template - inline _bvecxGTX& _bvecxGTX::operator=(const _bvecxGTX& v) - { - for(int i = 0; i < N; ++i) - this->data[i] = v[i]; - return *this; - } - - template - inline _bvecxGTX _bvecxGTX::operator! () const - { - _bvecxGTX result; - for(int i = 0; i < N; ++i) - result[i] = !this->data[i]; - return result; - } - - template const typename _xvecxGTX::size_type _xvecxGTX::value_size = N; - - // Common constructors - template - inline _xvecxGTX::_xvecxGTX() - { - for(int i = 0; i < N; ++i) - this->data[i] = T(0); - } - - template - inline _xvecxGTX::_xvecxGTX(const _xvecxGTX& v) - { - for(int i = 0; i < N; ++i) - this->data[i] = v[i]; - } - - // T constructors - template - inline _xvecxGTX::_xvecxGTX(const T s) - { - for(int i = 0; i < N; ++i) - this->data[i] = s; - } - - // Accesses - template - inline T& _xvecxGTX::operator[](int i) - { - assert(i >= 0 && i < N); - return this->data[i]; - } - - template - inline T _xvecxGTX::operator[](int i) const - { - assert(i >= 0 && i < N); - return this->data[i]; - } - - template - inline _xvecxGTX::operator T*() - { - return data; - } - - template - inline _xvecxGTX::operator const T*() const - { - return data; - } - - template - inline _xvecxGTX& _xvecxGTX::operator=(const _xvecxGTX& v) - { - for(int i = 0; i < N; ++i) - this->data[i] = v[i]; - return *this; - } - - template - inline _xvecxGTX& _xvecxGTX::operator+= (const T s) - { - for(int i = 0; i < N; ++i) - this->data[i] += s; - return *this; - } - - template - inline _xvecxGTX& _xvecxGTX::operator+=(const _xvecxGTX& v) - { - for(int i = 0; i < N; ++i) - this->data[i] += v[i]; - return *this; - } - - template - inline _xvecxGTX& _xvecxGTX::operator-= (const T s) - { - for(int i = 0; i < N; ++i) - this->data[i] -= s; - return *this; - } - - template - inline _xvecxGTX& _xvecxGTX::operator-=(const _xvecxGTX& v) - { - for(int i = 0; i < N; ++i) - this->data[i] -= v[i]; - return *this; - } - - template - inline _xvecxGTX& _xvecxGTX::operator*=(const T s) - { - for(int i = 0; i < N; ++i) - this->data[i] *= s; - return *this; - } - - template - inline _xvecxGTX& _xvecxGTX::operator*= (const _xvecxGTX& v) - { - for(int i = 0; i < N; ++i) - this->data[i] *= v[i]; - return *this; - } - - template - inline _xvecxGTX& _xvecxGTX::operator/=(const T s) - { - for(int i = 0; i < N; ++i) - this->data[i] /= s; - return *this; - } - - template - inline _xvecxGTX& _xvecxGTX::operator/= (const _xvecxGTX& v) - { - for(int i = 0; i < N; ++i) - this->data[i] /= v[i]; - return *this; - } - - - // Unary constant operators - template - inline const detail::_xvecxGTX operator- (const detail::_xvecxGTX& v) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = -v[i]; - return result; - } - - template - inline const detail::_xvecxGTX operator++ (const detail::_xvecxGTX& v, int) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = v[i] + T(1); - return result; - } - - template - inline const detail::_xvecxGTX operator-- (const detail::_xvecxGTX& v, int) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = v[i] - T(1); - return result; - } - - // Binary operators - template - inline detail::_xvecxGTX operator+ (const detail::_xvecxGTX& v, const T s) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = v[i] + s; - return result; - } - - template - inline detail::_xvecxGTX operator+ (const T s, const detail::_xvecxGTX& v) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = v[i] + s; - return result; - } - - template - inline detail::_xvecxGTX operator+ (const detail::_xvecxGTX& v1, const detail::_xvecxGTX& v2) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = v1[i] + v2[i]; - return result; - } - - template - inline detail::_xvecxGTX operator- (const detail::_xvecxGTX& v, const T s) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = v[i] - s; - return result; - } - - template - inline detail::_xvecxGTX operator- (const T s, const detail::_xvecxGTX& v) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = s - v[i]; - return result; - } - - template - inline detail::_xvecxGTX operator- (const detail::_xvecxGTX& v1, const detail::_xvecxGTX& v2) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = v1[i] - v2[i]; - return result; - } - - template - inline detail::_xvecxGTX operator* (const detail::_xvecxGTX& v, const T s) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = v[i] * s; - return result; - } - - template - inline detail::_xvecxGTX operator* (const T s, const detail::_xvecxGTX& v) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = s * v[i]; - return result; - } - - template - inline detail::_xvecxGTX operator* (const detail::_xvecxGTX& v1, const detail::_xvecxGTX& v2) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = v1[i] * v2[i]; - return result; - } - - template - inline detail::_xvecxGTX operator/ (const detail::_xvecxGTX& v, const T s) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = v[i] / s; - return result; - } - - template - inline detail::_xvecxGTX operator/ (const T s, const detail::_xvecxGTX& v) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = s / v[i]; - return result; - } - - template - inline detail::_xvecxGTX operator/ (const detail::_xvecxGTX& v1, const detail::_xvecxGTX& v2) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = v1[i] / v2[i]; - return result; - } - -}//namespace detail - - namespace gtx{ - namespace vecx{ - - // Trigonometric Functions - template - detail::_xvecxGTX radiansGTX(const detail::_xvecxGTX& degrees) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = radians(degrees[i]); - return result; - } - - template - detail::_xvecxGTX degreesGTX(const detail::_xvecxGTX& radians) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = degrees(radians[i]); - return result; - } - - template - detail::_xvecxGTX sinGTX(const detail::_xvecxGTX& angle) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = sin(angle[i]); - return result; - } - - template - detail::_xvecxGTX cosGTX(const detail::_xvecxGTX& angle) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = cos(angle[i]); - return result; - } - - template - detail::_xvecxGTX tanGTX(const detail::_xvecxGTX& angle) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = tan(angle[i]); - return result; - } - - template - detail::_xvecxGTX asinGTX(const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = asin(x[i]); - return result; - } - - template - detail::_xvecxGTX acosGTX(const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = acos(x[i]); - return result; - } - - template - detail::_xvecxGTX atanGTX(const detail::_xvecxGTX& y, const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = atan(y[i], x[i]); - return result; - } - - template - detail::_xvecxGTX atanGTX(const detail::_xvecxGTX& y_over_x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = atan(y_over_x[i]); - return result; - } - - // Exponential Functions - template - detail::_xvecxGTX powGTX(const detail::_xvecxGTX& x, const detail::_xvecxGTX& y) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = pow(x[i], y[i]); - return result; - } - - template - detail::_xvecxGTX expGTX(const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = exp(x[i]); - return result; - } - - template - detail::_xvecxGTX logGTX(const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = log(x[i]); - return result; - } - - template - detail::_xvecxGTX exp2GTX(const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = exp2(x[i]); - return result; - } - - template - detail::_xvecxGTX log2GTX(const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = log2(x[i]); - return result; - } - - template - detail::_xvecxGTX sqrtGTX(const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = sqrt(x[i]); - return result; - } - - template - detail::_xvecxGTX inversesqrtGTX(const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = inversesqrt(x[i]); - return result; - } - - // Common Functions - template - detail::_xvecxGTX absGTX(const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = abs(x[i]); - return result; - } - - template - detail::_xvecxGTX signGTX(const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = sign(x[i]); - return result; - } - - template - detail::_xvecxGTX floorGTX(const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = floor(x[i]); - return result; - } - - template - detail::_xvecxGTX ceilGTX(const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = ceil(x[i]); - return result; - } - - template - detail::_xvecxGTX fractGTX(const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = fract(x[i]); - return result; - } - - template - detail::_xvecxGTX modGTX(const detail::_xvecxGTX& x, T y) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = mod(x[i], y); - return result; - } - - template - detail::_xvecxGTX modGTX( - const detail::_xvecxGTX& x, - const detail::_xvecxGTX& y) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = mod(x[i], y[i]); - return result; - } - - template - detail::_xvecxGTX minGTX( - const detail::_xvecxGTX& x, - T y) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = min(x[i], y); - return result; - } - - template - detail::_xvecxGTX minGTX( - const detail::_xvecxGTX& x, - const detail::_xvecxGTX& y) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = min(x[i], y[i]); - return result; - } - - template - detail::_xvecxGTX maxGTX( - const detail::_xvecxGTX& x, - T y) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = max(x[i], y); - return result; - } - - template - detail::_xvecxGTX maxGTX( - const detail::_xvecxGTX& x, - const detail::_xvecxGTX& y) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = max(x[i], y[i]); - return result; - } - - template - detail::_xvecxGTX clampGTX( - const detail::_xvecxGTX& x, - T minVal, - T maxVal) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = clamp(x[i], minVal, maxVal); - return result; - } - - template - detail::_xvecxGTX clampGTX( - const detail::_xvecxGTX& x, - const detail::_xvecxGTX& minVal, - const detail::_xvecxGTX& maxVal) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = clamp(x[i], minVal[i], maxVal[i]); - return result; - } - - template - detail::_xvecxGTX stepGTX( - T edge, - const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = step(edge, x[i]); - return result; - } - - template - detail::_xvecxGTX stepGTX( - const detail::_xvecxGTX& edge, - const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = step(edge[i], x[i]); - return result; - } - - template - detail::_xvecxGTX smoothstepGTX( - T edge0, - T edge1, - const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = step(edge0, edge1, x[i]); - return result; - } - - template - detail::_xvecxGTX smoothstepGTX( - const detail::_xvecxGTX& edge0, - const detail::_xvecxGTX& edge1, - const detail::_xvecxGTX& x) - { - detail::_xvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = step(edge0[i], edge1[i], x[i]); - return result; - } - - // Geometric Functions - template - T lengthGTX( - const detail::_xvecxGTX& x) - { - T sqr = dot(x, x); - return sqrt(sqr); - } - - template - T distanceGTX( - const detail::_xvecxGTX& p0, - const detail::_xvecxGTX& p1) - { - return lengthGTX(p1 - p0); - } - - template - T dotGTX( - const detail::_xvecxGTX& x, - const detail::_xvecxGTX& y) - { - T result = T(0); - for(int i = 0; i < N; ++i) - result += x[i] * y[i]; - return result; - } - - template - detail::_xvecxGTX normalizeGTX( - const detail::_xvecxGTX& x) - { - T sqr = dot(x, x); - return x * inversesqrt(sqr); - } - - template - detail::_xvecxGTX faceforwardGTX( - const detail::_xvecxGTX& Normal, - const detail::_xvecxGTX& I, - const detail::_xvecxGTX& Nref) - { - return dot(Nref, I) < T(0) ? Normal : -Normal; - } - - template - detail::_xvecxGTX reflectGTX( - const detail::_xvecxGTX& I, - const detail::_xvecxGTX& Normal) - { - return I - Normal * dot(Normal, I) * T(2); - } - - template - detail::_xvecxGTX refractGTX( - const detail::_xvecxGTX& I, - const detail::_xvecxGTX& Normal, - T eta) - { - T dot = dot(Normal, I); - T k = T(1) - eta * eta * (T(1) - dot * dot); - if(k < T(0)) - return detail::_xvecxGTX(T(0)); - else - return eta * I - (eta * dot + sqrt(k)) * Normal; - } - - // Vector Relational Functions - template - detail::_bvecxGTX lessThanGTX( - const detail::_xvecxGTX& x, - const detail::_xvecxGTX& y) - { - detail::_bvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = lessThan(x[i], y[i]); - return result; - } - - template - detail::_bvecxGTX lessThanEqualGTX( - const detail::_xvecxGTX& x, - const detail::_xvecxGTX& y) - { - detail::_bvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = lessThanEqual(x[i], y[i]); - return result; - } - - template - detail::_bvecxGTX greaterThanGTX( - const detail::_xvecxGTX& x, - const detail::_xvecxGTX& y) - { - detail::_bvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = greaterThan(x[i], y[i]); - return result; - } - - template - detail::_bvecxGTX greaterThanEqualGTX( - const detail::_xvecxGTX& x, - const detail::_xvecxGTX& y) - { - detail::_bvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = greaterThanEqual(x[i], y[i]); - return result; - } - - template - detail::_bvecxGTX equalGTX( - const detail::_bvecxGTX& x, - const detail::_bvecxGTX& y) - { - detail::_bvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = equal(x[i], y[i]); - return result; - } - - template - detail::_bvecxGTX equalGTX( - const detail::_xvecxGTX& x, - const detail::_xvecxGTX& y) - { - detail::_bvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = equal(x[i], y[i]); - return result; - } - - template - detail::_bvecxGTX notEqualGTX( - const detail::_bvecxGTX& x, - const detail::_bvecxGTX& y) - { - detail::_bvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = equal(x[i], y[i]); - return result; - } - - template - detail::_bvecxGTX notEqualGTX( - const detail::_xvecxGTX& x, - const detail::_xvecxGTX& y) - { - detail::_bvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = notEqual(x[i], y[i]); - return result; - } - - template - bool anyGTX(const detail::_bvecxGTX& x) - { - for(int i = 0; i< N; ++i) - if(x[i]) return true; - return false; - } - - template - bool allGTX(const detail::_bvecxGTX& x) - { - for(int i = 0; i< N; ++i) - if(!x[i]) return false; - return true; - } - - template - detail::_bvecxGTX notGTX( - const detail::_bvecxGTX& v) - { - detail::_bvecxGTX result; - for(int i = 0; i< N; ++i) - result[i] = !v[i]; - return result; - } - - }//namespace vecx - }//namespace gtx - -} //namespace glm