///////////////////////////////////////////////////////////////////////////////////
/// OpenGL Mathematics (glm.g-truc.net)
///
/// Copyright (c) 2005 – 2014 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.
///
/// 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/core/type_tvec2.inl
/// @date 2008-08-18 / 2011-06-15
/// @author Christophe Riccio
///////////////////////////////////////////////////////////////////////////////////
namespace glm
{
#ifdef GLM_FORCE_SIZE_FUNC
template
GLM_FUNC_QUALIFIER GLM_CONSTEXPR size_t tvec2
{
return 2;
}
#else
template
GLM_FUNC_QUALIFIER GLM_CONSTEXPR length_t tvec2
{
return 2;
}
#endif
//////////////////////////////////////
// Accesses
template
GLM_FUNC_QUALIFIER T & tvec2
{
assert(i >= 0 && static_cast
GLM_FUNC_QUALIFIER T const & tvec2
{
assert(i >= 0 && static_cast
GLM_FUNC_QUALIFIER tvec2
# ifndef GLM_FORCE_NO_CTOR_INIT
: x(0), y(0)
# endif
{}
template
GLM_FUNC_QUALIFIER tvec2
: x(v.x), y(v.y)
{}
template
template
: x(v.x), y(v.y)
{}
//////////////////////////////////////
// Explicit basic constructors
template
GLM_FUNC_QUALIFIER tvec2
{}
template
GLM_FUNC_QUALIFIER tvec2
: x(s), y(s)
{}
template
GLM_FUNC_QUALIFIER tvec2
: x(s1), y(s2)
{}
//////////////////////////////////////
// Conversion scalar constructors
template
template
GLM_FUNC_QUALIFIER tvec2
: x(static_cast
, y(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec2
: x(static_cast
, y(static_cast
{}
//////////////////////////////////////
// Conversion vector constructors
template
template
GLM_FUNC_QUALIFIER tvec2
: x(static_cast
, y(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec2
: x(static_cast
, y(static_cast
{}
template
template
GLM_FUNC_QUALIFIER tvec2
: x(static_cast
, y(static_cast
{}
//////////////////////////////////////
// Unary arithmetic operators
template
GLM_FUNC_QUALIFIER tvec2
{
this->x = v.x;
this->y = v.y;
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x = static_cast
this->y = static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x += static_cast
this->y += static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x += static_cast
this->y += static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x += static_cast
this->y += static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x -= static_cast
this->y -= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x -= static_cast
this->y -= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x -= static_cast
this->y -= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x *= static_cast
this->y *= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x *= static_cast
this->y *= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x *= static_cast
this->y *= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x /= static_cast
this->y /= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x /= static_cast
this->y /= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x /= static_cast
this->y /= static_cast
return *this;
}
//////////////////////////////////////
// Increment and decrement operators
template
GLM_FUNC_QUALIFIER tvec2
{
++this->x;
++this->y;
return *this;
}
template
GLM_FUNC_QUALIFIER tvec2
{
–this->x;
–this->y;
return *this;
}
template
GLM_FUNC_QUALIFIER tvec2
{
tvec2
++*this;
return Result;
}
template
GLM_FUNC_QUALIFIER tvec2
{
tvec2
–*this;
return Result;
}
//////////////////////////////////////
// Boolean operators
template
GLM_FUNC_QUALIFIER bool operator==(tvec2
{
return (v1.x == v2.x) && (v1.y == v2.y);
}
template
GLM_FUNC_QUALIFIER bool operator!=(tvec2
{
return (v1.x != v2.x) || (v1.y != v2.y);
}
//////////////////////////////////////
// Unary bit operators
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x %= static_cast
this->y %= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x %= static_cast
this->y %= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x %= static_cast
this->y %= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x &= static_cast
this->y &= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x &= static_cast
this->y &= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x &= static_cast
this->y &= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x |= static_cast
this->y |= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x |= static_cast
this->y |= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x |= static_cast
this->y |= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x ^= static_cast
this->y ^= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x ^= static_cast
this->y ^= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x ^= static_cast
this->y ^= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
this->y <<= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x <<= static_cast
this->y <<= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x <<= static_cast
this->y <<= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x >>= static_cast
this->y >>= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x >>= static_cast
this->y >>= static_cast
return *this;
}
template
template
GLM_FUNC_QUALIFIER tvec2
{
this->x >>= static_cast
this->y >>= static_cast
return *this;
}
//////////////////////////////////////
// Binary arithmetic operators
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v.x + s,
v.y + s);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x + v2.x,
v1.y + v2.x);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
s + v.x,
s + v.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x + v2.x,
v1.x + v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x + v2.x,
v1.y + v2.y);
}
//operator-
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v.x – s,
v.y – s);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x – v2.x,
v1.y – v2.x);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
s – v.x,
s – v.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x – v2.x,
v1.x – v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x – v2.x,
v1.y – v2.y);
}
//operator*
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x * v2,
v1.y * v2);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x * v2.x,
v1.y * v2.x);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
s * v.x,
s * v.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x * v2.x,
v1.x * v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x * v2.x,
v1.y * v2.y);
}
//operator/
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v.x / s,
v.y / s);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x / v2.x,
v1.y / v2.x);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
s / v.x,
s / v.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x / v2.x,
v1.x / v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x / v2.x,
v1.y / v2.y);
}
// Unary constant operators
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
-v.x,
-v.y);
}
//////////////////////////////////////
// Binary bit operators
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v.x % s,
v.y % s);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x % v2.x,
v1.y % v2.x);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
s % v.x,
s % v.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x % v2.x,
v1.x % v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x % v2.x,
v1.y % v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v.x & s,
v.y & s);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x & v2.x,
v1.y & v2.x);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
s & v.x,
s & v.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x & v2.x,
v1.x & v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x & v2.x,
v1.y & v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v.x | s,
v.y | s);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x | v2.x,
v1.y | v2.x);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
s | v.x,
s | v.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x | v2.x,
v1.x | v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x | v2.x,
v1.y | v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v.x ^ s,
v.y ^ s);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x ^ v2.x,
v1.y ^ v2.x);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
s ^ v.x,
s ^ v.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x ^ v2.x,
v1.x ^ v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x ^ v2.x,
v1.y ^ v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v.x << s,
v.y << s);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x << v2.x,
v1.y << v2.x);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
s << v.x,
s << v.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x << v2.x,
v1.x << v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x << v2.x,
v1.y << v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v.x >> s,
v.y >> s);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x >> v2.x,
v1.y >> v2.x);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
s >> v.x,
s >> v.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x >> v2.x,
v1.x >> v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
v1.x >> v2.x,
v1.y >> v2.y);
}
template
GLM_FUNC_QUALIFIER tvec2
{
return tvec2
~v.x,
~v.y);
}
}//namespace glm