xy.cpp
Go to the documentation of this file.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
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045 #include "prim_common.h"
00046 #include "xy.h"
00047
00048 namespace lass
00049 {
00050 namespace prim
00051 {
00052
00053
00054
00055 XY::XY():
00056 value_(0)
00057 {
00058 }
00059
00060
00061
00062
00063
00064
00065 XY::XY(char iAxis)
00066 {
00067 reset(iAxis);
00068 }
00069
00070
00071
00072
00073
00074
00075 XY::XY(int iValue):
00076 value_(iValue)
00077 {
00078 }
00079
00080
00081
00082
00083
00084 XY::XY(const std::string& iAxis)
00085 {
00086 if (iAxis.length() != 1)
00087 {
00088 LASS_THROW("Invalid parameter iAxis '" << iAxis << "'. It must be a single character.");
00089 }
00090 reset(iAxis[0]);
00091 }
00092
00093
00094
00095
00096
00097 const char XY::axis() const
00098 {
00099 LASS_ASSERT(value_ >= 0 && value_ < dimension);
00100 const char axes[] = { 'x', 'y' };
00101 return axes[value_];
00102 }
00103
00104
00105
00106 XY& XY::operator++()
00107 {
00108 LASS_ASSERT(value_ >= 0 && value_ < dimension);
00109 ++value_;
00110 return *this;
00111 }
00112
00113
00114
00115 XY& XY::operator--()
00116 {
00117 LASS_ASSERT(value_ >= 0 && value_ < dimension);
00118 --value_;
00119 return *this;
00120 }
00121
00122
00123
00124 XY XY::operator++(int)
00125 {
00126 XY result(*this);
00127 ++*this;
00128 return result;
00129 }
00130
00131
00132
00133 XY XY::operator--(int)
00134 {
00135 XY result(*this);
00136 --*this;
00137 return result;
00138 }
00139
00140
00141
00142 XY& XY::operator+=(int iOffset)
00143 {
00144 value_ += iOffset;
00145 return *this;
00146 }
00147
00148
00149
00150 XY& XY::operator-=(int iOffset)
00151 {
00152 value_ -= iOffset;
00153 return *this;
00154 }
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165 inline void XY::reset(char iAxis)
00166 {
00167 switch (iAxis)
00168 {
00169 case 0:
00170 case 'x':
00171 case 'X':
00172 value_ = 0;
00173 break;
00174
00175 case 1:
00176 case 'y':
00177 case 'Y':
00178 value_ = 1;
00179 break;
00180
00181 default:
00182 LASS_THROW("Invalid parameter iAxis '" << iAxis << "'. Try 'x', 'X', 'y' or 'Y'.");
00183 }
00184 }
00185
00186
00187
00188
00189
00190
00191
00192 bool operator==(const XY& iA, const XY& iB)
00193 {
00194 return iA.value_ == iB.value_;
00195 }
00196
00197
00198
00199
00200
00201 bool operator==(const XY& iA, char iB)
00202 {
00203 return iA.axis() == iB;
00204 }
00205
00206
00207
00208
00209
00210 bool operator==(char iA, const XY& iB)
00211 {
00212 return iA == iB.axis();
00213 }
00214
00215
00216
00217
00218
00219 bool operator==(const XY& iA, const std::string& iB)
00220 {
00221 return std::string(1, iA.axis()) == iB;
00222 }
00223
00224
00225
00226
00227
00228 bool operator==(const std::string& iA, const XY& iB)
00229 {
00230 return iA == std::string(1, iB.axis());
00231 }
00232
00233
00234
00235
00236
00237
00238 bool operator!=(const XY& iA, const XY& iB)
00239 {
00240 return !(iA == iB);
00241 }
00242
00243
00244
00245
00246
00247
00248 bool operator!=(const XY& iA, char iB)
00249 {
00250 return !(iA == iB);
00251 }
00252
00253
00254
00255
00256
00257
00258 bool operator!=(char iA, const XY& iB)
00259 {
00260 return !(iA == iB);
00261 }
00262
00263
00264
00265
00266
00267
00268 bool operator!=(const XY& iA, const std::string& iB)
00269 {
00270 return !(iA == iB);
00271 }
00272
00273
00274
00275
00276
00277
00278 bool operator!=(const std::string& iA, const XY& iB)
00279 {
00280 return !(iA == iB);
00281 }
00282
00283
00284
00285
00286
00287 XY operator+(const XY& iA, int iOffset)
00288 {
00289 XY result(iA);
00290 result += iOffset;
00291 return result;
00292 }
00293
00294
00295
00296
00297
00298 XY operator-(const XY& iA, int iOffset)
00299 {
00300 XY result(iA);
00301 result -= iOffset;
00302 return result;
00303 }
00304
00305
00306
00307 }
00308
00309 }
00310
00311