Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
avect.h
Go to the documentation of this file.
1 #pragma once
2 
9 #include "vect.h"
10 
12 
29 namespace AVector2Util {
30  static const double nullValue_ = 0.0;
31 };
32 
34 
43 template <class T> class AVector2 {
44 public:
45  // Creators
47 #ifdef _DEBUG
48  AVector2() { z_ = std::numeric_limits<T>::max(); }
49 #else
50 #pragma warning(push)
51 #pragma warning(disable:26495) // Init warning- not initializing on purpose
52  AVector2() { }
53 #pragma warning(pop)
54 #endif
55  AVector2(const AVector2 &av) : z_(av.z_) { }
58  explicit AVector2(const T &t) : z_(t) { }
60  explicit AVector2(const Vector2<T> &) : z_(0) { }
62  explicit AVector2(const Vector3<T> &v) : z_(v.z_) { }
63 
65  const T &x() const { return AVector2Util::nullValue_; }
67  const T &y() const { return AVector2Util::nullValue_; }
69  const T &z() const { return z_; }
71  const T &dof(UInt u) const {
72 #ifdef _DEBUG
73  if (u>2) throw std::runtime_error("Vector index out of range.");
74 #endif
75  if (u==2) return z_;
76  return AVector2Util::nullValue_;
77  }
78 
80  T &rz() { return z_; }
82  T &rdof(UInt u) {
83 #ifdef _DEBUG
84  if (u!=2) throw std::runtime_error("Vector index out of range.");
85 #endif
86  u;
87  return z_;
88  }
89 
90  const T &operator[](UInt u) const { return dof(u); }
91  T &operator[](UInt u) { return rdof(u); }
92 
93  T fsum() const { return std::abs(z_); }
94  T mag2() const { return z_*z_; }
95  T mag() const { return std::abs(z_); }
96  T area() const { return 0; }
97  T volume() const { return 0; }
98  AVector2<T> unit() const { AVector2<T> v(*this); if (z_) {v.z_ = z_ < 0 ? -1 : 1;} return v; }
99  AVector2<T> abs() const { return std::abs(z_); }
100  void fill(const T &d) { z_=d; }
101  T maxComp() const { return std::max(0.0,z_); }
102  T minComp() const { return std::min(0.0,z_); }
103 
104  bool operator==(const AVector2<T> &av) const { return z_==av.z_; }
105  bool operator!=(const AVector2<T> &av) const { return z_!=av.z_; }
106  bool operator<(const AVector2<T> &av) const { return z_ < av.z_; }
107  bool operator>(const AVector2<T> &av) const { return z_ > av.z_; }
108 
109  const AVector2<T> &operator+=(const AVector2<T> &v) { z_ += v.z_; return *this; }
110  const AVector2<T> &operator-=(const AVector2<T> &v) { z_ -= v.z_; return *this; }
111  const AVector2<T> &operator*=(const AVector2<T> &v) { z_ *= v.z_; return *this; }
112  const AVector2<T> &operator*=(const T &t) { z_ *= t; return *this; }
113  const AVector2<T> &operator/=(const AVector2<T> &v) { z_ /= v.z_; return *this; }
114  const AVector2<T> &operator/=(const T &t) { z_ /= t; return *this; }
115 
116  AVector2<T> operator+(const AVector2<T> &av) const { AVector2<T> out(z_+av.z_); return out; }
117  AVector2<T> operator-(const AVector2<T> &av) const { AVector2<T> out(z_-av.z_); return out; }
118  AVector2<T> operator*(const AVector2<T> &av) const { AVector2<T> out(z_*av.z_); return out; }
119  AVector2<T> operator*(const T &t) const { AVector2<T> out(z_*t); return out; }
120  AVector2<T> operator/(const AVector2<T> &av) const { AVector2<T> out(z_/av.z_); return out; }
121  AVector2<T> operator/(const T &t) const { AVector2<T> out(z_/t); return out; }
122 
123  T operator&(const AVector2<T> &) const { return 0; }
124  Vector2<T> operator&(const Vector2<T> &v) const { Vector2<T> out(-z_*v.y(),z_*v.x()); return out; }
125  Vector3<T> operator&(const Vector3<T> &v) const { Vector3<T> out(-z_*v.y(),z_*v.x(),0); return out; }
126 
127  T operator|(const AVector2<T> &v) const { return z_*v.z(); }
128  T operator|(const Vector2<T> &) const { return 0; }
129  T operator|(const Vector3<T> &v) const { return z_*v.z(); }
130 
131  Vector2<T> toVector2() const { return Vector2<T>(0); }
132  Vector3<T> toVector3() const { return Vector3<T>(0,0,z_); }
133 
134 private:
135  T z_;
136 };
137 
140 template <class T> inline Vector2<T> operator&(const Vector2<T> &v,const AVector2<T> &av) {
141  Vector2<T> out(v.y()*av.z(),-v.x()*av.z());
142  return out;
143 }
144 
147 template <class T> inline Vector3<T> operator&(const Vector3<T> &v,const AVector2<T> &av) {
148  Vector3<T> out(v.y()*av.z(),-v.x()*av.z(),0);
149  return out;
150 }
151 
154 template <class T> inline AVector2<T> operator&(const Vector2<T> &v1,const Vector2<T> &v2) {
155  AVector2<T> out((v1.x()*v2.y()) - (v1.y()*v2.x()));
156  return out;
157 }
158 
161 template <class T> inline T operator|(const Vector2<T> &,const AVector2<T> &) { return 0; }
162 
163 
164 
165 
167 
176 template <class T> class AVector3 : public Vector3<T> {
177 public:
178  using Vector3<T>::Vector3;
179  AVector3() : Vector3<T>() { }
180  AVector3(const Vector3<T> &v) : Vector3<T>(v) { }
182  explicit AVector3(const AVector2<T> &v) : Vector3<T>(0,0,v.z()) { }
183 
185  Vector2<T> toVector2() const { return Vector2<T>(this->x(),this->y()); }
187  const Vector3<T> &toVector3() const { return *this; }
188 };
189 
190 // Naming convention for most commonly used types.
195 
200 
201 // Conversion routines.
204 template <class T> inline DAVect2 toDAVect2(const AVector2<T> &v) { DAVect2 dv2(to<Double>(v.z())); return dv2; }
207 template <class T> inline FAVect2 toFAVect2(const AVector2<T> &v) { FAVect2 fv2(to<Float>(v.z())); return fv2; }
210 template <class T> inline IAVect2 toIAVect2(const AVector2<T> &v) { IAVect2 iv2(to<Int>(v.z())); return iv2; }
213 template <class T> inline UAVect2 toUAVect2(const AVector2<T> &v) { UAVect2 uv2(to<UInt>(v.z())); return uv2; }
214 
217 template <class T> inline DAVect3 toDAVect3(const Vector3<T> &v) {
218  DAVect3 dv3(to<Double>(v.x()),to<Double>(v.y()),to<Double>(v.z()));
219  return dv3;
220 }
221 
224 template <class T> inline FAVect3 toFAVect3(const Vector3<T> &v) {
225  FAVect3 fv3(to<Float>(v.x()),to<Float>(v.y()),to<Float>(v.z()));
226  return fv3;
227 }
228 
231 template <class T> inline IAVect3 toAIVect3(const Vector3<T> &v) {
232  IAVect3 iv3(to<Int>(v.x()),to<Int>(v.y()),to<Int>(v.z()));
233  return iv3;
234 }
235 
238 template <class T> inline UAVect3 toAUVect3(const Vector3<T> &v) {
239  UAVect3 uv3(to<UInt>(v.x()),to<UInt>(v.y()),to<UInt>(v.z()));
240  return uv3;
241 }
242 
245 template <class T> inline Vector2<T> toVect2(const AVector2<T> &) { return Vector2<T>(0); }
248 template <class T> inline Vector3<T> toVect3(const AVector2<T> &v) { return Vector3<T>(0,0,v.z()); }
251 template <class T> inline Vector2<T> toVect2(const AVector3<T> &v) { return Vector2<T>(v.x(),v.y()); }
254 template <class T> inline const Vector3<T> &toVect3(const AVector3<T> &v) { return v; }
255 
258 template <class T> inline const AVector2<T> &toAVect2(const AVector2<T> &v) { return v; }
262 template <class T> inline AVector2<T> toAVect2(const AVector3<T> &v) { return AVector2<T>(v.z()); }
266 template <class T> inline AVector3<T> toAVect3(const AVector2<T> &v,const T &x=0,const T &y=0) { return Vector3<T>(x,y,v.z()); }
269 template <class T> inline const AVector3<T> &toAVect3(const AVector3<T> &v) { return v; }
270 
273 template <class T> inline AVector3<T> vmax(const AVector3<T> &v1,const AVector3<T> &v2) {
274  AVector3<T> out(std::max<T>(v1.x(),v2.x()),std::max<T>(v1.y(),v2.y()),std::max<T>(v1.z(),v2.z()));
275  return out;
276 }
277 
280 template <class T> inline AVector3<T> vmin(const AVector3<T> &v1,const AVector3<T> &v2) {
281  AVector3<T> out(std::min<T>(v1.x(),v2.x()),std::min<T>(v1.y(),v2.y()),std::min<T>(v1.z(),v2.z()));
282  return out;
283 }
284 
287 template <class T> inline AVector3<T> vsign(const AVector3<T> &v1,const AVector3<T> &v2) {
288  AVector3<T> out(v2.x() < 0 ? -qAbs(v1.x()) : qAbs(v1.x()), v2.y() < 0 ? -qAbs(v1.y()) : qAbs(v1.y()), v2.z() < 0 ? -qAbs(v1.z()) : qAbs(v1.z()));
289  return out;
290 }
291 
294 template <class T> inline AVector3<T> vceil(const AVector3<T> &v) {
295  AVector3<T> out(ceil(v.x()),ceil(v.y()),ceil(v.z()));
296  return out;
297 }
298 
301 template <class T> inline AVector2<T> vmax(const AVector2<T> &v1,const AVector2<T> &v2) {
302  AVector2<T> out(std::max<T>(v1.z(),v2.z()));
303  return out;
304 }
305 
308 template <class T> inline AVector2<T> vmin(const AVector2<T> &v1,const AVector2<T> &v2) {
309  AVector2<T> out(std::min<T>(v1.z(),v2.z()));
310  return out;
311 }
312 
315 template <class T> inline AVector2<T> vsign(const AVector2<T> &v1,const AVector2<T> &v2) {
316  AVector2<T> out(v2.z() < 0 ? -qAbs(v1.z()) : qAbs(v1.z()));
317  return out;
318 }
319 
322 template <class T> inline AVector2<T> vceil(const AVector2<T> &v) {
323  AVector2<T> out(ceil(v.z()));
324  return out;
325 }
326 
328 // EOF
T operator &(const AVector2< T > &) const
Cross product with another AVector2 will always return 0.0.
Definition: avect.h:123
AVector3< Double > DAVect3
Definition: avect.h:196
T operator|(const Vector3< T > &v) const
Dot product with a Vector3.
Definition: avect.h:129
const T & dof(UInt u) const
General degree-of-freedom access. If u is 2 returns the z component, otherwise returns 0....
Definition: avect.h:71
AVector2< T > vceil(const AVector2< T > &v)
Definition: avect.h:322
const AVector2< T > & operator+=(const AVector2< T > &v)
in-place math operator
Definition: avect.h:109
const AVector2< T > & toAVect2(const AVector2< T > &v)
Definition: avect.h:258
bool operator<(const AVector2< T > &av) const
comparison operator
Definition: avect.h:106
const T & x() const
Member access - the x and y values are always uniquely 0 for a 2D angular vector.
Definition: avect.h:65
const AVector3< T > & toAVect3(const AVector3< T > &v)
Definition: avect.h:269
IAVect3 toAIVect3(const Vector3< T > &v)
Definition: avect.h:231
AVector3< T > vmax(const AVector3< T > &v1, const AVector3< T > &v2)
Definition: avect.h:273
T mag() const
The magnitude of the vector.
Definition: avect.h:95
const T & z() const
Member access - returns the z component of the 2D angular vector.
Definition: avect.h:69
T volume() const
Volume represented by x*y*z, always returns 0.0.
Definition: avect.h:97
T minComp() const
Returns the minimum component (assuming x and y are 0.0)
Definition: avect.h:102
Vector2< T > operator &(const Vector2< T > &v, const AVector2< T > &av)
Definition: avect.h:140
bool operator>(const AVector2< T > &av) const
comparison operator
Definition: avect.h:107
T area() const
Area represented by x*y, always returns 0.0.
Definition: avect.h:96
AVector2< T > operator *(const AVector2< T > &av) const
Binary math operator - require temp (till C++0x)
Definition: avect.h:118
const AVector2< T > & operator *=(const AVector2< T > &v)
in-place math operator
Definition: avect.h:111
T operator|(const Vector2< T > &, const AVector2< T > &)
Definition: avect.h:161
AVector3(const AVector2< T > &v)
Explicit conversion contructor from an AVector2, x=0, y=0, z=v.z.
Definition: avect.h:182
IAVect2 toIAVect2(const AVector2< T > &v)
Definition: avect.h:210
T & rz()
Returns a reference to the z component, cannot reference access x or y.
Definition: avect.h:80
T mag2() const
The square of the magnitude, or the vector dotted with itself.
Definition: avect.h:94
AVector2< T > operator/(const AVector2< T > &av) const
Binary math operator - require temp (till C++0x)
Definition: avect.h:120
Vector2< T > toVect2(const AVector3< T > &v)
Definition: avect.h:251
T operator|(const Vector2< T > &) const
Dot product with a Vector2 returns 0.0.
Definition: avect.h:128
Vector2< T > toVector2() const
Converts to a Vector2, the z component is lost.
Definition: avect.h:185
AVector2< Int > IAVect2
Definition: avect.h:193
DAVect3 toDAVect3(const Vector3< T > &v)
Definition: avect.h:217
2D and 3D vector utility classes.
AVector2< T > vsign(const AVector2< T > &v1, const AVector2< T > &v2)
Definition: avect.h:315
AVector2< Float > FAVect2
Definition: avect.h:192
AVector2< T > operator+(const AVector2< T > &av) const
Binary math operator - require temp (till C++0x)
Definition: avect.h:116
T maxComp() const
Returns the maximum component (assuming x and y are 0.0)
Definition: avect.h:101
UAVect2 toUAVect2(const AVector2< T > &v)
Definition: avect.h:213
bool operator!=(const AVector2< T > &av) const
comparison operator
Definition: avect.h:105
AVector2< T > unit() const
returns a unit vector.
Definition: avect.h:98
AVector2< T > vmax(const AVector2< T > &v1, const AVector2< T > &v2)
Definition: avect.h:301
T & operator[](UInt u)
Returns a reference to the z component if u=2, any other value of u is an error.
Definition: avect.h:91
DAVect2 toDAVect2(const AVector2< T > &v)
Definition: avect.h:204
const T & operator[](UInt u) const
General degree-of-freedom access. If u is 2 returns the z component, otherwise returns 0....
Definition: avect.h:90
unsigned int UInt
unsigned 32 bit
Definition: basedef.h:31
AVector2< Double > DAVect2
Definition: avect.h:191
bool operator==(const AVector2< T > &av) const
comparison operator
Definition: avect.h:104
AVector3< T > vmin(const AVector3< T > &v1, const AVector3< T > &v2)
Definition: avect.h:280
FAVect3 toFAVect3(const Vector3< T > &v)
Definition: avect.h:224
UAVect3 toAUVect3(const Vector3< T > &v)
Definition: avect.h:238
const T & y() const
Y component access.
Definition: vect.h:56
AVector2< T > toAVect2(const AVector3< T > &v)
Definition: avect.h:262
AVector2< UInt > UAVect2
Definition: avect.h:194
AVector2< T > operator/(const T &t) const
Binary math operator - require temp (till C++0x)
Definition: avect.h:121
2D vector utility class.
Definition: vect.h:31
const T & z() const
The z-component of the vector.
Definition: vect.h:186
AVector2< T > abs() const
Returns a vector of absolute values of components.
Definition: avect.h:99
AVector3< UInt > UAVect3
Definition: avect.h:199
AVector2< T > vmin(const AVector2< T > &v1, const AVector2< T > &v2)
Definition: avect.h:308
AVector2< T > operator-(const AVector2< T > &av) const
Binary math operator - require temp (till C++0x)
Definition: avect.h:117
Vector3< T > toVect3(const AVector2< T > &v)
Definition: avect.h:248
AVector3< T > vceil(const AVector3< T > &v)
Definition: avect.h:294
AVector3< T > vsign(const AVector3< T > &v1, const AVector3< T > &v2)
Definition: avect.h:287
AVector3< Int > IAVect3
Definition: avect.h:198
const AVector2< T > & operator/=(const T &t)
in-place math operator
Definition: avect.h:114
const AVector2< T > & operator-=(const AVector2< T > &v)
in-place math operator
Definition: avect.h:110
Vector2< T > toVect2(const AVector2< T > &)
Definition: avect.h:245
const T & y() const
Member access - the x and y values are always uniquely 0 for a 2D angular vector.
Definition: avect.h:67
3D vector utility class.
Definition: vect.h:161
AVector2(const T &t)
Explicit conversion constructor, the z component is initialized to t.
Definition: avect.h:58
AVector3< Float > FAVect3
Definition: avect.h:197
const AVector2< T > & operator/=(const AVector2< T > &v)
in-place math operator
Definition: avect.h:113
T & rdof(UInt u)
Returns a reference to the z component if u=2, any other value of u is an error.
Definition: avect.h:82
const T & x() const
X component access.
Definition: vect.h:54
Vector3< T > toVector3() const
Converts to a Vector3(0,0,z)
Definition: avect.h:132
T operator|(const AVector2< T > &v) const
Dot product.
Definition: avect.h:127
2D Angular vector class.
Definition: avect.h:43
AVector2()
Default constructor, no data initialization.
Definition: avect.h:52
Vector2< T > toVector2() const
Converts to a Vector2(0,0)
Definition: avect.h:131
void fill(const T &d)
Fill all components with d.
Definition: avect.h:100
const Vector3< T > & toVector3() const
Converts to a Vector3 directly.
Definition: avect.h:187
AVector2(const Vector3< T > &v)
Explicit convertion contructor, the z component or v is copied but he x and y values are lost.
Definition: avect.h:62
3D Angular vector class.
Definition: avect.h:176
2D Angular vector class.
Definition: avect.h:29
const Vector3< T > & toVect3(const AVector3< T > &v)
Definition: avect.h:254
AVector2(const Vector2< T > &)
Explicit conversion constructor, the z component is set to 0, the x and y values of v are lost.
Definition: avect.h:60
AVector3< T > toAVect3(const AVector2< T > &v, const T &x=0, const T &y=0)
Definition: avect.h:266
const T & y() const
The y-component of the vector.
Definition: vect.h:184
const T & x() const
The x-component of the vector.
Definition: vect.h:182
T fsum() const
The Manhatten norm.
Definition: avect.h:93
FAVect2 toFAVect2(const AVector2< T > &v)
Definition: avect.h:207