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_POINT_H_
00036 #define _GMTL_POINT_H_
00037
00038 #include <gmtl/VecBase.h>
00039
00040 namespace gmtl
00041 {
00042
00057 template<class DATA_TYPE, unsigned SIZE>
00058 class Point : public VecBase<DATA_TYPE, SIZE>
00059 {
00060 public:
00061 typedef DATA_TYPE DataType;
00062 enum Params { Size = SIZE };
00063
00065 typedef VecBase<DATA_TYPE, SIZE> BaseType;
00066
00067 public:
00070 Point()
00071 {
00072 for (unsigned i = 0; i < SIZE; ++i)
00073 this->mData[i] = (DATA_TYPE)0;
00074 }
00075
00080 Point(const Point<DATA_TYPE, SIZE>& rVec)
00081 : BaseType(static_cast<BaseType>(rVec))
00082 {;}
00083 Point(const VecBase<DATA_TYPE, SIZE>& rVec)
00084 : BaseType(rVec)
00085 {;}
00086
00090 Point(const DATA_TYPE& val0,const DATA_TYPE& val1)
00091 : BaseType(val0, val1)
00092 {
00093
00094 gmtlASSERT( SIZE == 2 && "out of bounds element access in Point" );
00095 }
00096
00100 Point(const DATA_TYPE& val0,const DATA_TYPE& val1,const DATA_TYPE& val2)
00101 : BaseType(val0, val1, val2)
00102 {
00103
00104 gmtlASSERT( SIZE == 3 && "out of bounds element access in Point" );
00105 }
00106
00110 Point(const DATA_TYPE& val0,const DATA_TYPE& val1,const DATA_TYPE& val2,const DATA_TYPE& val3)
00111 : BaseType(val0, val1, val2, val3)
00112 {
00113
00114 gmtlASSERT( SIZE == 4 && "out of bounds element access in Point" );
00115 }
00117
00118 };
00119
00120
00121 typedef Point<int,2> Point2i;
00122 typedef Point<float,2> Point2f;
00123 typedef Point<double,2> Point2d;
00124 typedef Point<int, 3> Point3i;
00125 typedef Point<float,3> Point3f;
00126 typedef Point<double,3> Point3d;
00127 typedef Point<int, 4> Point4i;
00128 typedef Point<float,4> Point4f;
00129 typedef Point<double,4> Point4d;
00130
00131
00132 };
00133
00134 #endif