30 static const double nullValue_ = 0.0;
48 AVector2() { z_ = std::numeric_limits<T>::max(); }
51 #pragma warning(disable:26495) // Init warning- not initializing on purpose 65 const T &
x()
const {
return AVector2Util::nullValue_; }
67 const T &
y()
const {
return AVector2Util::nullValue_; }
69 const T &
z()
const {
return z_; }
73 if (u>2)
throw std::runtime_error(
"Vector index out of range.");
76 return AVector2Util::nullValue_;
80 T &
rz() {
return z_; }
84 if (u!=2)
throw std::runtime_error(
"Vector index out of range.");
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; }
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_); }
218 DAVect3 dv3(to<Double>(v.
x()),to<Double>(v.
y()),to<Double>(v.
z()));
225 FAVect3 fv3(to<Float>(v.
x()),to<Float>(v.
y()),to<Float>(v.
z()));
232 IAVect3 iv3(to<Int>(v.
x()),to<Int>(v.
y()),to<Int>(v.
z()));
239 UAVect3 uv3(to<UInt>(v.
x()),to<UInt>(v.
y()),to<UInt>(v.
z()));
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()));
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()));
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()));
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