From 74c6854fd8dcbaee736ac0421805ff1e03c4a1e2 Mon Sep 17 00:00:00 2001 From: iamn1ck Date: Sun, 19 Feb 2017 07:00:34 -0600 Subject: -quadtree and opengl rendering are now in the master branch ! -using sdl_rect for location and size ended up being not so great due to it not having floats, so we reverted back to using location -much, much refractoring is now needed --- inc/glm/detail/type_vec1.inl | 616 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 616 insertions(+) create mode 100644 inc/glm/detail/type_vec1.inl (limited to 'inc/glm/detail/type_vec1.inl') diff --git a/inc/glm/detail/type_vec1.inl b/inc/glm/detail/type_vec1.inl new file mode 100644 index 0000000..15a44e7 --- /dev/null +++ b/inc/glm/detail/type_vec1.inl @@ -0,0 +1,616 @@ +/////////////////////////////////////////////////////////////////////////////////// +/// 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_vec1.inl +/// @date 2008-08-25 / 2011-06-15 +/// @author Christophe Riccio +/////////////////////////////////////////////////////////////////////////////////// + +namespace glm +{ + ////////////////////////////////////// + // Implicit basic constructors + + template + GLM_FUNC_QUALIFIER tvec1::tvec1() +# ifndef GLM_FORCE_NO_CTOR_INIT + : x(0) +# endif + {} + + template + GLM_FUNC_QUALIFIER tvec1::tvec1(tvec1 const & v) + : x(v.x) + {} + + template + template + GLM_FUNC_QUALIFIER tvec1::tvec1(tvec1 const & v) + : x(v.x) + {} + + ////////////////////////////////////// + // Explicit basic constructors + + template + GLM_FUNC_QUALIFIER tvec1::tvec1(ctor) + {} + + template + GLM_FUNC_QUALIFIER tvec1::tvec1(T const & s) + : x(s) + {} + + ////////////////////////////////////// + // Conversion vector constructors + + template + template + GLM_FUNC_QUALIFIER tvec1::tvec1(tvec1 const & v) + : x(static_cast(v.x)) + {} + + template + template + GLM_FUNC_QUALIFIER tvec1::tvec1(tvec2 const & v) + : x(static_cast(v.x)) + {} + + template + template + GLM_FUNC_QUALIFIER tvec1::tvec1(tvec3 const & v) + : x(static_cast(v.x)) + {} + + template + template + GLM_FUNC_QUALIFIER tvec1::tvec1(tvec4 const & v) + : x(static_cast(v.x)) + {} + + ////////////////////////////////////// + // Component accesses + +# ifdef GLM_FORCE_SIZE_FUNC + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tvec1::size_type tvec1::size() const + { + return 1; + } + + template + GLM_FUNC_QUALIFIER T & tvec1::operator[](typename tvec1::size_type i) + { + assert(i >= 0 && static_cast(i) < detail::component_count(*this)); + return (&x)[i]; + } + + template + GLM_FUNC_QUALIFIER T const & tvec1::operator[](typename tvec1::size_type i) const + { + assert(i >= 0 && static_cast(i) < detail::component_count(*this)); + return (&x)[i]; + } +# else + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tvec1::length_type tvec1::length() const + { + return 1; + } + + template + GLM_FUNC_QUALIFIER T & tvec1::operator[](typename tvec1::length_type i) + { + assert(i >= 0 && static_cast(i) < detail::component_count(*this)); + return (&x)[i]; + } + + template + GLM_FUNC_QUALIFIER T const & tvec1::operator[](typename tvec1::length_type i) const + { + assert(i >= 0 && static_cast(i) < detail::component_count(*this)); + return (&x)[i]; + } +# endif//GLM_FORCE_SIZE_FUNC + + ////////////////////////////////////// + // 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 = static_cast(v.x); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator+=(U const & s) + { + this->x += static_cast(s); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator+=(tvec1 const & v) + { + this->x += static_cast(v.x); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator-=(U const & s) + { + this->x -= static_cast(s); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator-=(tvec1 const & v) + { + this->x -= static_cast(v.x); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator*=(U const & s) + { + this->x *= static_cast(s); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator*=(tvec1 const & v) + { + this->x *= static_cast(v.x); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator/=(U const & s) + { + this->x /= static_cast(s); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator/=(tvec1 const & v) + { + this->x /= static_cast(v.x); + return *this; + } + + ////////////////////////////////////// + // Increment and decrement operators + + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator++() + { + ++this->x; + return *this; + } + + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator--() + { + --this->x; + return *this; + } + + template + GLM_FUNC_QUALIFIER tvec1 tvec1::operator++(int) + { + tvec1 Result(*this); + ++*this; + return Result; + } + + template + GLM_FUNC_QUALIFIER tvec1 tvec1::operator--(int) + { + tvec1 Result(*this); + --*this; + return Result; + } + + ////////////////////////////////////// + // 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 %= static_cast(s); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator%=(tvec1 const & v) + { + this->x %= static_cast(v.x); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator&=(U const & s) + { + this->x &= static_cast(s); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator&=(tvec1 const & v) + { + this->x &= static_cast(v.x); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator|=(U const & s) + { + this->x |= static_cast(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 ^= static_cast(s); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator^=(tvec1 const & v) + { + this->x ^= static_cast(v.x); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator<<=(U const & s) + { + this->x <<= static_cast(s); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator<<=(tvec1 const & v) + { + this->x <<= static_cast(v.x); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator>>=(U const & s) + { + this->x >>= static_cast(s); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER tvec1 & tvec1::operator>>=(tvec1 const & v) + { + this->x >>= static_cast(v.x); + return *this; + } + + ////////////////////////////////////// + // Binary arithmetic operators + + template + GLM_FUNC_QUALIFIER tvec1 operator+(tvec1 const & v, T const & s) + { + return tvec1( + v.x + s); + } + + template + GLM_FUNC_QUALIFIER tvec1 operator+(T 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, T const & s) + { + return tvec1( + v.x - s); + } + + template + GLM_FUNC_QUALIFIER tvec1 operator-(T 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, T const & s) + { + return tvec1( + v.x * s); + } + + template + GLM_FUNC_QUALIFIER tvec1 operator*(T 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, T const & s) + { + return tvec1( + v.x / s); + } + + template + GLM_FUNC_QUALIFIER tvec1 operator/(T 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, T const & s) + { + return tvec1( + v.x % s); + } + + template + GLM_FUNC_QUALIFIER tvec1 operator%(T 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, T const & s) + { + return tvec1( + v.x & s); + } + + template + GLM_FUNC_QUALIFIER tvec1 operator&(T 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, T const & s) + { + return tvec1( + v.x | s); + } + + template + GLM_FUNC_QUALIFIER tvec1 operator|(T 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, T const & s) + { + return tvec1( + v.x ^ s); + } + + template + GLM_FUNC_QUALIFIER tvec1 operator^(T 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, T const & s) + { + return tvec1( + v.x << s); + } + + template + GLM_FUNC_QUALIFIER tvec1 operator<<(T 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, T const & s) + { + return tvec1( + v.x >> s); + } + + template + GLM_FUNC_QUALIFIER tvec1 operator>>(T 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); + } +}//namespace glm -- cgit v1.2.3