JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
TVector.h
Go to the documentation of this file.
1#ifndef __JBXL_CPP_T_VECTOR_H_
2#define __JBXL_CPP_T_VECTOR_H_
3
11#include "Vector.h"
12
13
14//
15namespace jbxl {
16
17
18#define TVECTOR TVector
19
20
26template<typename T=double> class DllExport TVector : public Vector<T>
27{
28public:
29 T t;
30
31public:
32 TVector(T X=0, T Y=0, T Z=0, T W=0, double N=0.0, double C=1.0, int D=0) { set(X, Y, Z, W, N, C, D);}
33 virtual ~TVector() {}
34
35 void set(T X, T Y=0, T Z=0, T W=0, double N=0.0, double C=1.0, int D=0);
36 void init() { Vector<T>::init(); t = (T)0;}
37};
38
39
45template <typename T> void TVector<T>::set(T X, T Y, T Z, T W, double N, double C, int D)
46{
47 Vector<T>::set(X, Y, Z, N, C, D);
48 t = W;
49
50 if (N<=0.0) {
51 Vector<T>::n = (T)sqrt(X*X + Y*Y + Z*Z);
52 }
53}
54
55
62template <typename T> double ProportionVector(TVector<T> v1, TVector<T> v2, T& t)
63{
64 double cc = 0.0;
65 T tt = (T)(Max(v2.t, Zero_Eps));
66 if (v2.n>=tt) cc = (v1*v2)/(double)(v2.n*v2.n);
67
68 TVector<T> dif = v1 - cc*v2;
69 T tolerance = (T)Max(dif.t, Zero_Eps);
70 if (dif.n>=tolerance) {
71 t = 0.0;
72 return -HUGE_VALF;
73 }
74 t = (T)((v1.n*v2.t + v2.n*v1.t)/(v2.n*v2.n)); // 誤差
75 return cc;
76}
77
78
79
81// オペレータ
82
83template<typename T> inline TVector<T> operator - (const TVector<T> a)
84{ return TVector<T>(-a.x, -a.y, -a.z, a.t, a.n); }
85
86
87template<typename T> inline TVector<T> operator + (const TVector<T> a, const TVector<T> b)
88{
89 T xx = a.x + b.x;
90 T yy = a.y + b.y;
91 T zz = a.z + b.z;
92 T tt = a.t + b.t;
93 if (Xabs(xx)<tt) xx = (T)0.0;
94 if (Xabs(yy)<tt) yy = (T)0.0;
95 if (Xabs(zz)<tt) zz = (T)0.0;
96 return TVector<T>(xx, yy, zz, tt);
97}
98
99
100template<typename T, typename R> inline TVector<T> operator + (const R d, const TVector<T> a)
101{ return TVector<T>((T)d+a.x, (T)d+a.y, (T)d+a.z, a.t);}
102
103
104template<typename T, typename R> inline TVector<T> operator + (const TVector<T> a, const R d)
105{ return TVector<T>(a.x+(T)d, a.y+(T)d, a.z+(T)d, a.t);}
106
107
108template<typename T> inline TVector<T> operator - (const TVector<T> a, const TVector<T> b)
109{
110 T xx = a.x - b.x;
111 T yy = a.y - b.y;
112 T zz = a.z - b.z;
113 T tt = a.t + b.t;
114 if (Xabs(xx)<tt) xx = (T)0.0;
115 if (Xabs(yy)<tt) yy = (T)0.0;
116 if (Xabs(zz)<tt) zz = (T)0.0;
117 return TVector<T>(xx, yy, zz, tt);
118}
119
120
121template<typename T, typename R> inline TVector<T> operator - (const R d, const TVector<T> a)
122{ return TVector<T>((T)d-a.x, (T)d-a.y, (T)d-a.z, a.t);}
123
124
125template<typename T, typename R> inline TVector<T> operator - (const TVector<T> a, const R d)
126{ return TVector<T>(a.x-(T)d, a.y-(T)d, a.z-(T)d, a.t);}
127
128
129template<typename T, typename R> inline TVector<T> operator * (const R d, const TVector<T> a)
130{ return TVector<T>(a.x*(T)d, a.y*(T)d, a.z*(T)d, a.t*Xabs((T)d));}
131
132
133template<typename T, typename R> inline TVector<T> operator * (const TVector<T> a, const R d)
134{ return TVector<T>(a.x*(T)d, a.y*(T)d, a.z*(T)d, a.t*Xabs((T)d));}
135
136
137template<typename T, typename R> inline TVector<T> operator / (const TVector<T> a, const R d)
138{ return TVector<T>(a.x/(T)d, a.y/(T)d, a.z/(T)d, a.t/Xabs((T)d));}
139
140
141template<typename T, typename R> inline TVector<T> operator / (const R d, const TVector<T> a)
142{ return TVector<T>((T)d/a.x, (T)d/a.y, (T)d/a.z, Xabs((T)d)*a.t/a.norm2());}
143
144
145template <typename T> inline bool operator == (const TVector<T> v1, const TVector<T> v2)
146{
147 T dst = (v1.x-v2.x)*(v1.x-v2.x) + (v1.y-v2.y)*(v1.y-v2.y) + (v1.z-v2.z)*(v1.z-v2.z);
148 T err = (v1.t+v2.t)*(v1.t+v2.t);
149 if (dst<=err) return true;
150 return false;
151}
152
153
154template <typename T> inline bool operator != (const TVector<T> v1, const TVector<T> v2)
155{
156 T dst = (v1.x-v2.x)*(v1.x-v2.x) + (v1.y-v2.y)*(v1.y-v2.y) + (v1.z-v2.z)*(v1.z-v2.z);
157 T err = (v1.t+v2.t)*(v1.t+v2.t);
158 if (dst>err) return true;
159 return false;
160}
161
162
164template<typename T> inline TVector<T> operator ^ (const TVector<T> a, const TVector<T> b)
165{
166 T xx = a.y*b.z - a.z*b.y;
167 T yy = a.z*b.x - a.x*b.z;
168 T zz = a.x*b.y - a.y*b.x;
169 T tt = (T)(a.n*b.t + a.t*b.n);
170 if (Xabs(xx)<tt) xx = (T)0.0;
171 if (Xabs(yy)<tt) yy = (T)0.0;
172 if (Xabs(zz)<tt) zz = (T)0.0;
173 return TVector<T>(xx, yy, zz, tt);
174}
175
176
178template<typename T> inline T operator * (const TVector<T> a, const TVector<T> b)
179{ return (T)(a.x*b.x + a.y*b.y + a.z*b.z);}
180
181
183template<typename T> inline T TVectorMultiTolerance(TVector<T> a, TVector<T> b)
184{ return (T)(a.n*b.t + a.t*b.n); }
185
186
187
188} // namespace
189
190
191#endif
192
ベクトルライブラリ for C++
void init()
Definition TVector.h:36
virtual ~TVector()
Definition TVector.h:33
T t
トレランス.誤差.
Definition TVector.h:29
void set(T X, T Y=0, T Z=0, T W=0, double N=0.0, double C=1.0, int D=0)
Definition TVector.h:45
TVector(T X=0, T Y=0, T Z=0, T W=0, double N=0.0, double C=1.0, int D=0)
Definition TVector.h:32
T norm2(void)
Definition Vector.h:70
void set(T X, T Y=0, T Z=0, double N=0.0, double C=1.0, int D=0)
Definition Vector.h:110
double n
ノルム
Definition Vector.h:62
#define Max(x, y)
Definition common.h:247
#define Xabs(x)
Definition common.h:257
#define DllExport
Definition common.h:105
Definition Brep.h:29
double ProportionVector(TVector< T > v1, TVector< T > v2, T &t)
Definition TVector.h:62
T TVectorMultiTolerance(TVector< T > a, TVector< T > b)
内積の誤差
Definition TVector.h:183
AffineTrans< T > operator*(AffineTrans< T > a, AffineTrans< T > b)
Matrix< T > operator+(const Matrix< T > a, const Matrix< T > b)
Definition Matrix++.h:386
double Zero_Eps
1に対して 0とするトレランス
Definition Tolerance.cpp:26
Matrix< T > operator/(const Matrix< T > a, const R d)
Definition Matrix++.h:427
bool operator==(const Matrix< T > v1, const Matrix< T > v2)
Definition Matrix++.h:435
bool operator!=(const Quaternion< T > q1, const Quaternion< T > q2)
~ 共役
Definition Rotation.h:109
TVector< T > operator^(const TVector< T > a, const TVector< T > b)
Cross product 外積
Definition TVector.h:164
Matrix< T > operator-(const Matrix< T > a)
Definition Matrix++.h:378