1#ifndef __JBXL_CPP_AFFINETRANS_H_
2#define __JBXL_CPP_AFFINETRANS_H_
44 void init(
void) { initComponents();
matrix =
Matrix<T>(2, 4, 4); _changed_matrix =
false; computeMatrix();}
49 void free(
void) { initComponents();
matrix.free(); _changed_matrix =
false; computeMatrix();}
50 void clear(
void){ initComponents();
matrix.clear(); _changed_matrix =
false; computeMatrix();}
67 void initScale(
void) { scale.
set((T)1.0, (T)1.0, (T)1.0); _changed_components =
true;}
70 void setShift(T x, T y, T z) { shift.
set(x, y, z); _changed_components =
true;}
71 void setScale(T x, T y, T z) { scale.
set(x, y, z); _changed_components =
true;}
72 void setRotation(T s, T x, T y, T z) { rotate.
set(s, x, y, z); _changed_components =
true;}
78 void addShift(T x, T y, T z) { shift.
x += x; shift.
y += y; shift.
z += z; _changed_components =
true;}
79 void addScale(T x, T y, T z) { scale.
x *= x; scale.
y *= y; scale.
z *= z; _changed_components =
true;}
86 void setMatrix(
int i,
int j, T v) {
matrix.element(i, j) = v; _changed_matrix =
true;}
88 void element(
int i,
int j, T v) {
matrix.element(i, j) = v; _changed_matrix =
true;}
114 bool isSetComponents(
void) {
if(isSetShift() || isSetScale() || isSetRotation())
return true;
else return false;}
169 for (
int i=1; i<=4; i++) {
170 for (
int j=1; j<=4; j++) {
172 for (
int k=1; k<=4; k++) {
215 if (
matrix.element(4, 4)==(T)1.0) {
217 for (
int j=1; j<=3; j++) {
218 for (
int i=1; i<=3; i++) {
224 mt = rotate.getRotMatrix();
235 if (!isNormal())
return affine;
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;
243 Matrix<T> rmt = rsz*(~rotate).getRotMatrix();
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++) {
277 for (
int i=1; i<=4; i++) {
278 for (
int j=1; j<=4; j++) {
280 for (
int k=1; k<=4; k++) {
286 for (
int i=1; i<=4; i++) {
287 for (
int j=1; j<=4; j++) {
305 for (
int i=1; i<=4; i++) {
306 for (
int j=1; j<=4; j++) {
308 for (
int k=1; k<=4; k++) {
314 for (
int i=1; i<=4; i++) {
315 for (
int j=1; j<=4; j++) {
328 if (_changed_matrix) {
329 PRINT_MESG(
"AffineTrans<T>::computeMatrix: ERROR: may destroy Matrix!\n");
346 for (
int j=1; j<=3; j++) {
347 for (
int i=1; i<=3; i++) {
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;
362 _changed_matrix =
false;
363 _changed_components =
false;
371 if (_changed_components) {
372 PRINT_MESG(
"AffineTrans<T>::computeComponents: ERROR: may destroy Components!\n");
376 sx = sy = sz = (T)0.0;
377 for (
int i=1; i<=3; i++) {
385 if (!isNormal())
return;
386 scale.set(sx, sy, sz);
391 for (
int i=1; i<=3; i++) {
396 rotate = RotMatrix2Quaternion<T>(mt);
401 _changed_matrix =
false;
402 _changed_components =
false;
434 for(
int j=1; j<=4; j++) {
435 for(
int i=1; i<=4; i++) {
436 T element =
matrix.element(i, j);
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);
void setShift(T x, T y, T z)
void computeMatrix(bool with_scale=true)
void set(Vector< T > s, Quaternion< T > q, Vector< T > t)
Vector< T > execInvShift(Vector< T > v)
AffineTrans< T > getInverseAffine(void)
void addRotation(Quaternion< T > q)
void setShift(Vector< T > v)
Vector< T > execInvTrans(Vector< T > v)
Vector< T > getScale(void)
bool isSetComponents(void)
void affineMatrixAfter(AffineTrans< T > a)
Vector< T > execInvScale(Vector< T > v)
void setScale(T x, T y, T z)
Matrix< T > getMatrix(void)
Matrix< T > getRotationMatrix(void)
Vector< T > execRotationScale(Vector< T > v)
void printComponents(void)
bool need_compute_components(void)
void initComponents(void)
void setRotation(Quaternion< T > q)
void changed_matrix(void)
Vector< T > execShift(Vector< T > v)
bool is_changed_components(void)
Vector< T > execScale(Vector< T > v)
Quaternion< T > getRotation(void)
void computeComponents(void)
Vector< T > execInvRotationScale(Vector< T > v)
void addRotation(T s, T x, T y, T z)
void setScale(Vector< T > v)
Vector< T > execTrans(Vector< T > v)
bool is_changed_matrix(void)
void addScale(T x, T y, T z)
void changed_components(void)
T getMatrix(int i, int j)
void element(int i, int j, T v)
void setMatrix(int i, int j, T v)
Vector< T > execInvRotation(Vector< T > v)
void affineMatrixBefore(AffineTrans< T > a)
void addShift(Vector< T > v)
void addScale(Vector< T > v)
virtual ~AffineTrans(void)
Vector< T > execRotation(Vector< T > v)
void addShift(T x, T y, T z)
AffineTrans< T > dup(void)
void clean_components(void)
bool need_compute_matrix(void)
Vector< T > execMatrixTrans(Vector< T > v)
Vector< T > getShift(void)
void setRotation(T s, T x, T y, T z)
void free()
free() は手動で呼び出す.
void set(T S, T X, T Y, T Z, T N=(T) 0.0, T C=(T) 1.0)
void set(T X, T Y=0, T Z=0, double N=0.0, double C=1.0, int D=0)
AffineTrans< T > operator*(AffineTrans< T > a, AffineTrans< T > b)
Vector< T > VectorRotation(Vector< T > v, Quaternion< T > q)
AffineTrans< T > * newAffineTrans(AffineTrans< T > p)
Vector< T > VectorInvRotation(Vector< T > v, Quaternion< T > q)
void freeAffineTrans(AffineTrans< T > *&affine)