/////////////////////////////////////////////////////////////////////////////////// /// OpenGL Mathematics (glm.g-truc.net) /// /// Copyright (c) 2005 - 2013 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_tvec4.inl /// @date 2008-08-23 / 2011-06-15 /// @author Christophe Riccio /////////////////////////////////////////////////////////////////////////////////// namespace glm{ namespace detail { template GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tvec4::size_type tvec4::length() const { return 4; } ////////////////////////////////////// // Accesses template GLM_FUNC_QUALIFIER typename tvec4::value_type & tvec4::operator[] ( size_type i ) { assert(i < this->length()); return (&x)[i]; } template GLM_FUNC_QUALIFIER typename tvec4::value_type const & tvec4::operator[] ( size_type i ) const { assert(i < this->length()); return (&x)[i]; } ////////////////////////////////////// // Implicit basic constructors template GLM_FUNC_QUALIFIER tvec4::tvec4() : x(value_type(0)), y(value_type(0)), z(value_type(0)), w(value_type(0)) {} template GLM_FUNC_QUALIFIER tvec4::tvec4 ( ctor ) {} template GLM_FUNC_QUALIFIER tvec4::tvec4 ( type const & v ) : x(v.x), y(v.y), z(v.z), w(v.w) {} ////////////////////////////////////// // Explicit basic constructors template GLM_FUNC_QUALIFIER tvec4::tvec4 ( value_type const & s ) : x(s), y(s), z(s), w(s) {} template GLM_FUNC_QUALIFIER tvec4::tvec4 ( value_type const & s1, value_type const & s2, value_type const & s3, value_type const & s4 ) : x(s1), y(s2), z(s3), w(s4) {} ////////////////////////////////////// // Swizzle constructors template GLM_FUNC_QUALIFIER tvec4::tvec4 ( tref4 const & r ) : x(r.x), y(r.y), z(r.z), w(r.w) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( tref2 const & v, B const & s1, C const & s2 ) : x(value_type(v.x)), y(value_type(v.y)), z(value_type(s1)), w(value_type(s2)) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( A const & s1, tref2 const & v, C const & s2 ) : x(value_type(s1)), y(value_type(v.x)), z(value_type(v.y)), w(value_type(s2)) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( A const & s1, B const & s2, tref2 const & v ) : x(value_type(s1)), y(value_type(s2)), z(value_type(v.x)), w(value_type(v.y)) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( tref3 const & v, B const & s ) : x(value_type(v.x)), y(value_type(v.y)), z(value_type(v.z)), w(value_type(s)) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( A const & s, tref3 const & v ) : x(value_type(s)), y(value_type(v.x)), z(value_type(v.y)), w(value_type(v.z)) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( tref2 const & v1, tref2 const & v2 ) : x(value_type(v1.x)), y(value_type(v1.y)), z(value_type(v2.x)), w(value_type(v2.y)) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( tvec2 const & v1, tref2 const & v2 ) : x(value_type(v1.x)), y(value_type(v1.y)), z(value_type(v2.x)), w(value_type(v2.y)) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( tref2 const & v1, tvec2 const & v2 ) : x(value_type(v1.x)), y(value_type(v1.y)), z(value_type(v2.x)), w(value_type(v2.y)) {} ////////////////////////////////////// // Convertion scalar constructors template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( U const & x ) : x(value_type(x)), y(value_type(x)), z(value_type(x)), w(value_type(x)) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( A const & x, B const & y, C const & z, D const & w ) : x(value_type(x)), y(value_type(y)), z(value_type(z)), w(value_type(w)) {} ////////////////////////////////////// // Convertion vector constructors template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( tvec2 const & v, B const & s1, C const & s2 ) : x(value_type(v.x)), y(value_type(v.y)), z(value_type(s1)), w(value_type(s2)) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( A const & s1, tvec2 const & v, C const & s2 ) : x(value_type(s1)), y(value_type(v.x)), z(value_type(v.y)), w(value_type(s2)) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( A const & s1, B const & s2, tvec2 const & v ) : x(value_type(s1)), y(value_type(s2)), z(value_type(v.x)), w(value_type(v.y)) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( tvec3 const & v, B const & s ) : x(value_type(v.x)), y(value_type(v.y)), z(value_type(v.z)), w(value_type(s)) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( A const & s, tvec3 const & v ) : x(value_type(s)), y(value_type(v.x)), z(value_type(v.y)), w(value_type(v.z)) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( tvec2 const & v1, tvec2 const & v2 ) : x(value_type(v1.x)), y(value_type(v1.y)), z(value_type(v2.x)), w(value_type(v2.y)) {} template template GLM_FUNC_QUALIFIER tvec4::tvec4 ( tvec4 const & v ) : x(value_type(v.x)), y(value_type(v.y)), z(value_type(v.z)), w(value_type(v.w)) {} ////////////////////////////////////// // Unary arithmetic operators template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator= ( tvec4 const & v ) { this->x = v.x; this->y = v.y; this->z = v.z; this->w = v.w; return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator= ( tvec4 const & v ) { this->x = T(v.x); this->y = T(v.y); this->z = T(v.z); this->w = T(v.w); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator+= ( U const & s ) { this->x += T(s); this->y += T(s); this->z += T(s); this->w += T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator+= ( tvec4 const & v ) { this->x += T(v.x); this->y += T(v.y); this->z += T(v.z); this->w += T(v.w); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator-= ( U const & s ) { this->x -= T(s); this->y -= T(s); this->z -= T(s); this->w -= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator-= ( tvec4 const & v ) { this->x -= T(v.x); this->y -= T(v.y); this->z -= T(v.z); this->w -= T(v.w); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator*= ( U const & s ) { this->x *= T(s); this->y *= T(s); this->z *= T(s); this->w *= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator*= ( tvec4 const & v ) { this->x *= T(v.x); this->y *= T(v.y); this->z *= T(v.z); this->w *= T(v.w); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator/= ( U const & s ) { this->x /= T(s); this->y /= T(s); this->z /= T(s); this->w /= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator/= ( tvec4 const & v ) { this->x /= T(v.x); this->y /= T(v.y); this->z /= T(v.z); this->w /= T(v.w); return *this; } template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator++() { ++this->x; ++this->y; ++this->z; ++this->w; return *this; } template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator--() { --this->x; --this->y; --this->z; --this->w; return *this; } ////////////////////////////////////// // Unary bit operators template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator%= ( U const & s ) { this->x %= T(s); this->y %= T(s); this->z %= T(s); this->w %= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator%= ( tvec4 const & v ) { this->x %= T(v.x); this->y %= T(v.y); this->z %= T(v.z); this->w %= T(v.w); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator&= ( U const & s ) { this->x &= T(s); this->y &= T(s); this->z &= T(s); this->w &= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator&= ( tvec4 const & v ) { this->x &= T(v.x); this->y &= T(v.y); this->z &= T(v.z); this->w &= T(v.w); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator|= ( U const & s ) { this->x |= T(s); this->y |= T(s); this->z |= T(s); this->w |= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator|= ( tvec4 const & v ) { this->x |= T(v.x); this->y |= T(v.y); this->z |= T(v.z); this->w |= T(v.w); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator^= ( U const & s ) { this->x ^= T(s); this->y ^= T(s); this->z ^= T(s); this->w ^= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator^= ( tvec4 const & v ) { this->x ^= T(v.x); this->y ^= T(v.y); this->z ^= T(v.z); this->w ^= T(v.w); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator<<= ( U const & s ) { this->x <<= T(s); this->y <<= T(s); this->z <<= T(s); this->w <<= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator<<= ( tvec4 const & v ) { this->x <<= T(v.x); this->y <<= T(v.y); this->z <<= T(v.z); this->w <<= T(v.w); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator>>= ( U const & s ) { this->x >>= T(s); this->y >>= T(s); this->z >>= T(s); this->w >>= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator>>= ( tvec4 const & v ) { this->x >>= T(v.x); this->y >>= T(v.y); this->z >>= T(v.z); this->w >>= T(v.w); return *this; } ////////////////////////////////////// // Swizzle operators template GLM_FUNC_QUALIFIER typename tvec4::value_type tvec4::swizzle ( comp x ) const { return (*this)[x]; } template GLM_FUNC_QUALIFIER tvec2 tvec4::swizzle ( comp x, comp y ) const { return tvec2( (*this)[x], (*this)[y]); } template GLM_FUNC_QUALIFIER tvec3 tvec4::swizzle ( comp x, comp y, comp z ) const { return tvec3( (*this)[x], (*this)[y], (*this)[z]); } template GLM_FUNC_QUALIFIER tvec4 tvec4::swizzle ( comp x, comp y, comp z, comp w ) const { return tvec4( (*this)[x], (*this)[y], (*this)[z], (*this)[w]); } template GLM_FUNC_QUALIFIER tref2 tvec4::swizzle ( comp x, comp y ) { return tref2( (*this)[x], (*this)[y]); } template GLM_FUNC_QUALIFIER tref3 tvec4::swizzle ( comp x, comp y, comp z ) { return tref3( (*this)[x], (*this)[y], (*this)[z]); } template GLM_FUNC_QUALIFIER tref4 tvec4::swizzle ( comp x, comp y, comp z, comp w ) { return tref4( (*this)[x], (*this)[y], (*this)[z], (*this)[w]); } ////////////////////////////////////// // Binary arithmetic operators template GLM_FUNC_QUALIFIER tvec4 operator+ ( tvec4 const & v, typename tvec4::value_type const & s ) { return tvec4( v.x + s, v.y + s, v.z + s, v.w + s); } template GLM_FUNC_QUALIFIER tvec4 operator+ ( typename tvec4::value_type const & s, tvec4 const & v ) { return tvec4( s + v.x, s + v.y, s + v.z, s + v.w); } template GLM_FUNC_QUALIFIER tvec4 operator+ ( tvec4 const & v1, tvec4 const & v2 ) { return tvec4( v1.x + v2.x, v1.y + v2.y, v1.z + v2.z, v1.w + v2.w); } //operator- template GLM_FUNC_QUALIFIER tvec4 operator- ( tvec4 const & v, typename tvec4::value_type const & s ) { return tvec4( v.x - s, v.y - s, v.z - s, v.w - s); } template GLM_FUNC_QUALIFIER tvec4 operator- ( typename tvec4::value_type const & s, tvec4 const & v ) { return tvec4( s - v.x, s - v.y, s - v.z, s - v.w); } template GLM_FUNC_QUALIFIER tvec4 operator- ( tvec4 const & v1, tvec4 const & v2 ) { return tvec4( v1.x - v2.x, v1.y - v2.y, v1.z - v2.z, v1.w - v2.w); } //operator* template GLM_FUNC_QUALIFIER tvec4 operator* ( tvec4 const & v, typename tvec4::value_type const & s ) { return tvec4( v.x * s, v.y * s, v.z * s, v.w * s); } template GLM_FUNC_QUALIFIER tvec4 operator* ( typename tvec4::value_type const & s, tvec4 const & v ) { return tvec4( s * v.x, s * v.y, s * v.z, s * v.w); } template GLM_FUNC_QUALIFIER tvec4 operator* ( tvec4 const & v1, tvec4 const & v2 ) { return tvec4( v1.x * v2.x, v1.y * v2.y, v1.z * v2.z, v1.w * v2.w); } //operator/ template GLM_FUNC_QUALIFIER tvec4 operator/ ( tvec4 const & v, typename tvec4::value_type const & s ) { return tvec4( v.x / s, v.y / s, v.z / s, v.w / s); } template GLM_FUNC_QUALIFIER tvec4 operator/ ( typename tvec4::value_type const & s, tvec4 const & v ) { return tvec4( s / v.x, s / v.y, s / v.z, s / v.w); } template GLM_FUNC_QUALIFIER tvec4 operator/ ( tvec4 const & v1, tvec4 const & v2 ) { 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 operator- ( tvec4 const & v ) { return tvec4( -v.x, -v.y, -v.z, -v.w); } template GLM_FUNC_QUALIFIER tvec4 operator++ ( tvec4 const & v, int ) { typename tvec4::value_type One(1); return tvec4( v.x + One, v.y + One, v.z + One, v.w + One); } template GLM_FUNC_QUALIFIER tvec4 operator-- ( tvec4 const & v, int ) { typename tvec4::value_type One(1); return tvec4( v.x - One, v.y - One, v.z - One, v.w - One); } ////////////////////////////////////// // Boolean operators template GLM_FUNC_QUALIFIER bool operator== ( tvec4 const & v1, tvec4 const & v2 ) { return (v1.x == v2.x) && (v1.y == v2.y) && (v1.z == v2.z) && (v1.w == v2.w); } template GLM_FUNC_QUALIFIER bool operator!= ( tvec4 const & v1, tvec4 const & v2 ) { return (v1.x != v2.x) || (v1.y != v2.y) || (v1.z != v2.z) || (v1.w != v2.w); } ////////////////////////////////////// // Binary bit operators template GLM_FUNC_QUALIFIER tvec4 operator% ( tvec4 const & v, typename tvec4::value_type const & s ) { return tvec4( v.x % s, v.y % s, v.z % s, v.w % s); } template GLM_FUNC_QUALIFIER tvec4 operator% ( typename tvec4::value_type const & s, tvec4 const & v ) { return tvec4( s % v.x, s % v.y, s % v.z, s % v.w); } template GLM_FUNC_QUALIFIER tvec4 operator% ( tvec4 const & v1, tvec4 const & v2 ) { return tvec4( v1.x % v2.x, v1.y % v2.y, v1.z % v2.z, v1.w % v2.w); } template GLM_FUNC_QUALIFIER tvec4 operator& ( tvec4 const & v, typename tvec4::value_type const & s ) { return tvec4( v.x & s, v.y & s, v.z & s, v.w & s); } template GLM_FUNC_QUALIFIER tvec4 operator& ( typename tvec4::value_type const & s, tvec4 const & v ) { return tvec4( s & v.x, s & v.y, s & v.z, s & v.w); } template GLM_FUNC_QUALIFIER tvec4 operator& ( tvec4 const & v1, tvec4 const & v2 ) { return tvec4( v1.x & v2.x, v1.y & v2.y, v1.z & v2.z, v1.w & v2.w); } template GLM_FUNC_QUALIFIER tvec4 operator| ( tvec4 const & v, typename tvec4::value_type const & s ) { return tvec4( v.x | s, v.y | s, v.z | s, v.w | s); } template GLM_FUNC_QUALIFIER tvec4 operator| ( typename tvec4::value_type const & s, tvec4 const & v ) { return tvec4( s | v.x, s | v.y, s | v.z, s | v.w); } template GLM_FUNC_QUALIFIER tvec4 operator| ( tvec4 const & v1, tvec4 const & v2 ) { return tvec4( v1.x | v2.x, v1.y | v2.y, v1.z | v2.z, v1.w | v2.w); } template GLM_FUNC_QUALIFIER tvec4 operator^ ( tvec4 const & v, typename tvec4::value_type const & s ) { return tvec4( v.x ^ s, v.y ^ s, v.z ^ s, v.w ^ s); } template GLM_FUNC_QUALIFIER tvec4 operator^ ( typename tvec4::value_type const & s, tvec4 const & v ) { return tvec4( s ^ v.x, s ^ v.y, s ^ v.z, s ^ v.w); } template GLM_FUNC_QUALIFIER tvec4 operator^ ( tvec4 const & v1, tvec4 const & v2 ) { return tvec4( v1.x ^ v2.x, v1.y ^ v2.y, v1.z ^ v2.z, v1.w ^ v2.w); } template GLM_FUNC_QUALIFIER tvec4 operator<< ( tvec4 const & v, typename tvec4::value_type const & s ) { return tvec4( v.x << s, v.y << s, v.z << s, v.w << s); } template GLM_FUNC_QUALIFIER tvec4 operator<< ( typename tvec4::value_type const & s, tvec4 const & v ) { return tvec4( s << v.x, s << v.y, s << v.z, s << v.w); } template GLM_FUNC_QUALIFIER tvec4 operator<< ( tvec4 const & v1, tvec4 const & v2 ) { return tvec4( v1.x << v2.x, v1.y << v2.y, v1.z << v2.z, v1.w << v2.w); } template GLM_FUNC_QUALIFIER tvec4 operator>> ( tvec4 const & v, typename tvec4::value_type const & s ) { return tvec4( v.x >> s, v.y >> s, v.z >> s, v.w >> s); } template GLM_FUNC_QUALIFIER tvec4 operator>> ( typename tvec4::value_type const & s, tvec4 const & v ) { return tvec4( s >> v.x, s >> v.y, s >> v.z, s >> v.w); } template GLM_FUNC_QUALIFIER tvec4 operator>> ( tvec4 const & v1, tvec4 const & v2 ) { return tvec4( v1.x >> v2.x, v1.y >> v2.y, v1.z >> v2.z, v1.w >> v2.w); } template GLM_FUNC_QUALIFIER tvec4 operator~ ( tvec4 const & v ) { return tvec4( ~v.x, ~v.y, ~v.z, ~v.w); } ////////////////////////////////////// // tref definition template tref4::tref4 ( T & x, T & y, T & z, T & w ) : x(x), y(y), z(z), w(w) {} template tref4::tref4 ( tref4 const & r ) : x(r.x), y(r.y), z(r.z), w(r.w) {} template tref4::tref4 ( tvec4 const & v ) : x(v.x), y(v.y), z(v.z), w(v.w) {} template tref4& tref4::operator= ( tref4 const & r ) { x = r.x; y = r.y; z = r.z; w = r.w; return *this; } template tref4& tref4::operator= ( tvec4 const & v ) { x = v.x; y = v.y; z = v.z; w = v.w; return *this; } template GLM_FUNC_QUALIFIER tvec4 tref4::operator() () { return tvec4(this->x, this->y, this->z, this->w); } }//namespace detail }//namespace glm