///////////////////////////////////////////////////////////////////////////////////
/// OpenGL Mathematics (glm.g-truc.net)
///
/// Copyright (c) 2005 – 2015 G-Truc Creation (www.g-truc.net)
/// Permission is hereby granted, free of charge, to any person obtaining a copy
/// of this software and associated documentation files (the “Software”), to deal
/// in the Software without restriction, including without limitation the rights
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
/// copies of the Software, and to permit persons to whom the Software is
/// furnished to do so, subject to the following conditions:
///
/// The above copyright notice and this permission notice shall be included in
/// all copies or substantial portions of the Software.
///
/// Restrictions:
/// By making use of the Software for military purposes, you choose to make
/// a Bunny unhappy.
///
/// THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
/// THE SOFTWARE.
///
/// @ref core
/// @file glm/detail/type_tvec4.inl
/// @date 2008-08-23 / 2011-06-15
/// @author Christophe Riccio
///////////////////////////////////////////////////////////////////////////////////
namespace glm
{
//////////////////////////////////////
// Implicit basic constructors
template
GLM_FUNC_QUALIFIER tvec4
# ifndef GLM_FORCE_NO_CTOR_INIT
: x(0), y(0), z(0), w(0)
# endif
{}
template
GLM_FUNC_QUALIFIER tvec4
: x(v.x), y(v.y), z(v.z), w(v.w)
{}
template
template
: x(v.x), y(v.y), z(v.z), w(v.w)
{}
//////////////////////////////////////
// Explicit basic constructors
template
GLM_FUNC_QUALIFIER tvec4
{}
template
GLM_FUNC_QUALIFIER tvec4
: x(s), y(s), z(s), w(s)
{}
template
GLM_FUNC_QUALIFIER tvec4
: x(a), y(b), z(c), w(d)
{}
//////////////////////////////////////
// Conversion scalar constructors
template
template
GLM_FUNC_QUALIFIER tvec4
x(static_cast
y(static_cast
z(static_cast
w(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec4
x(static_cast
y(static_cast
z(static_cast
w(static_cast
{}
//////////////////////////////////////
// Conversion vector constructors
template
template
GLM_FUNC_QUALIFIER tvec4
x(static_cast
y(static_cast
z(static_cast
w(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec4
x(static_cast
y(static_cast
z(static_cast
w(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec4
x(static_cast
y(static_cast
z(static_cast
w(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec4
x(static_cast
y(static_cast
z(static_cast
w(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec4
x(static_cast
y(static_cast
z(static_cast
w(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec4
x(static_cast
y(static_cast
z(static_cast
w(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec4
x(static_cast
y(static_cast
z(static_cast
w(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec4
x(static_cast
y(static_cast
z(static_cast
w(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec4
x(static_cast
y(static_cast
z(static_cast
w(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec4
x(static_cast
y(static_cast
z(static_cast
w(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec4
x(static_cast
y(static_cast
z(static_cast
w(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec4
x(static_cast
y(static_cast
z(static_cast
w(static_cast
{}
//////////////////////////////////////
// Component accesses
# ifdef GLM_FORCE_SIZE_FUNC
template
GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tvec4
{
return 4;
}
template
GLM_FUNC_QUALIFIER T & tvec4
{
assert(i >= 0 && static_cast
GLM_FUNC_QUALIFIER T const & tvec4
{
assert(i >= 0 && static_cast
GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tvec4
{
return 4;
}
template
GLM_FUNC_QUALIFIER T & tvec4
{
assert(i >= 0 && static_cast
GLM_FUNC_QUALIFIER T const & tvec4
{
assert(i >= 0 && static_cast
GLM_FUNC_QUALIFIER tvec4
{
this->x = v.x;
this->y = v.y;
this->z = v.z;
this->w = v.w;
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x = static_cast
this->y = static_cast
this->z = static_cast
this->w = static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x += static_cast
this->y += static_cast
this->z += static_cast
this->w += static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
T const scalar = static_cast
this->x += scalar;
this->y += scalar;
this->z += scalar;
this->w += scalar;
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x += static_cast
this->y += static_cast
this->z += static_cast
this->w += static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x -= static_cast
this->y -= static_cast
this->z -= static_cast
this->w -= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
T const scalar = static_cast
this->x -= scalar;
this->y -= scalar;
this->z -= scalar;
this->w -= scalar;
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x -= static_cast
this->y -= static_cast
this->z -= static_cast
this->w -= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x *= static_cast
this->y *= static_cast
this->z *= static_cast
this->w *= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x *= static_cast
this->y *= static_cast
this->z *= static_cast
this->w *= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x *= static_cast
this->y *= static_cast
this->z *= static_cast
this->w *= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x /= static_cast
this->y /= static_cast
this->z /= static_cast
this->w /= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x /= static_cast
this->y /= static_cast
this->z /= static_cast
this->w /= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x /= static_cast
this->y /= static_cast
this->z /= static_cast
this->w /= static_cast
return *this;
}
//////////////////////////////////////
// Increment and decrement operators
template
GLM_FUNC_QUALIFIER tvec4
{
++this->x;
++this->y;
++this->z;
++this->w;
return *this;
}
template
GLM_FUNC_QUALIFIER tvec4
{
–this->x;
–this->y;
–this->z;
–this->w;
return *this;
}
template
GLM_FUNC_QUALIFIER tvec4
{
tvec4
++*this;
return Result;
}
template
GLM_FUNC_QUALIFIER tvec4
{
tvec4
–*this;
return Result;
}
//////////////////////////////////////
// Unary bit operators
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x %= static_cast
this->y %= static_cast
this->z %= static_cast
this->w %= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x %= static_cast
this->y %= static_cast
this->z %= static_cast
this->w %= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x %= static_cast
this->y %= static_cast
this->z %= static_cast
this->w %= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x &= static_cast
this->y &= static_cast
this->z &= static_cast
this->w &= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x &= static_cast
this->y &= static_cast
this->z &= static_cast
this->w &= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x &= static_cast
this->y &= static_cast
this->z &= static_cast
this->w &= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x |= static_cast
this->y |= static_cast
this->z |= static_cast
this->w |= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x |= static_cast
this->y |= static_cast
this->z |= static_cast
this->w |= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x |= static_cast
this->y |= static_cast
this->z |= static_cast
this->w |= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x ^= static_cast
this->y ^= static_cast
this->z ^= static_cast
this->w ^= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x ^= static_cast
this->y ^= static_cast
this->z ^= static_cast
this->w ^= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x ^= static_cast
this->y ^= static_cast
this->z ^= static_cast
this->w ^= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
this->y <<= static_cast
this->z <<= static_cast
this->w <<= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x <<= static_cast
this->y <<= static_cast
this->z <<= static_cast
this->w <<= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x <<= static_cast
this->y <<= static_cast
this->z <<= static_cast
this->w <<= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x >>= static_cast
this->y >>= static_cast
this->z >>= static_cast
this->w >>= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x >>= static_cast
this->y >>= static_cast
this->z >>= static_cast
this->w >>= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec4
{
this->x >>= static_cast
this->y >>= static_cast
this->z >>= static_cast
this->w >>= static_cast
return *this;
}
//////////////////////////////////////
// Boolean operators
template
GLM_FUNC_QUALIFIER bool operator==(tvec4
{
return (v1.x == v2.x) && (v1.y == v2.y) && (v1.z == v2.z) && (v1.w == v2.w);
}
template
GLM_FUNC_QUALIFIER bool operator!=(tvec4
{
return (v1.x != v2.x) || (v1.y != v2.y) || (v1.z != v2.z) || (v1.w != v2.w);
}
//////////////////////////////////////
// Binary arithmetic operators
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x + scalar,
v.y + scalar,
v.z + scalar,
v.w + scalar);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
scalar + v.x,
scalar + v.y,
scalar + v.z,
scalar + v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v1.x + v2.x,
v1.y + v2.y,
v1.z + v2.z,
v1.w + v2.w);
}
//operator-
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x – scalar,
v.y – scalar,
v.z – scalar,
v.w – scalar);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
scalar – v.x,
scalar – v.y,
scalar – v.z,
scalar – v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v1.x – v2.x,
v1.y – v2.y,
v1.z – v2.z,
v1.w – v2.w);
}
//operator*
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x * scalar,
v.y * scalar,
v.z * scalar,
v.w * scalar);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
scalar * v.x,
scalar * v.y,
scalar * v.z,
scalar * v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v1.x * v2.x,
v1.y * v2.y,
v1.z * v2.z,
v1.w * v2.w);
}
//operator/
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x / scalar,
v.y / scalar,
v.z / scalar,
v.w / scalar);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
scalar / v.x,
scalar / v.y,
scalar / v.z,
scalar / v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v1.x / v2.x,
v1.y / v2.y,
v1.z / v2.z,
v1.w / v2.w);
}
// Unary constant operators
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
-v.x,
-v.y,
-v.z,
-v.w);
}
//////////////////////////////////////
// Binary bit operators
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x % s,
v.y % s,
v.z % s,
v.w % s);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x % s.x,
v.y % s.x,
v.z % s.x,
v.w % s.x);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
s % v.x,
s % v.y,
s % v.z,
s % v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
s.x % v.x,
s.x % v.y,
s.x % v.z,
s.x % v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v1.x % v2.x,
v1.y % v2.y,
v1.z % v2.z,
v1.w % v2.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x & s,
v.y & s,
v.z & s,
v.w & s);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x & s.x,
v.y & s.x,
v.z & s.x,
v.w & s.x);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
s & v.x,
s & v.y,
s & v.z,
s & v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
s.x & v.x,
s.x & v.y,
s.x & v.z,
s.x & v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v1.x & v2.x,
v1.y & v2.y,
v1.z & v2.z,
v1.w & v2.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x | s,
v.y | s,
v.z | s,
v.w | s);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x | s.x,
v.y | s.x,
v.z | s.x,
v.w | s.x);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
s | v.x,
s | v.y,
s | v.z,
s | v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
s.x | v.x,
s.x | v.y,
s.x | v.z,
s.x | v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v1.x | v2.x,
v1.y | v2.y,
v1.z | v2.z,
v1.w | v2.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x ^ s,
v.y ^ s,
v.z ^ s,
v.w ^ s);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x ^ s.x,
v.y ^ s.x,
v.z ^ s.x,
v.w ^ s.x);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
scalar ^ v.x,
scalar ^ v.y,
scalar ^ v.z,
scalar ^ v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
s.x ^ v.x,
s.x ^ v.y,
s.x ^ v.z,
s.x ^ v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v1.x ^ v2.x,
v1.y ^ v2.y,
v1.z ^ v2.z,
v1.w ^ v2.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x << scalar,
v.y << scalar,
v.z << scalar,
v.w << scalar);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x << s.x,
v.y << s.x,
v.z << s.x,
v.w << s.x);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
scalar << v.x,
scalar << v.y,
scalar << v.z,
scalar << v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
s.x << v.x,
s.x << v.y,
s.x << v.z,
s.x << v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v1.x << v2.x,
v1.y << v2.y,
v1.z << v2.z,
v1.w << v2.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x >> scalar,
v.y >> scalar,
v.z >> scalar,
v.w >> scalar);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v.x >> s.x,
v.y >> s.x,
v.z >> s.x,
v.w >> s.x);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
scalar >> v.x,
scalar >> v.y,
scalar >> v.z,
scalar >> v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
s.x >> v.x,
s.x >> v.y,
s.x >> v.z,
s.x >> v.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
v1.x >> v2.x,
v1.y >> v2.y,
v1.z >> v2.z,
v1.w >> v2.w);
}
template
GLM_FUNC_QUALIFIER tvec4
{
return tvec4
~v.x,
~v.y,
~v.z,
~v.w);
}
}//namespace glm
#if GLM_HAS_ANONYMOUS_UNION && GLM_NOT_BUGGY_VC32BITS
#if GLM_ARCH & GLM_ARCH_SSE2
# include “type_vec4_sse2.inl”
#endif
#if GLM_ARCH & GLM_ARCH_AVX
# include “type_vec4_avx.inl”
#endif
#if GLM_ARCH & GLM_ARCH_AVX2
# include “type_vec4_avx2.inl”
#endif
#endif//