Changeset 8729 for code/trunk/src/libraries/util/Math.h
- Timestamp:
- Jul 4, 2011, 2:47:44 AM (14 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
-
code/trunk/src/libraries/util/Math.h
r8706 r8729 299 299 300 300 _UtilExport unsigned long getUniqueNumber(); 301 302 /**303 @brief A Vector class containing two integers @a x and @a y.304 */305 class IntVector2306 {307 public:308 IntVector2() : x(0), y(0) { }309 IntVector2(int _x, int _y) : x(_x), y(_y) { }310 int x;311 int y;312 };313 314 /**315 @brief A Vector class containing three integers @a x, @a y, and @a z.316 */317 class IntVector3318 {319 public:320 IntVector3() : x(0), y(0), z(0) { }321 IntVector3(int _x, int _y, int _z) : x(_x), y(_y), z(_z) { }322 int x;323 int y;324 int z;325 };326 301 } 327 302
Note: See TracChangeset
for help on using the changeset viewer.