/////////////////////////////////////////////////////////////////////////////////// /// 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_vec1.inl /// @date 2008-08-25 / 2011-06-15 /// @author Christophe Riccio /////////////////////////////////////////////////////////////////////////////////// namespace glm{ namespace detail { template GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tvec1::size_type tvec1::length() const { return 1; } ////////////////////////////////////// // Accesses template GLM_FUNC_QUALIFIER typename tvec1::value_type & tvec1::operator[] ( size_type i ) { assert(i < this->length()); return (&x)[i]; } template GLM_FUNC_QUALIFIER typename tvec1::value_type const & tvec1::operator[] ( size_type i ) const { assert(i < this->length()); return (&x)[i]; } ////////////////////////////////////// // Implicit basic constructors template GLM_FUNC_QUALIFIER tvec1::tvec1() : x(value_type(0)) {} template GLM_FUNC_QUALIFIER tvec1::tvec1 ( ctor ) {} template GLM_FUNC_QUALIFIER tvec1::tvec1 ( tvec1 const & v ) : x(v.x) {} ////////////////////////////////////// // Explicit basic constructors template GLM_FUNC_QUALIFIER tvec1::tvec1 ( value_type const & s ) : x(s) {} ////////////////////////////////////// // Swizzle constructors template GLM_FUNC_QUALIFIER tvec1::tvec1 ( tref1 const & r ) : x(r.x) {} ////////////////////////////////////// // Convertion scalar constructors template template GLM_FUNC_QUALIFIER tvec1::tvec1 ( U const & s ) : x(value_type(s)) {} ////////////////////////////////////// // Convertion vector constructors template template GLM_FUNC_QUALIFIER tvec1::tvec1 ( tvec2 const & v ) : x(value_type(v.x)) {} template template GLM_FUNC_QUALIFIER tvec1::tvec1 ( tvec3 const & v ) : x(value_type(v.x)) {} template template GLM_FUNC_QUALIFIER tvec1::tvec1 ( tvec4 const & v ) : x(value_type(v.x)) {} ////////////////////////////////////// // Unary arithmetic operators template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator= ( tvec1 const & v ) { this->x = v.x; return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator= ( tvec1 const & v ) { this->x = T(v.x); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator+= ( U const & s ) { this->x += T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator+= ( tvec1 const & v ) { this->x += T(v.x); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator-= ( U const & s ) { this->x -= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator-= ( tvec1 const & v ) { this->x -= T(v.x); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator*= ( U const & s ) { this->x *= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator*= ( tvec1 const & v ) { this->x *= T(v.x); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator/= ( U const & s ) { this->x /= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator/= ( tvec1 const & v ) { this->x /= T(v.x); return *this; } template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator++() { ++this->x; return *this; } template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator--() { --this->x; return *this; } ////////////////////////////////////// // Boolean operators template GLM_FUNC_QUALIFIER bool operator== ( tvec1 const & v1, tvec1 const & v2 ) { return (v1.x == v2.x); } template GLM_FUNC_QUALIFIER bool operator!= ( tvec1 const & v1, tvec1 const & v2 ) { return (v1.x != v2.x); } ////////////////////////////////////// // Unary bit operators template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator%= ( U const & s ) { this->x %= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator%= ( tvec1 const & v ) { this->x %= T(v.x); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator&= ( U const & s ) { this->x &= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator&= ( tvec1 const & v ) { this->x &= T(v.x); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator|= ( U const & s ) { this->x |= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator|= ( tvec1 const & v ) { this->x |= U(v.x); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator^= ( U const & s ) { this->x ^= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator^= ( tvec1 const & v ) { this->x ^= T(v.x); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator<<= ( U const & s ) { this->x <<= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator<<= ( tvec1 const & v ) { this->x <<= T(v.x); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator>>= ( U const & s ) { this->x >>= T(s); return *this; } template template GLM_FUNC_QUALIFIER tvec1 & tvec1::operator>>= ( tvec1 const & v ) { this->x >>= T(v.x); return *this; } ////////////////////////////////////// // Swizzle operators template GLM_FUNC_QUALIFIER T tvec1::swizzle(comp x) const { return (*this)[x]; } template GLM_FUNC_QUALIFIER tvec2 tvec1::swizzle ( comp x, comp y ) const { return tvec2( (*this)[x], (*this)[y]); } template GLM_FUNC_QUALIFIER tvec3 tvec1::swizzle ( comp x, comp y, comp z ) const { return tvec3( (*this)[x], (*this)[y], (*this)[z]); } template GLM_FUNC_QUALIFIER tvec4 tvec1::swizzle ( comp x, comp y, comp z, comp w ) const { return tvec4( (*this)[x], (*this)[y], (*this)[z], (*this)[w]); } template GLM_FUNC_QUALIFIER tref1 tvec1::swizzle ( comp x ) { return tref1( (*this)[x]); } ////////////////////////////////////// // Binary arithmetic operators template GLM_FUNC_QUALIFIER tvec1 operator+ ( tvec1 const & v, typename tvec1::value_type const & s ) { return tvec1( v.x + s); } template GLM_FUNC_QUALIFIER tvec1 operator+ ( typename tvec1::value_type const & s, tvec1 const & v ) { return tvec1( s + v.x); } template GLM_FUNC_QUALIFIER tvec1 operator+ ( tvec1 const & v1, tvec1 const & v2 ) { return tvec1( v1.x + v2.x); } //operator- template GLM_FUNC_QUALIFIER tvec1 operator- ( tvec1 const & v, typename tvec1::value_type const & s ) { return tvec1( v.x - s); } template GLM_FUNC_QUALIFIER tvec1 operator- ( typename tvec1::value_type const & s, tvec1 const & v ) { return tvec1( s - v.x); } template GLM_FUNC_QUALIFIER tvec1 operator- ( tvec1 const & v1, tvec1 const & v2 ) { return tvec1( v1.x - v2.x); } //operator* template GLM_FUNC_QUALIFIER tvec1 operator* ( tvec1 const & v, typename tvec1::value_type const & s ) { return tvec1( v.x * s); } template GLM_FUNC_QUALIFIER tvec1 operator* ( typename tvec1::value_type const & s, tvec1 const & v ) { return tvec1( s * v.x); } template GLM_FUNC_QUALIFIER tvec1 operator* ( tvec1 const & v1, tvec1 const & v2 ) { return tvec1( v1.x * v2.x); } //operator/ template GLM_FUNC_QUALIFIER tvec1 operator/ ( tvec1 const & v, typename tvec1::value_type const & s ) { return tvec1( v.x / s); } template GLM_FUNC_QUALIFIER tvec1 operator/ ( typename tvec1::value_type const & s, tvec1 const & v ) { return tvec1( s / v.x); } template GLM_FUNC_QUALIFIER tvec1 operator/ ( tvec1 const & v1, tvec1 const & v2 ) { return tvec1( v1.x / v2.x); } // Unary constant operators template GLM_FUNC_QUALIFIER tvec1 operator- ( tvec1 const & v ) { return tvec1( -v.x); } template GLM_FUNC_QUALIFIER tvec1 operator++ ( tvec1 const & v, int ) { return tvec1( v.x + T(1)); } template GLM_FUNC_QUALIFIER tvec1 operator-- ( tvec1 const & v, int ) { return tvec1( v.x - T(1)); } ////////////////////////////////////// // Binary bit operators template GLM_FUNC_QUALIFIER tvec1 operator% ( tvec1 const & v, typename tvec1::value_type const & s ) { return tvec1( v.x % s); } template GLM_FUNC_QUALIFIER tvec1 operator% ( typename tvec1::value_type const & s, tvec1 const & v ) { return tvec1( s % v.x); } template GLM_FUNC_QUALIFIER tvec1 operator% ( tvec1 const & v1, tvec1 const & v2 ) { return tvec1( v1.x % v2.x); } template GLM_FUNC_QUALIFIER tvec1 operator& ( tvec1 const & v, typename tvec1::value_type const & s ) { return tvec1( v.x & s); } template GLM_FUNC_QUALIFIER tvec1 operator& ( typename tvec1::value_type const & s, tvec1 const & v ) { return tvec1( s & v.x); } template GLM_FUNC_QUALIFIER tvec1 operator& ( tvec1 const & v1, tvec1 const & v2 ) { return tvec1( v1.x & v2.x); } template GLM_FUNC_QUALIFIER tvec1 operator| ( tvec1 const & v, typename tvec1::value_type const & s ) { return tvec1( v.x | s); } template GLM_FUNC_QUALIFIER tvec1 operator| ( typename tvec1::value_type const & s, tvec1 const & v ) { return tvec1( s | v.x); } template GLM_FUNC_QUALIFIER tvec1 operator| ( tvec1 const & v1, tvec1 const & v2 ) { return tvec1( v1.x | v2.x); } template GLM_FUNC_QUALIFIER tvec1 operator^ ( tvec1 const & v, typename tvec1::value_type const & s ) { return tvec1( v.x ^ s); } template GLM_FUNC_QUALIFIER tvec1 operator^ ( typename tvec1::value_type const & s, tvec1 const & v ) { return tvec1( s ^ v.x); } template GLM_FUNC_QUALIFIER tvec1 operator^ ( tvec1 const & v1, tvec1 const & v2 ) { return tvec1( v1.x ^ v2.x); } template GLM_FUNC_QUALIFIER tvec1 operator<< ( tvec1 const & v, typename tvec1::value_type const & s ) { return tvec1( v.x << s); } template GLM_FUNC_QUALIFIER tvec1 operator<< ( typename tvec1::value_type const & s, tvec1 const & v ) { return tvec1( s << v.x); } template GLM_FUNC_QUALIFIER tvec1 operator<< ( tvec1 const & v1, tvec1 const & v2 ) { return tvec1( v1.x << v2.x); } template GLM_FUNC_QUALIFIER tvec1 operator>> ( tvec1 const & v, typename tvec1::value_type const & s ) { return tvec1( v.x >> s); } template GLM_FUNC_QUALIFIER tvec1 operator>> ( typename tvec1::value_type const & s, tvec1 const & v ) { return tvec1( s >> v.x); } template GLM_FUNC_QUALIFIER tvec1 operator>> ( tvec1 const & v1, tvec1 const & v2 ) { return tvec1( v1.x >> v2.x); } template GLM_FUNC_QUALIFIER tvec1 operator~ ( tvec1 const & v ) { return tvec1( ~v.x); } ////////////////////////////////////// // tref definition template GLM_FUNC_QUALIFIER tref1::tref1 ( T & x ) : x(x) {} template GLM_FUNC_QUALIFIER tref1::tref1 ( tref1 const & r ) : x(r.x) {} template GLM_FUNC_QUALIFIER tref1::tref1 ( tvec1 const & v ) : x(v.x) {} template GLM_FUNC_QUALIFIER tref1 & tref1::operator= ( tref1 const & r ) { x = r.x; return *this; } template GLM_FUNC_QUALIFIER tref1 & tref1::operator= ( tvec1 const & v ) { x = v.x; return *this; } }//namespace detail }//namespace glm