00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef _GMTL_VEC_H_
00036 #define _GMTL_VEC_H_
00037
00038 #include <gmtl/VecBase.h>
00039
00040 namespace gmtl
00041 {
00042
00055 template<class DATA_TYPE, unsigned SIZE>
00056 class Vec : public VecBase<DATA_TYPE, SIZE>
00057 {
00058 public:
00060 typedef DATA_TYPE DataType;
00061
00063 enum Params { Size = SIZE };
00064
00066 typedef VecBase<DATA_TYPE, SIZE> BaseType;
00067
00068 public:
00072 Vec()
00073 {
00074 for (unsigned i = 0; i < SIZE; ++i)
00075 this->mData[i] = (DATA_TYPE)0;
00076 }
00077
00079
00080
00085 Vec( const Vec<DATA_TYPE, SIZE>& rVec )
00086 : BaseType( static_cast<BaseType>( rVec ) )
00087 {
00088 }
00089
00090 Vec( const VecBase<DATA_TYPE, SIZE>& rVec )
00091 : BaseType( rVec )
00092 {
00093 }
00094
00098 Vec(const DATA_TYPE& val0,const DATA_TYPE& val1)
00099 : BaseType(val0, val1)
00100 {
00101
00102 gmtlASSERT( SIZE == 2 && "out of bounds element access in Point" );
00103 }
00104
00105 Vec(const DATA_TYPE& val0,const DATA_TYPE& val1,const DATA_TYPE& val2)
00106 : BaseType(val0, val1, val2)
00107 {
00108
00109 gmtlASSERT( SIZE == 3 && "out of bounds element access in Point" );
00110 }
00111
00112 Vec(const DATA_TYPE& val0,const DATA_TYPE& val1,const DATA_TYPE& val2,const DATA_TYPE& val3)
00113 : BaseType(val0, val1, val2, val3)
00114 {
00115
00116 gmtlASSERT( SIZE == 4 && "out of bounds element access in Point" );
00117 }
00119 };
00120
00121
00122 typedef Vec<int, 2> Vec2i;
00123 typedef Vec<float,2> Vec2f;
00124 typedef Vec<double,2> Vec2d;
00125 typedef Vec<int, 3> Vec3i;
00126 typedef Vec<float,3> Vec3f;
00127 typedef Vec<double,3> Vec3d;
00128 typedef Vec<int, 4> Vec4i;
00129 typedef Vec<float,4> Vec4f;
00130 typedef Vec<double,4> Vec4d;
00131
00132 };
00133
00134 #endif