JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
AffineTrans< T > Class Template Reference

#include <AffineTrans.h>

Collaboration diagram for AffineTrans< T >:

Public Member Functions

 AffineTrans (void)
 
virtual ~AffineTrans (void)
 
void init (void)
 
void setup (void)
 
void initComponents (void)
 
void set (Vector< T > s, Quaternion< T > q, Vector< T > t)
 
void free (void)
 
void clear (void)
 
void dup (AffineTrans a)
 
AffineTrans< T > dup (void)
 
void clean_matrix (void)
 
void clean_components (void)
 
void changed_matrix (void)
 
void changed_components (void)
 
bool is_changed_matrix (void)
 
bool is_changed_components (void)
 
bool need_compute_matrix (void)
 
bool need_compute_components (void)
 
void computeMatrix (bool with_scale=true)
 
void computeComponents (void)
 
void initShift (void)
 
void initScale (void)
 
void initRotation (void)
 
void setShift (T x, T y, T z)
 
void setScale (T x, T y, T z)
 
void setRotation (T s, T x, T y, T z)
 
void setShift (Vector< T > v)
 
void setScale (Vector< T > v)
 
void setRotation (Quaternion< T > q)
 
void addShift (T x, T y, T z)
 
void addScale (T x, T y, T z)
 
void addRotation (T s, T x, T y, T z)
 
void addShift (Vector< T > v)
 
void addScale (Vector< T > v)
 
void addRotation (Quaternion< T > q)
 
void setMatrix (int i, int j, T v)
 
getMatrix (int i, int j)
 
void element (int i, int j, T v)
 
element (int i, int j)
 
getShiftX (void)
 
getShiftY (void)
 
getShiftZ (void)
 
getScaleX (void)
 
getScaleY (void)
 
getScaleZ (void)
 
getRotationS (void)
 
getRotationX (void)
 
getRotationY (void)
 
getRotationZ (void)
 
Vector< T > getScale (void)
 
Quaternion< T > getRotation (void)
 
Vector< T > getShift (void)
 
Matrix< T > getMatrix (void)
 
Matrix< T > getRotationMatrix (void)
 
AffineTrans< T > getInverseAffine (void)
 
void affineMatrixAfter (AffineTrans< T > a)
 
void affineMatrixBefore (AffineTrans< T > a)
 
bool isSetComponents (void)
 
bool isSetShift (void)
 
bool isSetScale (void)
 
bool isSetRotation (void)
 
bool isNormal (void)
 
Vector< T > execMatrixTrans (Vector< T > v)
 
Vector< T > execTrans (Vector< T > v)
 
Vector< T > execInvTrans (Vector< T > v)
 
Vector< T > execRotationScale (Vector< T > v)
 
Vector< T > execInvRotationScale (Vector< T > v)
 
Vector< T > execShift (Vector< T > v)
 
Vector< T > execInvShift (Vector< T > v)
 
Vector< T > execScale (Vector< T > v)
 
Vector< T > execInvScale (Vector< T > v)
 
Vector< T > execRotation (Vector< T > v)
 
Vector< T > execInvRotation (Vector< T > v)
 
void printMatrix (void)
 
void printComponents (void)
 

Private Attributes

Matrix< T > matrix
 
Vector< T > shift
 
Vector< T > scale
 
Quaternion< T > rotate
 
bool _changed_matrix
 
bool _changed_components
 

Detailed Description

template<typename T = double>
class jbxl::AffineTrans< T >

アフィン変換 拡大縮小,回転,平行移動(のみ)

変換の合成:A*B => Bの変換 -> Aの変換

Definition at line 27 of file AffineTrans.h.

Constructor & Destructor Documentation

◆ AffineTrans()

template<typename T = double>
AffineTrans ( void )
inline

Definition at line 41 of file AffineTrans.h.

41{ init();}
void init(void)
Definition AffineTrans.h:44

◆ ~AffineTrans()

template<typename T = double>
virtual ~AffineTrans ( void )
inlinevirtual

Definition at line 42 of file AffineTrans.h.

42{}

Member Function Documentation

◆ addRotation() [1/2]

template<typename T = double>
void addRotation ( Quaternion< T > q)
inline

Definition at line 84 of file AffineTrans.h.

84{ rotate = q*rotate; _changed_components = true;}
Quaternion< T > rotate
Definition AffineTrans.h:34

◆ addRotation() [2/2]

template<typename T = double>
void addRotation ( T s,
T x,
T y,
T z )
inline

Definition at line 80 of file AffineTrans.h.

80{ Quaternion<T> q(s, x, y, z); rotate = q*rotate; _changed_components = true;}

◆ addScale() [1/2]

template<typename T = double>
void addScale ( T x,
T y,
T z )
inline

Definition at line 79 of file AffineTrans.h.

79{ scale.x *= x; scale.y *= y; scale.z *= z; _changed_components = true;}
Vector< T > scale
Definition AffineTrans.h:33

References Vector< T >::x, Vector< T >::y, and Vector< T >::z.

◆ addScale() [2/2]

template<typename T = double>
void addScale ( Vector< T > v)
inline

Definition at line 83 of file AffineTrans.h.

83{ scale = shift + v; _changed_components = true;}
Vector< T > shift
Definition AffineTrans.h:32

◆ addShift() [1/2]

template<typename T = double>
void addShift ( T x,
T y,
T z )
inline

Definition at line 78 of file AffineTrans.h.

78{ shift.x += x; shift.y += y; shift.z += z; _changed_components = true;}

References Vector< T >::x, Vector< T >::y, and Vector< T >::z.

◆ addShift() [2/2]

template<typename T = double>
void addShift ( Vector< T > v)
inline

Definition at line 82 of file AffineTrans.h.

82{ shift = shift + v; _changed_components = true;}

◆ affineMatrixAfter()

template<typename T >
void affineMatrixAfter ( AffineTrans< T > a)

template <typename T> void AffineTrans<T>::affineMatrixAfter(AffineTrans<T> a)

this = (*this) * a を Matrix のままで計算する.

Definition at line 274 of file AffineTrans.h.

275{
276 AffineTrans<T> affine;
277 for (int i=1; i<=4; i++) {
278 for (int j=1; j<=4; j++) {
279 T sum = (T)0;
280 for (int k=1; k<=4; k++) {
281 sum += matrix.element(i, k) * a.element(k, j);
282 }
283 affine.element(i, j, sum);
284 }
285 }
286 for (int i=1; i<=4; i++) {
287 for (int j=1; j<=4; j++) {
288 matrix.element(i, j) = affine.element(i, j);
289 }
290 }
291 affine.free();
293 return;
294}
void computeComponents(void)

References AffineTrans< T >::element(), and AffineTrans< T >::free().

Referenced by GLTFData::addNodes(), GLTFData::addRootNode(), GLTFData::addShell(), GLTFData::addSkeletonNodes(), GLTFData::createBinDataIBM(), and GLTFData::createShellGeometryData().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ affineMatrixBefore()

template<typename T >
void affineMatrixBefore ( AffineTrans< T > a)

template <typename T> void AffineTrans<T>::affineMatrixBefore(AffineTrans<T> a)

this = a * (*this) を Matrix のままで計算する.

Definition at line 302 of file AffineTrans.h.

303{
304 AffineTrans<T> affine;
305 for (int i=1; i<=4; i++) {
306 for (int j=1; j<=4; j++) {
307 T sum = (T)0;
308 for (int k=1; k<=4; k++) {
309 sum += a.element(i, k) * matrix.element(k, j);
310 }
311 affine.element(i, j, sum);
312 }
313 }
314 for (int i=1; i<=4; i++) {
315 for (int j=1; j<=4; j++) {
316 matrix.element(i, j) = affine.element(i, j);
317 }
318 }
319 affine.free();
321 return;
322}

References AffineTrans< T >::element(), and AffineTrans< T >::free().

Referenced by GLTFData::addNodes(), GLTFData::addShell(), and GLTFData::addSkeletonNodes().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ changed_components()

template<typename T = double>
void changed_components ( void )
inline

Definition at line 57 of file AffineTrans.h.

57{ _changed_components = true;}

◆ changed_matrix()

template<typename T = double>
void changed_matrix ( void )
inline

Definition at line 56 of file AffineTrans.h.

56{ _changed_matrix = true;}

◆ clean_components()

template<typename T = double>
void clean_components ( void )
inline

Definition at line 55 of file AffineTrans.h.

55{ _changed_components = false;}

◆ clean_matrix()

template<typename T = double>
void clean_matrix ( void )
inline

Definition at line 54 of file AffineTrans.h.

54{ _changed_matrix = false;}

◆ clear()

template<typename T = double>
void clear ( void )
inline

Definition at line 50 of file AffineTrans.h.

50{ initComponents(); matrix.clear(); _changed_matrix = false; computeMatrix();}
void computeMatrix(bool with_scale=true)
void initComponents(void)
Definition AffineTrans.h:46

◆ computeComponents()

template<typename T >
void computeComponents ( void )

Definition at line 369 of file AffineTrans.h.

370{
372 PRINT_MESG("AffineTrans<T>::computeComponents: ERROR: may destroy Components!\n");
373 }
374
375 T sx, sy, sz;
376 sx = sy = sz = (T)0.0;
377 for (int i=1; i<=3; i++) {
378 sx += matrix.element(i, 1)*matrix.element(i, 1);
379 sy += matrix.element(i, 2)*matrix.element(i, 2);
380 sz += matrix.element(i, 3)*matrix.element(i, 3);
381 }
382 sx = (T)sqrt(sx);
383 sy = (T)sqrt(sy);
384 sz = (T)sqrt(sz);
385 if (!isNormal()) return;
386 scale.set(sx, sy, sz);
387
388 //
389 Matrix<T> mt = getRotationMatrix();
390
391 for (int i=1; i<=3; i++) {
392 mt.element(i, 1) /= sx;
393 mt.element(i, 2) /= sy;
394 mt.element(i, 3) /= sz;
395 }
396 rotate = RotMatrix2Quaternion<T>(mt);
397 mt.free();
398 //
399 shift.set(matrix.element(1,4), matrix.element(2,4), matrix.element(3,4));
400
401 _changed_matrix = false;
402 _changed_components = false;
403 return;
404}
bool isNormal(void)
Matrix< T > getRotationMatrix(void)
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469

References Matrix< T >::element(), Matrix< T >::free(), and PRINT_MESG.

Referenced by GLTFData::addRootNode(), GLTFData::addSkeletonNodes(), GLTFData::getAffineBaseTrans4Engine(), AffineTrans< T >::getInverseAffine(), and jbxl::operator*().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ computeMatrix()

template<typename T >
void computeMatrix ( bool with_scale = true)

Definition at line 326 of file AffineTrans.h.

327{
328 if (_changed_matrix) {
329 PRINT_MESG("AffineTrans<T>::computeMatrix: ERROR: may destroy Matrix!\n");
330 }
331
332 Matrix<T> sz(2, 3, 3);
333 if (with_scale) {
334 sz.element(1, 1) = scale.x;
335 sz.element(2, 2) = scale.y;
336 sz.element(3, 3) = scale.z;
337 }
338 else {
339 sz.element(1, 1) = (T)1.0;
340 sz.element(2, 2) = (T)1.0;
341 sz.element(3, 3) = (T)1.0;
342 }
343
344 matrix.clear();
345 Matrix<T> mt = rotate.getRotMatrix()*sz;
346 for (int j=1; j<=3; j++) {
347 for (int i=1; i<=3; i++) {
348 matrix.element(i, j) = mt.element(i, j);
349 }
350 }
351 sz.free();
352 mt.free();
353
354 matrix.element(1, 4) = shift.x;
355 matrix.element(2, 4) = shift.y;
356 matrix.element(3, 4) = shift.z;
357 matrix.element(4, 4) = (T)1.0;
358 matrix.element(4, 1) = (T)0.0;
359 matrix.element(4, 2) = (T)0.0;
360 matrix.element(4, 3) = (T)0.0;
361
362 _changed_matrix = false;
363 _changed_components = false;
364 return;
365}

References Matrix< T >::element(), Matrix< T >::free(), and PRINT_MESG.

Referenced by ColladaXML::addCenterScene(), GLTFData::addNodes(), GLTFData::addRootNode(), ColladaXML::addScene(), GLTFData::addShell(), GLTFData::addSkeletonNodes(), GLTFData::createBinDataIBM(), GLTFData::createShellGeometryData(), jbxl::operator*(), and ColladaXML::setJointLocationMatrix().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ dup() [1/2]

template<typename T = double>
void dup ( AffineTrans< T > a)

◆ dup() [2/2]

template<typename T >
AffineTrans< T > dup ( void )

Definition at line 200 of file AffineTrans.h.

201{
202 AffineTrans<T> affine;
203 affine.dup(*this);
204
205 return affine;
206}

References AffineTrans< T >::dup().

Here is the call graph for this function:

◆ element() [1/2]

template<typename T = double>
T element ( int i,
int j )
inline

Definition at line 89 of file AffineTrans.h.

89{ return matrix.element(i, j);}

◆ element() [2/2]

◆ execInvRotation()

template<typename T = double>
Vector< T > execInvRotation ( Vector< T > v)
inline

Definition at line 133 of file AffineTrans.h.

133{ return VectorInvRotation(v, rotate);}
Vector< T > VectorInvRotation(Vector< T > v, Quaternion< T > q)
Definition Rotation.h:1207

References jbxl::VectorInvRotation().

Here is the call graph for this function:

◆ execInvRotationScale()

template<typename T = double>
Vector< T > execInvRotationScale ( Vector< T > v)
inline

Definition at line 126 of file AffineTrans.h.

126{ return execInvScale(execInvRotation(v));}
Vector< T > execInvScale(Vector< T > v)
Vector< T > execInvRotation(Vector< T > v)

◆ execInvScale()

template<typename T = double>
Vector< T > execInvScale ( Vector< T > v)
inline

Definition at line 131 of file AffineTrans.h.

131{ return Vector<T>(v.x/scale.x, v.y/scale.y, v.z/scale.z, (T)0.0, Min(v.c, scale.c));}
#define Min(x, y)
Definition common.h:250

References Vector< T >::c, Min, Vector< T >::x, Vector< T >::y, and Vector< T >::z.

◆ execInvShift()

template<typename T = double>
Vector< T > execInvShift ( Vector< T > v)
inline

Definition at line 129 of file AffineTrans.h.

129{ return Vector<T>(v.x-shift.x, v.y-shift.y, v.z-shift.z, (T)0.0, Min(v.c, shift.c));}

References Vector< T >::c, Min, Vector< T >::x, Vector< T >::y, and Vector< T >::z.

◆ execInvTrans()

template<typename T = double>
Vector< T > execInvTrans ( Vector< T > v)
inline

Definition at line 123 of file AffineTrans.h.

Vector< T > execInvShift(Vector< T > v)

◆ execMatrixTrans()

template<typename T >
Vector< T > execMatrixTrans ( Vector< T > v)

Definition at line 408 of file AffineTrans.h.

409{
410 //if (matrix.element(4,4)!=(T)1.0) computeMatrix(true);
411 computeMatrix(true);
412
413 Matrix<T> mv(1, 4);
414 mv.mx[0] = v.x;
415 mv.mx[1] = v.y;
416 mv.mx[2] = v.z;
417 mv.mx[3] = (T)1.0;
418
419 Matrix<T> mt = matrix * mv;
420 Vector<T> vct;
421 vct.x = mt.mx[0];
422 vct.y = mt.mx[1];
423 vct.z = mt.mx[2];
424
425 mt.free();
426 mv.free();
427
428 return vct;
429}
double * mx
要素 mx[0]?mx[r-1]
Definition matrix.h:72

References Matrix< T >::free(), Matrix< T >::mx, Vector< T >::x, Vector< T >::y, and Vector< T >::z.

Here is the call graph for this function:

◆ execRotation()

template<typename T = double>
Vector< T > execRotation ( Vector< T > v)
inline

Definition at line 132 of file AffineTrans.h.

132{ return VectorRotation(v, rotate);}
Vector< T > VectorRotation(Vector< T > v, Quaternion< T > q)
Definition Rotation.h:1187

References jbxl::VectorRotation().

Referenced by BrepSolidList::addSolid(), and OBJData::execAffineTrans().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ execRotationScale()

template<typename T = double>
Vector< T > execRotationScale ( Vector< T > v)
inline

Definition at line 125 of file AffineTrans.h.

125{ return execRotation(execScale(v));}
Vector< T > execScale(Vector< T > v)
Vector< T > execRotation(Vector< T > v)

Referenced by ColladaXML::addScene(), and GLTFData::addSkeletonNodes().

Here is the caller graph for this function:

◆ execScale()

template<typename T = double>
Vector< T > execScale ( Vector< T > v)
inline

Definition at line 130 of file AffineTrans.h.

130{ return Vector<T>(v.x*scale.x, v.y*scale.y, v.z*scale.z, (T)0.0, Min(v.c, scale.c));}

References Vector< T >::c, Min, Vector< T >::x, Vector< T >::y, and Vector< T >::z.

◆ execShift()

template<typename T = double>
Vector< T > execShift ( Vector< T > v)
inline

Definition at line 128 of file AffineTrans.h.

128{ return Vector<T>(v.x+shift.x, v.y+shift.y, v.z+shift.z, (T)0.0, Min(v.c, shift.c));}

References Vector< T >::c, Min, Vector< T >::x, Vector< T >::y, and Vector< T >::z.

◆ execTrans()

template<typename T = double>
Vector< T > execTrans ( Vector< T > v)
inline

Definition at line 122 of file AffineTrans.h.

122{ return execShift(execRotation(execScale(v)));}
Vector< T > execShift(Vector< T > v)

Referenced by BrepSolidList::addSolid(), and OBJData::execAffineTrans().

Here is the caller graph for this function:

◆ free()

◆ getInverseAffine()

template<typename T >
AffineTrans< T > getInverseAffine ( void )

Definition at line 232 of file AffineTrans.h.

233{
234 AffineTrans<T> affine;
235 if (!isNormal()) return affine;
237
238 Matrix<T> rsz(2, 3, 3);
239 rsz.element(1, 1) = (T)1.0/scale.x;
240 rsz.element(2, 2) = (T)1.0/scale.y;
241 rsz.element(3, 3) = (T)1.0/scale.z;
242
243 Matrix<T> rmt = rsz*(~rotate).getRotMatrix();
244
245 affine.matrix.element(4, 4) = (T)1.0;
246 for (int j=1; j<=3; j++) {
247 for (int i=1; i<=3; i++) {
248 affine.matrix.element(i, j) = rmt.element(i, j);
249 }
250 }
251 rsz.free();
252 rmt.free();
253
254 Matrix<T> rst(2, 4, 4);
255 rst.element(1, 1) = rst.element(2,2) = rst.element(3,3) = rst.element(4,4) = (T)1.0;
256 rst.element(1, 4) = -shift.x;
257 rst.element(2, 4) = -shift.y;
258 rst.element(3, 4) = -shift.z;
259
260 affine.matrix = affine.matrix*rst;
261 affine.computeComponents();
262
263 rst.free();
264
265 return affine;
266}

References AffineTrans< T >::computeComponents(), Matrix< T >::element(), Matrix< T >::free(), and AffineTrans< T >::matrix.

Referenced by GLTFData::addNodes(), ColladaXML::addScene(), GLTFData::addShell(), and GLTFData::addSkeletonNodes().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getMatrix() [1/2]

template<typename T = double>
T getMatrix ( int i,
int j )
inline

Definition at line 87 of file AffineTrans.h.

87{ return matrix.element(i, j);}

◆ getMatrix() [2/2]

template<typename T = double>
Matrix< T > getMatrix ( void )
inline

Definition at line 105 of file AffineTrans.h.

105{ return matrix;}
Matrix< T > matrix
Definition AffineTrans.h:30

◆ getRotation()

template<typename T = double>
Quaternion< T > getRotation ( void )
inline

Definition at line 103 of file AffineTrans.h.

103{ return rotate;}

◆ getRotationMatrix()

template<typename T >
Matrix< T > getRotationMatrix ( void )

Definition at line 211 of file AffineTrans.h.

212{
213 Matrix<T> mt;
214
215 if (matrix.element(4, 4)==(T)1.0) {
216 mt.init(2, 3, 3);
217 for (int j=1; j<=3; j++) {
218 for (int i=1; i<=3; i++) {
219 mt.element(i, j) = matrix.element(i, j);
220 }
221 }
222 }
223 else {
224 mt = rotate.getRotMatrix();
225 }
226
227 return mt;
228}

References Matrix< T >::element(), and Matrix< T >::init().

Here is the call graph for this function:

◆ getRotationS()

template<typename T = double>
T getRotationS ( void )
inline

Definition at line 97 of file AffineTrans.h.

97{ return rotate.s;}

References Quaternion< T >::s.

◆ getRotationX()

template<typename T = double>
T getRotationX ( void )
inline

Definition at line 98 of file AffineTrans.h.

98{ return rotate.x;}

References Quaternion< T >::x.

◆ getRotationY()

template<typename T = double>
T getRotationY ( void )
inline

Definition at line 99 of file AffineTrans.h.

99{ return rotate.y;}

References Quaternion< T >::y.

◆ getRotationZ()

template<typename T = double>
T getRotationZ ( void )
inline

Definition at line 100 of file AffineTrans.h.

100{ return rotate.z;}

References Quaternion< T >::z.

◆ getScale()

template<typename T = double>
Vector< T > getScale ( void )
inline

Definition at line 102 of file AffineTrans.h.

102{ return scale;}

Referenced by FBXData::addShell(), OBJData::addShell(), ColladaXML::addTexcrdSource(), and GLTFData::execAffineUVMap().

Here is the caller graph for this function:

◆ getScaleX()

template<typename T = double>
T getScaleX ( void )
inline

Definition at line 94 of file AffineTrans.h.

94{ return scale.x;}

References Vector< T >::x.

◆ getScaleY()

template<typename T = double>
T getScaleY ( void )
inline

Definition at line 95 of file AffineTrans.h.

95{ return scale.y;}

References Vector< T >::y.

◆ getScaleZ()

template<typename T = double>
T getScaleZ ( void )
inline

Definition at line 96 of file AffineTrans.h.

96{ return scale.z;}

References Vector< T >::z.

◆ getShift()

template<typename T = double>
Vector< T > getShift ( void )
inline

Definition at line 104 of file AffineTrans.h.

104{ return shift;}

Referenced by ColladaXML::addScene(), GLTFData::addShell(), GLTFData::addSkeletonNodes(), FBXData::execAffineTrans(), OBJData::execAffineTrans(), and ColladaXML::setJointLocationMatrix().

Here is the caller graph for this function:

◆ getShiftX()

template<typename T = double>
T getShiftX ( void )
inline

Definition at line 91 of file AffineTrans.h.

91{ return shift.x;}

References Vector< T >::x.

Referenced by GLTFData::addSkeletonNodes().

Here is the caller graph for this function:

◆ getShiftY()

template<typename T = double>
T getShiftY ( void )
inline

Definition at line 92 of file AffineTrans.h.

92{ return shift.y;}

References Vector< T >::y.

Referenced by GLTFData::addSkeletonNodes().

Here is the caller graph for this function:

◆ getShiftZ()

template<typename T = double>
T getShiftZ ( void )
inline

Definition at line 93 of file AffineTrans.h.

93{ return shift.z;}

References Vector< T >::z.

Referenced by GLTFData::addSkeletonNodes().

Here is the caller graph for this function:

◆ init()

template<typename T = double>
void init ( void )
inline

Definition at line 44 of file AffineTrans.h.

44{ initComponents(); matrix = Matrix<T>(2, 4, 4); _changed_matrix = false; computeMatrix();}

Referenced by ColladaXML::addScene(), GLTFData::addShell(), ColladaXML::init(), SkinJointData::init(), FBXData::init(), and GLTFData::init().

Here is the caller graph for this function:

◆ initComponents()

template<typename T = double>
void initComponents ( void )
inline

Definition at line 46 of file AffineTrans.h.

void initRotation(void)
Definition AffineTrans.h:68
void initScale(void)
Definition AffineTrans.h:67
void initShift(void)
Definition AffineTrans.h:66

◆ initRotation()

template<typename T = double>
void initRotation ( void )
inline

Definition at line 68 of file AffineTrans.h.

68{ rotate.init(); _changed_components = true;}

References Quaternion< T >::init().

Here is the call graph for this function:

◆ initScale()

template<typename T = double>
void initScale ( void )
inline

Definition at line 67 of file AffineTrans.h.

67{ scale.set((T)1.0, (T)1.0, (T)1.0); _changed_components = true;}

References Vector< T >::set().

Here is the call graph for this function:

◆ initShift()

template<typename T = double>
void initShift ( void )
inline

Definition at line 66 of file AffineTrans.h.

66{ shift.init(); _changed_components = true;}

References Vector< T >::init().

Here is the call graph for this function:

◆ is_changed_components()

template<typename T = double>
bool is_changed_components ( void )
inline

Definition at line 59 of file AffineTrans.h.

59{ return _changed_components;} // true なら computeMatrix() を実行する(推奨)

◆ is_changed_matrix()

template<typename T = double>
bool is_changed_matrix ( void )
inline

Definition at line 58 of file AffineTrans.h.

58{ return _changed_matrix;} // true なら computeComponents() を実行する(推奨)

◆ isNormal()

template<typename T = double>
bool isNormal ( void )
inline

Definition at line 118 of file AffineTrans.h.

118{ if(scale.x>=JBXL_EPS && scale.y>=JBXL_EPS && scale.z>=JBXL_EPS) return true; else return false;}
#define JBXL_EPS
Definition common.h:295

References JBXL_EPS, Vector< T >::x, Vector< T >::y, and Vector< T >::z.

◆ isSetComponents()

template<typename T = double>
bool isSetComponents ( void )
inline

Definition at line 114 of file AffineTrans.h.

114{ if(isSetShift() || isSetScale() || isSetRotation()) return true; else return false;}
bool isSetRotation(void)
bool isSetScale(void)
bool isSetShift(void)

◆ isSetRotation()

template<typename T = double>
bool isSetRotation ( void )
inline

Definition at line 117 of file AffineTrans.h.

117{ return (rotate!=Quaternion<T>());}

◆ isSetScale()

template<typename T = double>
bool isSetScale ( void )
inline

Definition at line 116 of file AffineTrans.h.

116{ return (scale !=Vector<T>((T)1.0, (T)1.0, (T)1.0));}

◆ isSetShift()

template<typename T = double>
bool isSetShift ( void )
inline

Definition at line 115 of file AffineTrans.h.

115{ return (shift !=Vector<T>());}

◆ need_compute_components()

template<typename T = double>
bool need_compute_components ( void )
inline

Definition at line 61 of file AffineTrans.h.

◆ need_compute_matrix()

template<typename T = double>
bool need_compute_matrix ( void )
inline

Definition at line 60 of file AffineTrans.h.

◆ printComponents()

template<typename T >
void printComponents ( void )

Definition at line 445 of file AffineTrans.h.

446{
447 print_message("shift = (%g, %g, %g)\n", shift.x, shift.y, shift.z);
448 print_message("scale = (%g, %g, %g)\n", scale.x, scale.y, scale.z);
449 print_message("rot = (%g, %g, %g, %g)\n", rotate.s, rotate.x, rotate.y, rotate.z);
450}
void print_message(const char *fmt,...)
バッファリングなしのメッセージ出力(stderr)
Definition tools.cpp:4054

References print_message().

Here is the call graph for this function:

◆ printMatrix()

template<typename T >
void printMatrix ( void )

Definition at line 432 of file AffineTrans.h.

433{
434 for(int j=1; j<=4; j++) {
435 for(int i=1; i<=4; i++) {
436 T element = matrix.element(i, j);
437 print_message(" %g ", element);
438 }
439 print_message("\n");
440 }
441 return;
442}
void element(int i, int j, T v)
Definition AffineTrans.h:88

References print_message().

Here is the call graph for this function:

◆ set()

template<typename T = double>
void set ( Vector< T > s,
Quaternion< T > q,
Vector< T > t )
inline

Definition at line 48 of file AffineTrans.h.

48{ scale = s; shift = t, rotate = q; computeMatrix();}

◆ setMatrix()

template<typename T = double>
void setMatrix ( int i,
int j,
T v )
inline

Definition at line 86 of file AffineTrans.h.

86{ matrix.element(i, j) = v; _changed_matrix = true;}

◆ setRotation() [1/2]

template<typename T = double>
void setRotation ( Quaternion< T > q)
inline

Definition at line 76 of file AffineTrans.h.

76{ rotate = q; _changed_components = true;}

◆ setRotation() [2/2]

template<typename T = double>
void setRotation ( T s,
T x,
T y,
T z )
inline

Definition at line 72 of file AffineTrans.h.

72{ rotate.set(s, x, y, z); _changed_components = true;}

References Quaternion< T >::set().

Here is the call graph for this function:

◆ setScale() [1/2]

template<typename T = double>
void setScale ( T x,
T y,
T z )
inline

Definition at line 71 of file AffineTrans.h.

71{ scale.set(x, y, z); _changed_components = true;}

References Vector< T >::set().

Here is the call graph for this function:

◆ setScale() [2/2]

template<typename T = double>
void setScale ( Vector< T > v)
inline

Definition at line 75 of file AffineTrans.h.

75{ scale = v; _changed_components = true;}

◆ setShift() [1/2]

template<typename T = double>
void setShift ( T x,
T y,
T z )
inline

Definition at line 70 of file AffineTrans.h.

70{ shift.set(x, y, z); _changed_components = true;}

References Vector< T >::set().

Referenced by ColladaXML::addScene(), GLTFData::addShell(), GLTFData::addSkeletonNodes(), and ColladaXML::setJointLocationMatrix().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ setShift() [2/2]

template<typename T = double>
void setShift ( Vector< T > v)
inline

Definition at line 74 of file AffineTrans.h.

74{ shift = v; _changed_components = true;}

◆ setup()

template<typename T = double>
void setup ( void )
inline

Definition at line 45 of file AffineTrans.h.

45{ init();}

Member Data Documentation

◆ _changed_components

template<typename T = double>
bool _changed_components
private

Definition at line 38 of file AffineTrans.h.

◆ _changed_matrix

template<typename T = double>
bool _changed_matrix
private

Definition at line 37 of file AffineTrans.h.

◆ matrix

template<typename T = double>
Matrix<T> matrix
private

Definition at line 30 of file AffineTrans.h.

Referenced by AffineTrans< T >::getInverseAffine().

◆ rotate

template<typename T = double>
Quaternion<T> rotate
private

Definition at line 34 of file AffineTrans.h.

◆ scale

template<typename T = double>
Vector<T> scale
private

Definition at line 33 of file AffineTrans.h.

◆ shift

template<typename T = double>
Vector<T> shift
private

Definition at line 32 of file AffineTrans.h.


The documentation for this class was generated from the following file: