type_vec3.hpp
00001 
00002 // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
00004 // Created : 2008-08-22
00005 // Updated : 2010-02-03
00006 // Licence : This source is under MIT License
00007 // File    : glm/core/type_tvec3.hpp
00009 
00010 #ifndef glm_core_type_gentype3
00011 #define glm_core_type_gentype3
00012 
00013 #include "type_vec.hpp"
00014 #include "type_float.hpp"
00015 #include "type_int.hpp"
00016 #include "type_size.hpp"
00017 #include "_swizzle.hpp"
00018 
00019 namespace glm
00020 {
00021         namespace test
00022         {
00023                 void main_vec3();
00024         }//namespace test
00025 
00026         namespace detail
00027         {
00028                 template <typename T> struct tref2;
00029                 template <typename T> struct tref3;
00030                 template <typename T> struct tref4;
00031                 template <typename T> struct tvec2;
00032                 template <typename T> struct tvec4;
00033 
00036                 template <typename T>
00037                 struct tvec3
00038                 {       
00039                         enum ctor{null};
00040 
00041                         typedef T value_type;
00042                         typedef std::size_t size_type;
00043                         GLM_FUNC_DECL size_type length() const;
00044                         static GLM_FUNC_DECL size_type value_size();
00045 
00046                         typedef tvec3<T> type;
00047                         typedef tvec3<bool> bool_type;
00048 
00050                         // Data
00051 
00052 #               if(GLM_COMPONENT == GLM_COMPONENT_ONLY_XYZW)
00053                         value_type x, y, z;
00054 #               elif(GLM_COMPONENT == GLM_COMPONENT_MS_EXT)
00055                         union 
00056                         {
00057                                 struct{value_type x, y, z;};
00058                                 struct{value_type r, g, b;};
00059                                 struct{value_type s, t, p;};
00060                         };
00061 #               else//(GLM_COMPONENT == GLM_COMPONENT_GLSL_NAMES)
00062                         union {value_type x, r, s;};
00063                         union {value_type y, g, t;};
00064                         union {value_type z, b, p;};
00065 #               endif//GLM_COMPONENT
00066 
00068                         // Accesses
00069 
00070                         GLM_FUNC_DECL value_type & operator[](size_type i);
00071                         GLM_FUNC_DECL value_type const & operator[](size_type i) const;
00072 
00074                         // Implicit basic constructors
00075 
00076                         GLM_FUNC_DECL tvec3();
00077                         GLM_FUNC_DECL tvec3(tvec3<T> const & v);
00078 
00080                         // Explicit basic constructors
00081 
00082                         GLM_FUNC_DECL explicit tvec3(
00083                                 ctor);
00084                         GLM_FUNC_DECL explicit tvec3(
00085                                 value_type const & s);
00086                         GLM_FUNC_DECL explicit tvec3(
00087                                 value_type const & s1, 
00088                                 value_type const & s2, 
00089                                 value_type const & s3);
00090 
00092                         // Swizzle constructors
00093 
00094                         GLM_FUNC_DECL tvec3(tref3<T> const & r);
00095 
00097                         // Convertion scalar constructors
00098 
00100                         template <typename U> 
00101                         GLM_FUNC_DECL explicit tvec3(
00102                                 U const & x);
00104                         template <typename U, typename V, typename W> 
00105                         GLM_FUNC_DECL explicit tvec3(
00106                                 U const & x, 
00107                                 V const & y, 
00108                                 W const & z);                   
00109 
00111                         // Convertion vector constructors
00112 
00114                         template <typename A, typename B> 
00115                         GLM_FUNC_DECL explicit tvec3(tvec2<A> const & v, B const & s);
00117                         template <typename A, typename B> 
00118                         GLM_FUNC_DECL explicit tvec3(A const & s, tvec2<B> const & v);
00120                         template <typename U> 
00121                         GLM_FUNC_DECL explicit tvec3(tvec3<U> const & v);
00123                         template <typename U> 
00124                         GLM_FUNC_DECL explicit tvec3(tvec4<U> const & v);
00125 
00127                         // Unary arithmetic operators
00128 
00129                         GLM_FUNC_DECL tvec3<T> & operator= (tvec3<T> const & v);
00130                         template <typename U> 
00131                         GLM_FUNC_DECL tvec3<T> & operator= (tvec3<U> const & v);
00132 
00133                         template <typename U> 
00134                         GLM_FUNC_DECL tvec3<T> & operator+=(U const & s);
00135                         template <typename U> 
00136                         GLM_FUNC_DECL tvec3<T> & operator+=(tvec3<U> const & v);
00137                         template <typename U> 
00138                         GLM_FUNC_DECL tvec3<T> & operator-=(U const & s);
00139                         template <typename U> 
00140                         GLM_FUNC_DECL tvec3<T> & operator-=(tvec3<U> const & v);
00141                         template <typename U> 
00142                         GLM_FUNC_DECL tvec3<T> & operator*=(U const & s);
00143                         template <typename U> 
00144                         GLM_FUNC_DECL tvec3<T> & operator*=(tvec3<U> const & v);
00145                         template <typename U> 
00146                         GLM_FUNC_DECL tvec3<T> & operator/=(U const & s);
00147                         template <typename U> 
00148                         GLM_FUNC_DECL tvec3<T> & operator/=(tvec3<U> const & v);
00149                         GLM_FUNC_DECL tvec3<T> & operator++();
00150                         GLM_FUNC_DECL tvec3<T> & operator--();
00151 
00153                         // Unary bit operators
00154 
00155                         template <typename U>
00156                         GLM_FUNC_DECL tvec3<T> & operator%= (U const & s);
00157                         template <typename U>
00158                         GLM_FUNC_DECL tvec3<T> & operator%= (tvec3<U> const & v);
00159                         template <typename U>
00160                         GLM_FUNC_DECL tvec3<T> & operator&= (U const & s);
00161                         template <typename U>
00162                         GLM_FUNC_DECL tvec3<T> & operator&= (tvec3<U> const & v);
00163                         template <typename U>
00164                         GLM_FUNC_DECL tvec3<T> & operator|= (U const & s);
00165                         template <typename U>
00166                         GLM_FUNC_DECL tvec3<T> & operator|= (tvec3<U> const & v);
00167                         template <typename U>
00168                         GLM_FUNC_DECL tvec3<T> & operator^= (U const & s);
00169                         template <typename U>
00170                         GLM_FUNC_DECL tvec3<T> & operator^= (tvec3<U> const & v);
00171                         template <typename U>
00172                         GLM_FUNC_DECL tvec3<T> & operator<<=(U const & s);
00173                         template <typename U>
00174                         GLM_FUNC_DECL tvec3<T> & operator<<=(tvec3<U> const & v);
00175                         template <typename U>
00176                         GLM_FUNC_DECL tvec3<T> & operator>>=(U const & s);
00177                         template <typename U>
00178                         GLM_FUNC_DECL tvec3<T> & operator>>=(tvec3<U> const & v);
00179 
00181                         // Swizzle operators
00182 
00183                         GLM_FUNC_DECL value_type swizzle(comp X) const;
00184                         GLM_FUNC_DECL tvec2<T> swizzle(comp X, comp Y) const;
00185                         GLM_FUNC_DECL tvec3<T> swizzle(comp X, comp Y, comp Z) const;
00186                         GLM_FUNC_DECL tvec4<T> swizzle(comp X, comp Y, comp Z, comp W) const;
00187                         GLM_FUNC_DECL tref3<T> swizzle(comp X, comp Y, comp Z);
00188                 };
00189 
00190                 template <typename T>
00191                 struct tref3
00192                 {
00193                         GLM_FUNC_DECL tref3(T & x, T & y, T & z);
00194                         GLM_FUNC_DECL tref3(tref3<T> const & r);
00195                         GLM_FUNC_DECL tref3(tvec3<T> const & v);
00196 
00197                         GLM_FUNC_DECL tref3<T> & operator= (tref3<T> const & r);
00198                         GLM_FUNC_DECL tref3<T> & operator= (tvec3<T> const & v);
00199 
00200                         T & x;
00201                         T & y;
00202                         T & z;
00203                 };
00204 
00205                 GLM_DETAIL_IS_VECTOR(tvec3);
00206         } //namespace detail
00207 
00208         namespace core{
00209         namespace type{
00210 
00211         namespace precision
00212         {
00217                 typedef detail::tvec3<highp_float>              highp_vec3;
00222                 typedef detail::tvec3<mediump_float>    mediump_vec3;
00227                 typedef detail::tvec3<lowp_float>               lowp_vec3;
00228 
00233                 typedef detail::tvec3<highp_int>                highp_ivec3;
00238                 typedef detail::tvec3<mediump_int>              mediump_ivec3;
00243                 typedef detail::tvec3<lowp_int>                 lowp_ivec3;
00244 
00249                 typedef detail::tvec3<highp_uint>               highp_uvec3;
00254                 typedef detail::tvec3<mediump_uint>             mediump_uvec3;
00259                 typedef detail::tvec3<lowp_uint>                lowp_uvec3;
00260         }
00261         //namespace precision
00262 
00263         }//namespace type
00264         }//namespace core
00265 }//namespace glm
00266 
00267 #ifndef GLM_EXTERNAL_TEMPLATE
00268 #include "type_vec3.inl"
00269 #endif
00270 
00271 #endif//glm_core_type_gentype3