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